diff --git a/src/libs/Opik/Generated/Opik.AgentInsightsClient.FindAgentInsightsIssues.g.cs b/src/libs/Opik/Generated/Opik.AgentInsightsClient.FindAgentInsightsIssues.g.cs
index 61ab8951..27c6c91b 100644
--- a/src/libs/Opik/Generated/Opik.AgentInsightsClient.FindAgentInsightsIssues.g.cs
+++ b/src/libs/Opik/Generated/Opik.AgentInsightsClient.FindAgentInsightsIssues.g.cs
@@ -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);
@@ -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);
@@ -74,6 +76,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
///
///
///
+ ///
///
///
/// Default Value: 1
@@ -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,
@@ -100,6 +104,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
fromDate: fromDate,
toDate: toDate,
status: status,
+ severity: severity,
sorting: sorting,
page: page,
size: size,
@@ -117,6 +122,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
///
///
///
+ ///
///
///
/// Default Value: 1
@@ -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,
@@ -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);
@@ -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())
@@ -231,6 +240,7 @@ partial void ProcessFindAgentInsightsIssuesResponseContent(
fromDate: fromDate,
toDate: toDate,
status: status,
+ severity: severity,
sorting: sorting,
page: page,
size: size);
diff --git a/src/libs/Opik/Generated/Opik.IAgentInsightsClient.FindAgentInsightsIssues.g.cs b/src/libs/Opik/Generated/Opik.IAgentInsightsClient.FindAgentInsightsIssues.g.cs
index 0c08637d..7e3c067b 100644
--- a/src/libs/Opik/Generated/Opik.IAgentInsightsClient.FindAgentInsightsIssues.g.cs
+++ b/src/libs/Opik/Generated/Opik.IAgentInsightsClient.FindAgentInsightsIssues.g.cs
@@ -12,6 +12,7 @@ public partial interface IAgentInsightsClient
///
///
///
+ ///
///
///
/// Default Value: 1
@@ -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,
@@ -40,6 +42,7 @@ public partial interface IAgentInsightsClient
///
///
///
+ ///
///
///
/// Default Value: 1
@@ -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,
diff --git a/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanComment.g.cs b/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanComment.g.cs
index 5b2b6cdd..b989216a 100644
--- a/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ISpansClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanFeedbackScore.g.cs b/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanFeedbackScore.g.cs
index fdea2dcc..adbd8a6d 100644
--- a/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanFeedbackScore.g.cs
+++ b/src/libs/Opik/Generated/Opik.ISpansClient.AddSpanFeedbackScore.g.cs
@@ -44,6 +44,7 @@ public partial interface ISpansClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
}
diff --git a/src/libs/Opik/Generated/Opik.ISpansClient.DeleteSpanFeedbackScore.g.cs b/src/libs/Opik/Generated/Opik.ISpansClient.DeleteSpanFeedbackScore.g.cs
index aea2c420..0318d235 100644
--- a/src/libs/Opik/Generated/Opik.ISpansClient.DeleteSpanFeedbackScore.g.cs
+++ b/src/libs/Opik/Generated/Opik.ISpansClient.DeleteSpanFeedbackScore.g.cs
@@ -41,6 +41,7 @@ public partial interface ISpansClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -48,6 +49,7 @@ public partial interface ISpansClient
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ISpansClient.UpdateSpanComment.g.cs b/src/libs/Opik/Generated/Opik.ISpansClient.UpdateSpanComment.g.cs
index 79590735..81b6b79b 100644
--- a/src/libs/Opik/Generated/Opik.ISpansClient.UpdateSpanComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ISpansClient.UpdateSpanComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ISpansClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.AddThreadComment.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.AddThreadComment.g.cs
index 62610b6a..2dfa3958 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.AddThreadComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.AddThreadComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceComment.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceComment.g.cs
index 419ef5e0..91bc1d90 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceFeedbackScore.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceFeedbackScore.g.cs
index 892020e7..6fa1654d 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceFeedbackScore.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.AddTraceFeedbackScore.g.cs
@@ -44,6 +44,7 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.DeleteThreadFeedbackScores.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.DeleteThreadFeedbackScores.g.cs
index 46c30809..daa3bf62 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.DeleteThreadFeedbackScores.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.DeleteThreadFeedbackScores.g.cs
@@ -38,6 +38,7 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -46,6 +47,7 @@ public partial interface ITracesClient
string threadId,
global::System.Collections.Generic.IList names,
string? author = default,
+ global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.DeleteTraceFeedbackScore.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.DeleteTraceFeedbackScore.g.cs
index 17b7229e..7878a32c 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.DeleteTraceFeedbackScore.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.DeleteTraceFeedbackScore.g.cs
@@ -41,6 +41,7 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -48,6 +49,7 @@ public partial interface ITracesClient
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.GetTraceThreads.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.GetTraceThreads.g.cs
index 76c419a2..e73319c4 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.GetTraceThreads.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.GetTraceThreads.g.cs
@@ -35,6 +35,9 @@ public partial interface ITracesClient
///
/// Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
///
+ ///
+ /// Filter threads belonging to this annotation queue and scope feedback scores/comments to it
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
///
@@ -83,6 +87,9 @@ public partial interface ITracesClient
///
/// Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
///
+ ///
+ /// Filter threads belonging to this annotation queue and scope feedback scores/comments to it
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.GetTracesByProject.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.GetTracesByProject.g.cs
index 7e6361b5..ae757455 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.GetTracesByProject.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.GetTracesByProject.g.cs
@@ -36,6 +36,9 @@ public partial interface ITracesClient
///
/// Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
///
+ ///
+ /// Filter traces belonging to this annotation queue and scope feedback scores/comments to it
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
///
@@ -86,6 +90,9 @@ public partial interface ITracesClient
///
/// Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'.
///
+ ///
+ /// Filter traces belonging to this annotation queue and scope feedback scores/comments to it
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.UpdateThreadComment.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.UpdateThreadComment.g.cs
index 3a21019e..70bc0ef6 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.UpdateThreadComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.UpdateThreadComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
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);
}
diff --git a/src/libs/Opik/Generated/Opik.ITracesClient.UpdateTraceComment.g.cs b/src/libs/Opik/Generated/Opik.ITracesClient.UpdateTraceComment.g.cs
index 02b733a3..6d4b4dbb 100644
--- a/src/libs/Opik/Generated/Opik.ITracesClient.UpdateTraceComment.g.cs
+++ b/src/libs/Opik/Generated/Opik.ITracesClient.UpdateTraceComment.g.cs
@@ -40,12 +40,14 @@ public partial interface ITracesClient
///
///
///
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task UpdateTraceCommentAsync(
global::System.Guid commentId,
string text,
+ global::System.Guid? sourceQueueId = default,
global::Opik.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverity.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverity.g.cs
new file mode 100644
index 00000000..75fc1fa5
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverity.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class AgentInsightsIssueSeverityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.AgentInsightsIssueSeverity Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.AgentInsightsIssueSeverityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.AgentInsightsIssueSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.AgentInsightsIssueSeverity);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.AgentInsightsIssueSeverity value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Opik.AgentInsightsIssueSeverityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverityNullable.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverityNullable.g.cs
new file mode 100644
index 00000000..7fe02784
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueSeverityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class AgentInsightsIssueSeverityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.AgentInsightsIssueSeverity? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.AgentInsightsIssueSeverityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.AgentInsightsIssueSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.AgentInsightsIssueSeverity?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.AgentInsightsIssueSeverity? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Opik.AgentInsightsIssueSeverityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverity.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverity.g.cs
new file mode 100644
index 00000000..14bdc856
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverity.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class AgentInsightsIssueWithDetailsSeverityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.AgentInsightsIssueWithDetailsSeverity Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.AgentInsightsIssueWithDetailsSeverityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.AgentInsightsIssueWithDetailsSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.AgentInsightsIssueWithDetailsSeverity);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.AgentInsightsIssueWithDetailsSeverity value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Opik.AgentInsightsIssueWithDetailsSeverityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullable.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullable.g.cs
new file mode 100644
index 00000000..91ebb719
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class AgentInsightsIssueWithDetailsSeverityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.AgentInsightsIssueWithDetailsSeverity? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.AgentInsightsIssueWithDetailsSeverityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.AgentInsightsIssueWithDetailsSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.AgentInsightsIssueWithDetailsSeverity?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.AgentInsightsIssueWithDetailsSeverity? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Opik.AgentInsightsIssueWithDetailsSeverityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverity.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverity.g.cs
new file mode 100644
index 00000000..1bdb9516
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverity.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class FindAgentInsightsIssuesSeverityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.FindAgentInsightsIssuesSeverity Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.FindAgentInsightsIssuesSeverityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.FindAgentInsightsIssuesSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.FindAgentInsightsIssuesSeverity);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.FindAgentInsightsIssuesSeverity value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Opik.FindAgentInsightsIssuesSeverityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullable.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullable.g.cs
new file mode 100644
index 00000000..90d03044
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class FindAgentInsightsIssuesSeverityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.FindAgentInsightsIssuesSeverity? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.FindAgentInsightsIssuesSeverityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.FindAgentInsightsIssuesSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.FindAgentInsightsIssuesSeverity?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.FindAgentInsightsIssuesSeverity? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Opik.FindAgentInsightsIssuesSeverityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverity.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverity.g.cs
new file mode 100644
index 00000000..e06cd224
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverity.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class ReportedIssueSeverityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.ReportedIssueSeverity Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.ReportedIssueSeverityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.ReportedIssueSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.ReportedIssueSeverity);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.ReportedIssueSeverity value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Opik.ReportedIssueSeverityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverityNullable.g.cs b/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverityNullable.g.cs
new file mode 100644
index 00000000..f282772e
--- /dev/null
+++ b/src/libs/Opik/Generated/Opik.JsonConverters.ReportedIssueSeverityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Opik.JsonConverters
+{
+ ///
+ public sealed class ReportedIssueSeverityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Opik.ReportedIssueSeverity? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Opik.ReportedIssueSeverityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Opik.ReportedIssueSeverity)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Opik.ReportedIssueSeverity?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Opik.ReportedIssueSeverity? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Opik.ReportedIssueSeverityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
index 670dd7a9..8528bc7b 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs
@@ -49,10 +49,22 @@ namespace Opik
typeof(global::Opik.JsonConverters.AgentInsightsIssueStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullableJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
@@ -885,6 +897,10 @@ namespace Opik
typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeNullableJsonConverter),
@@ -1011,15 +1027,18 @@ namespace Opik
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsJobUpdateStatus), TypeInfoPropertyName = "AgentInsightsJobUpdateStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssue))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueStatus), TypeInfoPropertyName = "AgentInsightsIssueStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueSeverity), TypeInfoPropertyName = "AgentInsightsIssueSeverity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssuePage))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueDetail))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueWithDetails))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueWithDetailsStatus), TypeInfoPropertyName = "AgentInsightsIssueWithDetailsStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueWithDetailsSeverity), TypeInfoPropertyName = "AgentInsightsIssueWithDetailsSeverity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsReport))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ReportedIssue))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ReportedIssueSeverity), TypeInfoPropertyName = "ReportedIssueSeverity2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdate))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdateStatus), TypeInfoPropertyName = "AgentInsightsIssueUpdateStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.HarnessEntry))]
@@ -1444,9 +1463,6 @@ namespace Opik
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublic))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublicVariant2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValuesPublic))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicType), TypeInfoPropertyName = "ProjectStatItemObjectPublicType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminator))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminatorType), TypeInfoPropertyName = "ProjectStatItemObjectPublicDiscriminatorType2")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1494,10 +1510,22 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.AgentInsightsIssueStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullableJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
@@ -2330,6 +2358,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeNullableJsonConverter),
@@ -2392,6 +2424,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicType), TypeInfoPropertyName = "ProjectStatItemObjectPublicType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminator))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminatorType), TypeInfoPropertyName = "ProjectStatItemObjectPublicDiscriminatorType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatsPublic))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.DatasetExportJobPublic))]
@@ -2889,9 +2924,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequestFormat), TypeInfoPropertyName = "CreateDatasetItemsFromJsonRequestFormat2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesStatus), TypeInfoPropertyName = "FindAgentInsightsIssuesStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.GetWebhookExamplesAlertType), TypeInfoPropertyName = "GetWebhookExamplesAlertType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AttachmentListEntityType), TypeInfoPropertyName = "AttachmentListEntityType2")]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2939,10 +2971,22 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.AgentInsightsIssueStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullableJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.ReportedIssueSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusJsonConverter),
typeof(global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter),
@@ -3775,6 +3819,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesStatusNullableJsonConverter),
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityJsonConverter),
+
+ typeof(global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullableJsonConverter),
+
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeJsonConverter),
typeof(global::Opik.JsonConverters.GetWebhookExamplesAlertTypeNullableJsonConverter),
@@ -3837,6 +3885,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesStatus), TypeInfoPropertyName = "FindAgentInsightsIssuesStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesSeverity), TypeInfoPropertyName = "FindAgentInsightsIssuesSeverity2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.GetWebhookExamplesAlertType), TypeInfoPropertyName = "GetWebhookExamplesAlertType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AttachmentListEntityType), TypeInfoPropertyName = "AttachmentListEntityType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.DownloadAttachmentEntityType), TypeInfoPropertyName = "DownloadAttachmentEntityType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.UploadAttachmentEntityType), TypeInfoPropertyName = "UploadAttachmentEntityType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindFeedbackDefinitionsType), TypeInfoPropertyName = "FindFeedbackDefinitionsType2")]
@@ -4095,8 +4147,14 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsJobUpdateStatusNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueStatusJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueStatusNullableJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueSeverityJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueSeverityNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueWithDetailsStatusNullableJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueWithDetailsSeverityNullableJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.ReportedIssueSeverityJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.ReportedIssueSeverityNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AgentInsightsIssueUpdateStatusNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.ItemImpactJsonConverter());
@@ -4513,6 +4571,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Opik.JsonConverters.CreateDatasetItemsFromJsonRequestFormatNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.FindAgentInsightsIssuesStatusJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.FindAgentInsightsIssuesStatusNullableJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityJsonConverter());
+ options.Converters.Add(new global::Opik.JsonConverters.FindAgentInsightsIssuesSeverityNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.GetWebhookExamplesAlertTypeJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.GetWebhookExamplesAlertTypeNullableJsonConverter());
options.Converters.Add(new global::Opik.JsonConverters.AttachmentListEntityTypeJsonConverter());
diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
index 6d20c055..d2a592c8 100644
--- a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs
@@ -280,3847 +280,3863 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Opik.AgentInsightsIssuePage? Type63 { get; set; }
+ public global::Opik.AgentInsightsIssueSeverity? Type63 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type64 { get; set; }
+ public global::Opik.AgentInsightsIssuePage? Type64 { get; set; }
///
///
///
- public global::Opik.AgentInsightsIssueDetail? Type65 { get; set; }
+ public global::System.Collections.Generic.IList? Type65 { get; set; }
///
///
///
- public global::Opik.AgentInsightsIssueWithDetails? Type66 { get; set; }
+ public global::Opik.AgentInsightsIssueDetail? Type66 { get; set; }
///
///
///
- public global::Opik.AgentInsightsIssueWithDetailsStatus? Type67 { get; set; }
+ public global::Opik.AgentInsightsIssueWithDetails? Type67 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type68 { get; set; }
+ public global::Opik.AgentInsightsIssueWithDetailsStatus? Type68 { get; set; }
///
///
///
- public global::Opik.AgentInsightsReport? Type69 { get; set; }
+ public global::Opik.AgentInsightsIssueWithDetailsSeverity? Type69 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type70 { get; set; }
+ public global::System.Collections.Generic.IList? Type70 { get; set; }
///
///
///
- public global::Opik.ReportedIssue? Type71 { get; set; }
+ public global::Opik.AgentInsightsReport? Type71 { get; set; }
///
///
///
- public global::Opik.AgentInsightsIssueUpdate? Type72 { get; set; }
+ public global::System.Collections.Generic.IList? Type72 { get; set; }
///
///
///
- public global::Opik.AgentInsightsIssueUpdateStatus? Type73 { get; set; }
+ public global::Opik.ReportedIssue? Type73 { get; set; }
///
///
///
- public global::Opik.HarnessEntry? Type74 { get; set; }
+ public global::Opik.ReportedIssueSeverity? Type74 { get; set; }
///
///
///
- public global::Opik.Lane? Type75 { get; set; }
+ public global::Opik.AgentInsightsIssueUpdate? Type75 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type76 { get; set; }
+ public global::Opik.AgentInsightsIssueUpdateStatus? Type76 { get; set; }
///
///
///
- public global::Opik.ModelTiers? Type77 { get; set; }
+ public global::Opik.HarnessEntry? Type77 { get; set; }
///
///
///
- public bool? Type78 { get; set; }
+ public global::Opik.Lane? Type78 { get; set; }
///
///
///
- public global::Opik.Side? Type79 { get; set; }
+ public global::System.Collections.Generic.IList? Type79 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type80 { get; set; }
+ public global::Opik.ModelTiers? Type80 { get; set; }
///
///
///
- public global::Opik.SpendCompositionResponse? Type81 { get; set; }
+ public bool? Type81 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type82 { get; set; }
+ public global::Opik.Side? Type82 { get; set; }
///
///
///
- public global::Opik.SpendMetricRequest? Type83 { get; set; }
+ public global::System.Collections.Generic.IList? Type83 { get; set; }
///
///
///
- public global::Opik.Item? Type84 { get; set; }
+ public global::Opik.SpendCompositionResponse? Type84 { get; set; }
///
///
///
- public global::Opik.ItemImpact? Type85 { get; set; }
+ public global::System.Collections.Generic.IList? Type85 { get; set; }
///
///
///
- public global::Opik.SpendBreakdownResponse? Type86 { get; set; }
+ public global::Opik.SpendMetricRequest? Type86 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type87 { get; set; }
+ public global::Opik.Item? Type87 { get; set; }
///
///
///
- public global::Opik.SpendRecommendationsResponse? Type88 { get; set; }
+ public global::Opik.ItemImpact? Type88 { get; set; }
///
///
///
- public global::Opik.Result? Type89 { get; set; }
+ public global::Opik.SpendBreakdownResponse? Type89 { get; set; }
///
///
///
- public double? Type90 { get; set; }
+ public global::System.Collections.Generic.IList? Type90 { get; set; }
///
///
///
- public global::Opik.SpendSummaryResponse? Type91 { get; set; }
+ public global::Opik.SpendRecommendationsResponse? Type91 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type92 { get; set; }
+ public global::Opik.Result? Type92 { get; set; }
///
///
///
- public global::Opik.SpendUserPage? Type93 { get; set; }
+ public double? Type93 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type94 { get; set; }
+ public global::Opik.SpendSummaryResponse? Type94 { get; set; }
///
///
///
- public global::Opik.SpendUserRow? Type95 { get; set; }
+ public global::System.Collections.Generic.IList? Type95 { get; set; }
///
///
///
- public global::Opik.Alert? Type96 { get; set; }
+ public global::Opik.SpendUserPage? Type96 { get; set; }
///
///
///
- public global::Opik.AlertAlertType? Type97 { get; set; }
+ public global::System.Collections.Generic.IList? Type97 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type98 { get; set; }
+ public global::Opik.SpendUserRow? Type98 { get; set; }
///
///
///
- public global::Opik.Webhook? Type99 { get; set; }
+ public global::Opik.Alert? Type99 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type100 { get; set; }
+ public global::Opik.AlertAlertType? Type100 { get; set; }
///
///
///
- public global::Opik.AlertTrigger? Type101 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type101 { get; set; }
///
///
///
- public global::Opik.AlertTriggerEventType? Type102 { get; set; }
+ public global::Opik.Webhook? Type102 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type103 { get; set; }
+ public global::System.Collections.Generic.IList? Type103 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfig? Type104 { get; set; }
+ public global::Opik.AlertTrigger? Type104 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigType? Type105 { get; set; }
+ public global::Opik.AlertTriggerEventType? Type105 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWrite? Type106 { get; set; }
+ public global::System.Collections.Generic.IList? Type106 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigWriteType? Type107 { get; set; }
+ public global::Opik.AlertTriggerConfig? Type107 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWrite? Type108 { get; set; }
+ public global::Opik.AlertTriggerConfigType? Type108 { get; set; }
///
///
///
- public global::Opik.AlertTriggerWriteEventType? Type109 { get; set; }
+ public global::Opik.AlertTriggerConfigWrite? Type109 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type110 { get; set; }
+ public global::Opik.AlertTriggerConfigWriteType? Type110 { get; set; }
///
///
///
- public global::Opik.AlertWrite? Type111 { get; set; }
+ public global::Opik.AlertTriggerWrite? Type111 { get; set; }
///
///
///
- public global::Opik.AlertWriteAlertType? Type112 { get; set; }
+ public global::Opik.AlertTriggerWriteEventType? Type112 { get; set; }
///
///
///
- public global::Opik.WebhookWrite? Type113 { get; set; }
+ public global::System.Collections.Generic.IList? Type113 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type114 { get; set; }
+ public global::Opik.AlertWrite? Type114 { get; set; }
///
///
///
- public global::Opik.BatchDelete? Type115 { get; set; }
+ public global::Opik.AlertWriteAlertType? Type115 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type116 { get; set; }
+ public global::Opik.WebhookWrite? Type116 { get; set; }
///
///
///
- public global::Opik.AlertPagePublic? Type117 { get; set; }
+ public global::System.Collections.Generic.IList? Type117 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type118 { get; set; }
+ public global::Opik.BatchDelete? Type118 { get; set; }
///
///
///
- public global::Opik.AlertPublic? Type119 { get; set; }
+ public global::System.Collections.Generic.IList? Type119 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublic? Type120 { get; set; }
+ public global::Opik.AlertPagePublic? Type120 { get; set; }
///
///
///
- public global::Opik.AlertTriggerConfigPublicType? Type121 { get; set; }
+ public global::System.Collections.Generic.IList? Type121 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublic? Type122 { get; set; }
+ public global::Opik.AlertPublic? Type122 { get; set; }
///
///
///
- public global::Opik.AlertTriggerPublicEventType? Type123 { get; set; }
+ public global::Opik.AlertTriggerConfigPublic? Type123 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type124 { get; set; }
+ public global::Opik.AlertTriggerConfigPublicType? Type124 { get; set; }
///
///
///
- public global::Opik.AlertPublicAlertType? Type125 { get; set; }
+ public global::Opik.AlertTriggerPublic? Type125 { get; set; }
///
///
///
- public global::Opik.WebhookPublic? Type126 { get; set; }
+ public global::Opik.AlertTriggerPublicEventType? Type126 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type127 { get; set; }
+ public global::System.Collections.Generic.IList? Type127 { get; set; }
///
///
///
- public global::Opik.WebhookExamples? Type128 { get; set; }
+ public global::Opik.AlertPublicAlertType? Type128 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type129 { get; set; }
+ public global::Opik.WebhookPublic? Type129 { get; set; }
///
///
///
- public object? Type130 { get; set; }
+ public global::System.Collections.Generic.IList? Type130 { get; set; }
///
///
///
- public global::Opik.WebhookTestResult? Type131 { get; set; }
+ public global::Opik.WebhookExamples? Type131 { get; set; }
///
///
///
- public global::Opik.WebhookTestResultStatus? Type132 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type132 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueItemIds? Type133 { get; set; }
+ public object? Type133 { get; set; }
///
///
///
- public global::Opik.AnnotationQueue? Type134 { get; set; }
+ public global::Opik.WebhookTestResult? Type134 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueScope? Type135 { get; set; }
+ public global::Opik.WebhookTestResultStatus? Type135 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type136 { get; set; }
+ public global::Opik.AnnotationQueueItemIds? Type136 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewer? Type137 { get; set; }
+ public global::Opik.AnnotationQueue? Type137 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type138 { get; set; }
+ public global::Opik.AnnotationQueueScope? Type138 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAverage? Type139 { get; set; }
+ public global::System.Collections.Generic.IList? Type139 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWrite? Type140 { get; set; }
+ public global::Opik.AnnotationQueueReviewer? Type140 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueWriteScope? Type141 { get; set; }
+ public global::System.Collections.Generic.IList? Type141 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatch? Type142 { get; set; }
+ public global::Opik.FeedbackScoreAverage? Type142 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type143 { get; set; }
+ public global::Opik.AnnotationQueueWrite? Type143 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueBatchWrite? Type144 { get; set; }
+ public global::Opik.AnnotationQueueWriteScope? Type144 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type145 { get; set; }
+ public global::Opik.AnnotationQueueBatch? Type145 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePagePublic? Type146 { get; set; }
+ public global::System.Collections.Generic.IList? Type146 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type147 { get; set; }
+ public global::Opik.AnnotationQueueBatchWrite? Type147 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublic? Type148 { get; set; }
+ public global::System.Collections.Generic.IList? Type148 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueReviewerPublic? Type149 { get; set; }
+ public global::Opik.AnnotationQueuePagePublic? Type149 { get; set; }
///
///
///
- public global::Opik.AnnotationQueuePublicScope? Type150 { get; set; }
+ public global::System.Collections.Generic.IList? Type150 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type151 { get; set; }
+ public global::Opik.AnnotationQueuePublic? Type151 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type152 { get; set; }
+ public global::Opik.AnnotationQueueReviewerPublic? Type152 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreAveragePublic? Type153 { get; set; }
+ public global::Opik.AnnotationQueuePublicScope? Type153 { get; set; }
///
///
///
- public global::Opik.ItemLockInfo? Type154 { get; set; }
+ public global::System.Collections.Generic.IList? Type154 { get; set; }
///
///
///
- public global::Opik.LocksResponse? Type155 { get; set; }
+ public global::System.Collections.Generic.IList? Type155 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type156 { get; set; }
+ public global::Opik.FeedbackScoreAveragePublic? Type156 { get; set; }
///
///
///
- public global::Opik.LockResponse? Type157 { get; set; }
+ public global::Opik.ItemLockInfo? Type157 { get; set; }
///
///
///
- public global::Opik.AnnotationQueueUpdate? Type158 { get; set; }
+ public global::Opik.LocksResponse? Type158 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatch? Type159 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type159 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchEntityType? Type160 { get; set; }
+ public global::Opik.LockResponse? Type160 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type161 { get; set; }
+ public global::Opik.AnnotationQueueUpdate? Type161 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItem? Type162 { get; set; }
+ public global::Opik.AssertionResultBatch? Type162 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemStatus? Type163 { get; set; }
+ public global::Opik.AssertionResultBatchEntityType? Type163 { get; set; }
///
///
///
- public global::Opik.AssertionResultBatchItemSource? Type164 { get; set; }
+ public global::System.Collections.Generic.IList? Type164 { get; set; }
///
///
///
- public global::Opik.Attachment? Type165 { get; set; }
+ public global::Opik.AssertionResultBatchItem? Type165 { get; set; }
///
///
///
- public global::Opik.AttachmentPage? Type166 { get; set; }
+ public global::Opik.AssertionResultBatchItemStatus? Type166 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type167 { get; set; }
+ public global::Opik.AssertionResultBatchItemSource? Type167 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequest? Type168 { get; set; }
+ public global::Opik.Attachment? Type168 { get; set; }
///
///
///
- public global::Opik.CompleteMultipartUploadRequestEntityType? Type169 { get; set; }
+ public global::Opik.AttachmentPage? Type169 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type170 { get; set; }
+ public global::System.Collections.Generic.IList? Type170 { get; set; }
///
///
///
- public global::Opik.MultipartUploadPart? Type171 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequest? Type171 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequest? Type172 { get; set; }
+ public global::Opik.CompleteMultipartUploadRequestEntityType? Type172 { get; set; }
///
///
///
- public global::Opik.DeleteAttachmentsRequestEntityType? Type173 { get; set; }
+ public global::System.Collections.Generic.IList? Type173 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadResponse? Type174 { get; set; }
+ public global::Opik.MultipartUploadPart? Type174 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequest? Type175 { get; set; }
+ public global::Opik.DeleteAttachmentsRequest? Type175 { get; set; }
///
///
///
- public global::Opik.StartMultipartUploadRequestEntityType? Type176 { get; set; }
+ public global::Opik.DeleteAttachmentsRequestEntityType? Type176 { get; set; }
///
///
///
- public global::Opik.AuthDetailsHolder? Type177 { get; set; }
+ public global::Opik.StartMultipartUploadResponse? Type177 { get; set; }
///
///
///
- public global::Opik.WorkspaceNameHolder? Type178 { get; set; }
+ public global::Opik.StartMultipartUploadRequest? Type178 { get; set; }
///
///
///
- public global::Opik.AudioUrl? Type179 { get; set; }
+ public global::Opik.StartMultipartUploadRequestEntityType? Type179 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluator? Type180 { get; set; }
+ public global::Opik.AuthDetailsHolder? Type180 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type181 { get; set; }
+ public global::Opik.WorkspaceNameHolder? Type181 { get; set; }
///
///
///
- public global::Opik.ProjectReference? Type182 { get; set; }
+ public global::Opik.AudioUrl? Type182 { get; set; }
///
///
///
- public float? Type183 { get; set; }
+ public global::Opik.AutomationRuleEvaluator? Type183 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorType? Type184 { get; set; }
+ public global::System.Collections.Generic.IList? Type184 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorAction? Type185 { get; set; }
+ public global::Opik.ProjectReference? Type185 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminator? Type186 { get; set; }
+ public float? Type186 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type187 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorType? Type187 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type188 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorAction? Type188 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type189 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminator? Type189 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type190 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type190 { get; set; }
///
///
///
- public global::Opik.TraceFilter? Type191 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type191 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCode? Type192 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type192 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type193 { get; set; }
+ public global::System.Collections.Generic.IList? Type193 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type194 { get; set; }
+ public global::Opik.TraceFilter? Type194 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type195 { get; set; }
+ public global::Opik.LlmAsJudgeCode? Type195 { get; set; }
///
///
///
- public global::Opik.SpanFilter? Type196 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type196 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCode? Type197 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type197 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type198 { get; set; }
+ public global::System.Collections.Generic.IList? Type198 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type199 { get; set; }
+ public global::Opik.SpanFilter? Type199 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCode? Type200 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCode? Type200 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type201 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type201 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type202 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type202 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type203 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCode? Type203 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilter? Type204 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type204 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCode? Type205 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type205 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type206 { get; set; }
+ public global::System.Collections.Generic.IList? Type206 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type207 { get; set; }
+ public global::Opik.TraceThreadFilter? Type207 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type208 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCode? Type208 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type209 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type209 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type210 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type210 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCode? Type211 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type211 { get; set; }
///
///
///
- public global::Opik.ImageUrl? Type212 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type212 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParameters? Type213 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type213 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type214 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCode? Type214 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessage? Type215 { get; set; }
+ public global::Opik.ImageUrl? Type215 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type216 { get; set; }
+ public global::Opik.LlmAsJudgeModelParameters? Type216 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchema? Type217 { get; set; }
+ public global::System.Collections.Generic.IList? Type217 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageRole? Type218 { get; set; }
+ public global::Opik.LlmAsJudgeMessage? Type218 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type219 { get; set; }
+ public global::System.Collections.Generic.IList? Type219 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContent? Type220 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchema? Type220 { get; set; }
///
///
///
- public global::Opik.VideoUrl? Type221 { get; set; }
+ public global::Opik.LlmAsJudgeMessageRole? Type221 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaType? Type222 { get; set; }
+ public global::System.Collections.Generic.IList? Type222 { get; set; }
///
///
///
- public global::Opik.SpanFilterOperator? Type223 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContent? Type223 { get; set; }
///
///
///
- public global::Opik.TraceFilterOperator? Type224 { get; set; }
+ public global::Opik.VideoUrl? Type224 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterOperator? Type225 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaType? Type225 { get; set; }
///
///
///
- public global::Opik.AudioUrlWrite? Type226 { get; set; }
+ public global::Opik.SpanFilterOperator? Type226 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type227 { get; set; }
+ public global::Opik.TraceFilterOperator? Type227 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWrite? Type228 { get; set; }
+ public global::Opik.TraceThreadFilterOperator? Type228 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type229 { get; set; }
+ public global::Opik.AudioUrlWrite? Type229 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type230 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type230 { get; set; }
///
///
///
- public global::Opik.TraceFilterWrite? Type231 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWrite? Type231 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodeWrite? Type232 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type232 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type233 { get; set; }
+ public global::System.Collections.Generic.IList? Type233 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type234 { get; set; }
+ public global::Opik.TraceFilterWrite? Type234 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type235 { get; set; }
+ public global::Opik.LlmAsJudgeCodeWrite? Type235 { get; set; }
///
///
///
- public global::Opik.SpanFilterWrite? Type236 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type236 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodeWrite? Type237 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type237 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type238 { get; set; }
+ public global::System.Collections.Generic.IList? Type238 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type239 { get; set; }
+ public global::Opik.SpanFilterWrite? Type239 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type240 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodeWrite? Type240 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type241 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type241 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type242 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type242 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type243 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type243 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWrite? Type244 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type244 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type245 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type245 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type246 { get; set; }
+ public global::System.Collections.Generic.IList? Type246 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type247 { get; set; }
+ public global::Opik.TraceThreadFilterWrite? Type247 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type248 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type248 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type249 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type249 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type250 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type250 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodeWrite? Type251 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type251 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteType? Type252 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type252 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteAction? Type253 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type253 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type254 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodeWrite? Type254 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type255 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteType? Type255 { get; set; }
///
///
///
- public global::Opik.ImageUrlWrite? Type256 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteAction? Type256 { get; set; }
///
///
///
- public global::Opik.JsonNodeWrite? Type257 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type257 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersWrite? Type258 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type258 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type259 { get; set; }
+ public global::Opik.ImageUrlWrite? Type259 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWrite? Type260 { get; set; }
+ public global::Opik.JsonNodeWrite? Type260 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type261 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersWrite? Type261 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWrite? Type262 { get; set; }
+ public global::System.Collections.Generic.IList? Type262 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentWrite? Type263 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWrite? Type263 { get; set; }
///
///
///
- public global::Opik.VideoUrlWrite? Type264 { get; set; }
+ public global::System.Collections.Generic.IList? Type264 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageWriteRole? Type265 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWrite? Type265 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type266 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentWrite? Type266 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type267 { get; set; }
+ public global::Opik.VideoUrlWrite? Type267 { get; set; }
///
///
///
- public global::Opik.SpanFilterWriteOperator? Type268 { get; set; }
+ public global::Opik.LlmAsJudgeMessageWriteRole? Type268 { get; set; }
///
///
///
- public global::Opik.TraceFilterWriteOperator? Type269 { get; set; }
+ public global::System.Collections.Generic.IList? Type269 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterWriteOperator? Type270 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type270 { get; set; }
///
///
///
- public global::Opik.AudioUrlPublic? Type271 { get; set; }
+ public global::Opik.SpanFilterWriteOperator? Type271 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type272 { get; set; }
+ public global::Opik.TraceFilterWriteOperator? Type272 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublic? Type273 { get; set; }
+ public global::Opik.TraceThreadFilterWriteOperator? Type273 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type274 { get; set; }
+ public global::Opik.AudioUrlPublic? Type274 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type275 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type275 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublic? Type276 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublic? Type276 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeCodePublic? Type277 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type277 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type278 { get; set; }
+ public global::System.Collections.Generic.IList? Type278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type279 { get; set; }
+ public global::Opik.TraceFilterPublic? Type279 { get; set; }
///
///
///
- public global::Opik.ProjectReferencePublic? Type280 { get; set; }
+ public global::Opik.LlmAsJudgeCodePublic? Type280 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type281 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type281 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type282 { get; set; }
+ public global::System.Collections.Generic.IList? Type282 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type283 { get; set; }
+ public global::Opik.ProjectReferencePublic? Type283 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type284 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type284 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPagePublic? Type285 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type285 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type286 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type286 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type287 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type287 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type288 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPagePublic? Type288 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type289 { get; set; }
+ public global::System.Collections.Generic.IList? Type289 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublic? Type290 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type290 { get; set; }
///
///
///
- public global::Opik.SpanLlmAsJudgeCodePublic? Type291 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type291 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type292 { get; set; }
+ public global::System.Collections.Generic.IList? Type292 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type293 { get; set; }
+ public global::Opik.SpanFilterPublic? Type293 { get; set; }
///
///
///
- public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type294 { get; set; }
+ public global::Opik.SpanLlmAsJudgeCodePublic? Type294 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type295 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type295 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type296 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type296 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type297 { get; set; }
+ public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type297 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublic? Type298 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type298 { get; set; }
///
///
///
- public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type299 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type299 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type300 { get; set; }
+ public global::System.Collections.Generic.IList? Type300 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type301 { get; set; }
+ public global::Opik.TraceThreadFilterPublic? Type301 { get; set; }
///
///
///
- public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type302 { get; set; }
+ public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type302 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type303 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type303 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type304 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type304 { get; set; }
///
///
///
- public global::Opik.UserDefinedMetricPythonCodePublic? Type305 { get; set; }
+ public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type305 { get; set; }
///
///
///
- public global::Opik.ImageUrlPublic? Type306 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type306 { get; set; }
///
///
///
- public global::Opik.JsonNodePublic? Type307 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type307 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeModelParametersPublic? Type308 { get; set; }
+ public global::Opik.UserDefinedMetricPythonCodePublic? Type308 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type309 { get; set; }
+ public global::Opik.ImageUrlPublic? Type309 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublic? Type310 { get; set; }
+ public global::Opik.JsonNodePublic? Type310 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type311 { get; set; }
+ public global::Opik.LlmAsJudgeModelParametersPublic? Type311 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublic? Type312 { get; set; }
+ public global::System.Collections.Generic.IList? Type312 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessageContentPublic? Type313 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublic? Type313 { get; set; }
///
///
///
- public global::Opik.VideoUrlPublic? Type314 { get; set; }
+ public global::System.Collections.Generic.IList? Type314 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeMessagePublicRole? Type315 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublic? Type315 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type316 { get; set; }
+ public global::Opik.LlmAsJudgeMessageContentPublic? Type316 { get; set; }
///
///
///
- public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type317 { get; set; }
+ public global::Opik.VideoUrlPublic? Type317 { get; set; }
///
///
///
- public global::Opik.SpanFilterPublicOperator? Type318 { get; set; }
+ public global::Opik.LlmAsJudgeMessagePublicRole? Type318 { get; set; }
///
///
///
- public global::Opik.TraceFilterPublicOperator? Type319 { get; set; }
+ public global::System.Collections.Generic.IList? Type319 { get; set; }
///
///
///
- public global::Opik.TraceThreadFilterPublicOperator? Type320 { get; set; }
+ public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type320 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicType? Type321 { get; set; }
+ public global::Opik.SpanFilterPublicOperator? Type321 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicAction? Type322 { get; set; }
+ public global::Opik.TraceFilterPublicOperator? Type322 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type323 { get; set; }
+ public global::Opik.TraceThreadFilterPublicOperator? Type323 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type324 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicType? Type324 { get; set; }
///
///
///
- public global::Opik.LogItem? Type325 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicAction? Type325 { get; set; }
///
///
///
- public global::Opik.LogItemLevel? Type326 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type326 { get; set; }
///
///
///
- public global::Opik.LogPage? Type327 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type327 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type328 { get; set; }
+ public global::Opik.LogItem? Type328 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdate? Type329 { get; set; }
+ public global::Opik.LogItemLevel? Type329 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateType? Type330 { get; set; }
+ public global::Opik.LogPage? Type330 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateAction? Type331 { get; set; }
+ public global::System.Collections.Generic.IList? Type331 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type332 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdate? Type332 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type333 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateType? Type333 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type334 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateAction? Type334 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type335 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type335 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type336 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type336 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type337 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type337 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type338 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type338 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type339 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type339 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type340 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type340 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type341 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type341 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type342 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type342 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type343 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type343 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type344 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type344 { get; set; }
///
///
///
- public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type345 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type345 { get; set; }
///
///
///
- public global::Opik.AssistantMessage? Type346 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type346 { get; set; }
///
///
///
- public global::Opik.AssistantMessageRole? Type347 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type347 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type348 { get; set; }
+ public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type348 { get; set; }
///
///
///
- public global::Opik.ToolCall? Type349 { get; set; }
+ public global::Opik.AssistantMessage? Type349 { get; set; }
///
///
///
- public global::Opik.FunctionCall? Type350 { get; set; }
+ public global::Opik.AssistantMessageRole? Type350 { get; set; }
///
///
///
- public global::Opik.ChatCompletionChoice? Type351 { get; set; }
+ public global::System.Collections.Generic.IList? Type351 { get; set; }
///
///
///
- public global::Opik.Delta? Type352 { get; set; }
+ public global::Opik.ToolCall? Type352 { get; set; }
///
///
///
- public global::Opik.LogProbs? Type353 { get; set; }
+ public global::Opik.FunctionCall? Type353 { get; set; }
///
///
///
- public global::Opik.ChatCompletionResponse? Type354 { get; set; }
+ public global::Opik.ChatCompletionChoice? Type354 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type355 { get; set; }
+ public global::Opik.Delta? Type355 { get; set; }
///
///
///
- public global::Opik.Usage? Type356 { get; set; }
+ public global::Opik.LogProbs? Type356 { get; set; }
///
///
///
- public global::Opik.CompletionTokensDetails? Type357 { get; set; }
+ public global::Opik.ChatCompletionResponse? Type357 { get; set; }
///
///
///
- public global::Opik.LogProb? Type358 { get; set; }
+ public global::System.Collections.Generic.IList? Type358 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type359 { get; set; }
+ public global::Opik.Usage? Type359 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type360 { get; set; }
+ public global::Opik.CompletionTokensDetails? Type360 { get; set; }
///
///
///
- public global::Opik.PromptTokensDetails? Type361 { get; set; }
+ public global::Opik.LogProb? Type361 { get; set; }
///
///
///
- public global::Opik.ToolCallType? Type362 { get; set; }
+ public global::System.Collections.Generic.IList? Type362 { get; set; }
///
///
///
- public global::Opik.ChatCompletionRequest? Type363 { get; set; }
+ public global::System.Collections.Generic.IList? Type363 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type364 { get; set; }
+ public global::Opik.PromptTokensDetails? Type364 { get; set; }
///
///
///
- public global::Opik.Message? Type365 { get; set; }
+ public global::Opik.ToolCallType? Type365 { get; set; }
///
///
///
- public global::Opik.StreamOptions? Type366 { get; set; }
+ public global::Opik.ChatCompletionRequest? Type366 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type367 { get; set; }
+ public global::System.Collections.Generic.IList? Type367 { get; set; }
///
///
///
- public global::Opik.ResponseFormat? Type368 { get; set; }
+ public global::Opik.Message? Type368 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type369 { get; set; }
+ public global::Opik.StreamOptions? Type369 { get; set; }
///
///
///
- public global::Opik.Tool? Type370 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type370 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type371 { get; set; }
+ public global::Opik.ResponseFormat? Type371 { get; set; }
///
///
///
- public global::Opik.Function? Type372 { get; set; }
+ public global::System.Collections.Generic.IList? Type372 { get; set; }
///
///
///
- public global::Opik.JsonSchema? Type373 { get; set; }
+ public global::Opik.Tool? Type373 { get; set; }
///
///
///
- public global::Opik.ResponseFormatType? Type374 { get; set; }
+ public global::System.Collections.Generic.IList? Type374 { get; set; }
///
///
///
- public global::Opik.ToolType? Type375 { get; set; }
+ public global::Opik.Function? Type375 { get; set; }
///
///
///
- public global::Opik.DashboardPublic? Type376 { get; set; }
+ public global::Opik.JsonSchema? Type376 { get; set; }
///
///
///
- public global::Opik.DashboardPublicType? Type377 { get; set; }
+ public global::Opik.ResponseFormatType? Type377 { get; set; }
///
///
///
- public global::Opik.DashboardPublicScope? Type378 { get; set; }
+ public global::Opik.ToolType? Type378 { get; set; }
///
///
///
- public global::Opik.DashboardWrite? Type379 { get; set; }
+ public global::Opik.DashboardPublic? Type379 { get; set; }
///
///
///
- public global::Opik.DashboardWriteType? Type380 { get; set; }
+ public global::Opik.DashboardPublicType? Type380 { get; set; }
///
///
///
- public global::Opik.DashboardPagePublic? Type381 { get; set; }
+ public global::Opik.DashboardPublicScope? Type381 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type382 { get; set; }
+ public global::Opik.DashboardWrite? Type382 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublic? Type383 { get; set; }
+ public global::Opik.DashboardWriteType? Type383 { get; set; }
///
///
///
- public global::Opik.DashboardUpdatePublicType? Type384 { get; set; }
+ public global::Opik.DashboardPagePublic? Type384 { get; set; }
///
///
///
- public global::Opik.DatasetVersionPublic? Type385 { get; set; }
+ public global::System.Collections.Generic.IList? Type385 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type386 { get; set; }
+ public global::Opik.DashboardUpdatePublic? Type386 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublic? Type387 { get; set; }
+ public global::Opik.DashboardUpdatePublicType? Type387 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicyPublic? Type388 { get; set; }
+ public global::Opik.DatasetVersionPublic? Type388 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemPublicType? Type389 { get; set; }
+ public global::System.Collections.Generic.IList? Type389 { get; set; }
///
///
///
- public global::Opik.DatasetItemChangesPublic? Type390 { get; set; }
+ public global::Opik.EvaluatorItemPublic? Type390 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatchUpdate? Type391 { get; set; }
+ public global::Opik.ExecutionPolicyPublic? Type391 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type392 { get; set; }
+ public global::Opik.EvaluatorItemPublicType? Type392 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilter? Type393 { get; set; }
+ public global::Opik.DatasetItemChangesPublic? Type393 { get; set; }
///
///
///
- public global::Opik.DatasetItemUpdate? Type394 { get; set; }
+ public global::Opik.DatasetItemBatchUpdate? Type394 { get; set; }
///
///
///
- public global::Opik.DatasetItemFilterOperator? Type395 { get; set; }
+ public global::System.Collections.Generic.IList? Type395 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type396 { get; set; }
+ public global::Opik.DatasetItemFilter? Type396 { get; set; }
///
///
///
- public global::Opik.EvaluatorItem? Type397 { get; set; }
+ public global::Opik.DatasetItemUpdate? Type397 { get; set; }
///
///
///
- public global::Opik.ExecutionPolicy? Type398 { get; set; }
+ public global::Opik.DatasetItemFilterOperator? Type398 { get; set; }
///
///
///
- public global::Opik.EvaluatorItemType? Type399 { get; set; }
+ public global::System.Collections.Generic.IList? Type399 { get; set; }
///
///
///
- public global::Opik.Dataset? Type400 { get; set; }
+ public global::Opik.EvaluatorItem? Type400 { get; set; }
///
///
///
- public global::Opik.DatasetType? Type401 { get; set; }
+ public global::Opik.ExecutionPolicy? Type401 { get; set; }
///
///
///
- public global::Opik.DatasetVisibility? Type402 { get; set; }
+ public global::Opik.EvaluatorItemType? Type402 { get; set; }
///
///
///
- public global::Opik.DatasetStatus? Type403 { get; set; }
+ public global::Opik.Dataset? Type403 { get; set; }
///
///
///
- public global::Opik.DatasetVersionSummary? Type404 { get; set; }
+ public global::Opik.DatasetType? Type404 { get; set; }
///
///
///
- public global::Opik.DatasetWrite? Type405 { get; set; }
+ public global::Opik.DatasetVisibility? Type405 { get; set; }
///
///
///
- public global::Opik.DatasetWriteType? Type406 { get; set; }
+ public global::Opik.DatasetStatus? Type406 { get; set; }
///
///
///
- public global::Opik.DatasetWriteVisibility? Type407 { get; set; }
+ public global::Opik.DatasetVersionSummary? Type407 { get; set; }
///
///
///
- public global::Opik.AssertionResult? Type408 { get; set; }
+ public global::Opik.DatasetWrite? Type408 { get; set; }
///
///
///
- public global::Opik.Comment? Type409 { get; set; }
+ public global::Opik.DatasetWriteType? Type409 { get; set; }
///
///
///
- public global::Opik.DatasetItem? Type410 { get; set; }
+ public global::Opik.DatasetWriteVisibility? Type410 { get; set; }
///
///
///
- public global::Opik.DatasetItemSource? Type411 { get; set; }
+ public global::Opik.AssertionResult? Type411 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type412 { get; set; }
+ public global::Opik.Comment? Type412 { get; set; }
///
///
///
- public global::Opik.ExperimentItem? Type413 { get; set; }
+ public global::Opik.DatasetItem? Type413 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type414 { get; set; }
+ public global::Opik.DatasetItemSource? Type414 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummary? Type415 { get; set; }
+ public global::System.Collections.Generic.IList? Type415 { get; set; }
///
///
///
- public global::Opik.DatasetItemBatch? Type416 { get; set; }
+ public global::Opik.ExperimentItem? Type416 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type417 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type417 { get; set; }
///
///
///
- public global::Opik.JsonListString? Type418 { get; set; }
+ public global::Opik.ExperimentRunSummary? Type418 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type419 { get; set; }
+ public global::Opik.DatasetItemBatch? Type419 { get; set; }
///
///
///
- public global::Opik.FeedbackScore? Type420 { get; set; }
+ public global::System.Collections.Generic.IList? Type420 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type421 { get; set; }
+ public global::Opik.JsonListString? Type421 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type422 { get; set; }
+ public global::System.Collections.Generic.IList? Type422 { get; set; }
///
///
///
- public global::Opik.ExperimentItemTraceVisibilityMode? Type423 { get; set; }
+ public global::Opik.FeedbackScore? Type423 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type424 { get; set; }
+ public global::System.Collections.Generic.IList? Type424 { get; set; }
///
///
///
- public global::Opik.ExperimentItemStatus? Type425 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type425 { get; set; }
///
///
///
- public global::Opik.ExperimentRunSummaryStatus? Type426 { get; set; }
+ public global::Opik.ExperimentItemTraceVisibilityMode? Type426 { get; set; }
///
///
///
- public global::Opik.FeedbackScoreSource? Type427 { get; set; }
+ public global::System.Collections.Generic.IList? Type427 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type428 { get; set; }
+ public global::Opik.ExperimentItemStatus? Type428 { get; set; }
///
///
///
- public global::Opik.ValueEntry? Type429 { get; set; }
+ public global::Opik.ExperimentRunSummaryStatus? Type429 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList