Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ partial void PrepareFindAgentInsightsIssuesArguments(
ref global::System.DateTime? fromDate,
ref global::System.DateTime? toDate,
ref global::Opik.FindAgentInsightsIssuesStatus? status,
ref global::Opik.FindAgentInsightsIssuesSeverity? severity,
ref string? sorting,
ref int? page,
ref int? size);
Expand All @@ -54,6 +55,7 @@ partial void PrepareFindAgentInsightsIssuesRequest(
global::System.DateTime? fromDate,
global::System.DateTime? toDate,
global::Opik.FindAgentInsightsIssuesStatus? status,
global::Opik.FindAgentInsightsIssuesSeverity? severity,
string? sorting,
int? page,
int? size);
Expand All @@ -74,6 +76,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
/// <param name="fromDate"></param>
/// <param name="toDate"></param>
/// <param name="status"></param>
/// <param name="severity"></param>
/// <param name="sorting"></param>
/// <param name="page">
/// Default Value: 1
Expand All @@ -89,6 +92,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
global::System.DateTime? fromDate = default,
global::System.DateTime? toDate = default,
global::Opik.FindAgentInsightsIssuesStatus? status = default,
global::Opik.FindAgentInsightsIssuesSeverity? severity = default,
string? sorting = default,
int? page = default,
int? size = default,
Expand All @@ -100,6 +104,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
fromDate: fromDate,
toDate: toDate,
status: status,
severity: severity,
sorting: sorting,
page: page,
size: size,
Expand All @@ -117,6 +122,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
/// <param name="fromDate"></param>
/// <param name="toDate"></param>
/// <param name="status"></param>
/// <param name="severity"></param>
/// <param name="sorting"></param>
/// <param name="page">
/// Default Value: 1
Expand All @@ -132,6 +138,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
global::System.DateTime? fromDate = default,
global::System.DateTime? toDate = default,
global::Opik.FindAgentInsightsIssuesStatus? status = default,
global::Opik.FindAgentInsightsIssuesSeverity? severity = default,
string? sorting = default,
int? page = default,
int? size = default,
Expand All @@ -146,6 +153,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
fromDate: ref fromDate,
toDate: ref toDate,
status: ref status,
severity: ref severity,
sorting: ref sorting,
page: ref page,
size: ref size);
Expand Down Expand Up @@ -183,6 +191,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
.AddOptionalParameter("from_date", fromDate?.ToString("yyyy-MM-dd"))
.AddOptionalParameter("to_date", toDate?.ToString("yyyy-MM-dd"))
.AddOptionalParameter("status", status?.ToValueString())
.AddOptionalParameter("severity", severity?.ToValueString())
.AddOptionalParameter("sorting", sorting)
.AddOptionalParameter("page", page?.ToString())
.AddOptionalParameter("size", size?.ToString())
Expand Down Expand Up @@ -231,6 +240,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
fromDate: fromDate,
toDate: toDate,
status: status,
severity: severity,
sorting: sorting,
page: page,
size: size);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public partial interface IAgentInsightsClient
/// <param name="fromDate"></param>
/// <param name="toDate"></param>
/// <param name="status"></param>
/// <param name="severity"></param>
/// <param name="sorting"></param>
/// <param name="page">
/// Default Value: 1
Expand All @@ -27,6 +28,7 @@ public partial interface IAgentInsightsClient
global::System.DateTime? fromDate = default,
global::System.DateTime? toDate = default,
global::Opik.FindAgentInsightsIssuesStatus? status = default,
global::Opik.FindAgentInsightsIssuesSeverity? severity = default,
string? sorting = default,
int? page = default,
int? size = default,
Expand All @@ -40,6 +42,7 @@ public partial interface IAgentInsightsClient
/// <param name="fromDate"></param>
/// <param name="toDate"></param>
/// <param name="status"></param>
/// <param name="severity"></param>
/// <param name="sorting"></param>
/// <param name="page">
/// Default Value: 1
Expand All @@ -55,6 +58,7 @@ public partial interface IAgentInsightsClient
global::System.DateTime? fromDate = default,
global::System.DateTime? toDate = default,
global::Opik.FindAgentInsightsIssuesStatus? status = default,
global::Opik.FindAgentInsightsIssuesSeverity? severity = default,
string? sorting = default,
int? page = default,
int? size = default,
Expand Down
2 changes: 2 additions & 0 deletions src/libs/Opik/Generated/Opik.ISpansClient.AddSpanComment.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ public partial interface ISpansClient
/// </summary>
/// <param name="id"></param>
/// <param name="text"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task AddSpanCommentAsync(
global::System.Guid id,
string text,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public partial interface ISpansClient
/// <param name="value"></param>
/// <param name="reason"></param>
/// <param name="source"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
Expand All @@ -54,6 +55,7 @@ public partial interface ISpansClient
global::Opik.FeedbackScoreSource source,
string? categoryName = default,
string? reason = default,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@ public partial interface ISpansClient
/// <param name="id"></param>
/// <param name="name"></param>
/// <param name="author"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task DeleteSpanFeedbackScoreAsync(
global::System.Guid id,
string name,
string? author = default,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ public partial interface ISpansClient
/// </summary>
/// <param name="commentId"></param>
/// <param name="text"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task UpdateSpanCommentAsync(
global::System.Guid commentId,
string text,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ public partial interface ITracesClient
/// </summary>
/// <param name="id"></param>
/// <param name="text"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task AddThreadCommentAsync(
global::System.Guid id,
string text,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ public partial interface ITracesClient
/// </summary>
/// <param name="id"></param>
/// <param name="text"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task AddTraceCommentAsync(
global::System.Guid id,
string text,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public partial interface ITracesClient
/// <param name="value"></param>
/// <param name="reason"></param>
/// <param name="source"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
Expand All @@ -54,6 +55,7 @@ public partial interface ITracesClient
global::Opik.FeedbackScoreSource source,
string? categoryName = default,
string? reason = default,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public partial interface ITracesClient
/// <param name="threadId"></param>
/// <param name="names"></param>
/// <param name="author"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
Expand All @@ -46,6 +47,7 @@ public partial interface ITracesClient
string threadId,
global::System.Collections.Generic.IList<string> names,
string? author = default,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@ public partial interface ITracesClient
/// <param name="id"></param>
/// <param name="name"></param>
/// <param name="author"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task DeleteTraceFeedbackScoreAsync(
global::System.Guid id,
string name,
string? author = default,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public partial interface ITracesClient
/// <param name="toTime">
/// Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
/// </param>
/// <param name="annotationQueueId">
/// Filter threads belonging to this annotation queue and scope feedback scores/comments to it
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Opik.ApiException"></exception>
Expand All @@ -50,6 +53,7 @@ public partial interface ITracesClient
string? search = default,
global::System.DateTime? fromTime = default,
global::System.DateTime? toTime = default,
global::System.Guid? annotationQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
Expand Down Expand Up @@ -83,6 +87,9 @@ public partial interface ITracesClient
/// <param name="toTime">
/// Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
/// </param>
/// <param name="annotationQueueId">
/// Filter threads belonging to this annotation queue and scope feedback scores/comments to it
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Opik.ApiException"></exception>
Expand All @@ -98,6 +105,7 @@ public partial interface ITracesClient
string? search = default,
global::System.DateTime? fromTime = default,
global::System.DateTime? toTime = default,
global::System.Guid? annotationQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public partial interface ITracesClient
/// <param name="toTime">
/// Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
/// </param>
/// <param name="annotationQueueId">
/// Filter traces belonging to this annotation queue and scope feedback scores/comments to it
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Opik.ApiException"></exception>
Expand All @@ -52,6 +55,7 @@ public partial interface ITracesClient
string? search = default,
global::System.DateTime? fromTime = default,
global::System.DateTime? toTime = default,
global::System.Guid? annotationQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
Expand Down Expand Up @@ -86,6 +90,9 @@ public partial interface ITracesClient
/// <param name="toTime">
/// Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
/// </param>
/// <param name="annotationQueueId">
/// Filter traces belonging to this annotation queue and scope feedback scores/comments to it
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Opik.ApiException"></exception>
Expand All @@ -102,6 +109,7 @@ public partial interface ITracesClient
string? search = default,
global::System.DateTime? fromTime = default,
global::System.DateTime? toTime = default,
global::System.Guid? annotationQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ public partial interface ITracesClient
/// </summary>
/// <param name="commentId"></param>
/// <param name="text"></param>
/// <param name="sourceQueueId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task UpdateThreadCommentAsync(
global::System.Guid commentId,
string text,
global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
Loading