diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetTraceAnalyticsCustomAnalytics.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetTraceAnalyticsCustomAnalytics.g.cs
new file mode 100644
index 0000000..3ec1807
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetTraceAnalyticsCustomAnalytics.g.cs
@@ -0,0 +1,47 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ITrackingClient
+ {
+ ///
+ /// Trace Analytics Custom Queries
+ ///
+ ///
+ /// 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 GetTraceAnalyticsCustomAnalyticsAsync(
+
+ global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Trace Analytics Custom Queries
+ ///
+ ///
+ /// 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> GetTraceAnalyticsCustomAnalyticsAsResponseAsync(
+
+ global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Trace Analytics Custom Queries
+ ///
+ ///
+ /// Nested filter tree. AND/OR are cross-span; SPAN_AND/SPAN_OR require one and the same span to satisfy every/any branch (span-level fields only).
+ ///
+ ///
+ /// 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 GetTraceAnalyticsCustomAnalyticsAsync(
+ global::System.Collections.Generic.IList customCharts,
+ global::PromptLayer.TraceStructuredFilterGroup? filterGroup = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartType.g.cs
new file mode 100644
index 0000000..3ae5a49
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecChartTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecChartType 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::PromptLayer.TraceCustomChartSpecChartTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecChartType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecChartType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecChartTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullable.g.cs
new file mode 100644
index 0000000..c54a08f
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecChartTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecChartType? 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::PromptLayer.TraceCustomChartSpecChartTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecChartType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecChartType? 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::PromptLayer.TraceCustomChartSpecChartTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByField.g.cs
new file mode 100644
index 0000000..a5fdba7
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecGroupByFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecGroupByField 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::PromptLayer.TraceCustomChartSpecGroupByFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecGroupByField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecGroupByField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecGroupByFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullable.g.cs
new file mode 100644
index 0000000..6a38c74
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecGroupByFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecGroupByField? 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::PromptLayer.TraceCustomChartSpecGroupByFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecGroupByField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecGroupByField? 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::PromptLayer.TraceCustomChartSpecGroupByFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyField.g.cs
new file mode 100644
index 0000000..8441ae0
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecHierarchyFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecHierarchyField 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::PromptLayer.TraceCustomChartSpecHierarchyFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecHierarchyField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecHierarchyField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecHierarchyField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecHierarchyFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullable.g.cs
new file mode 100644
index 0000000..81dd120
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecHierarchyFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecHierarchyField? 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::PromptLayer.TraceCustomChartSpecHierarchyFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecHierarchyField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecHierarchyField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecHierarchyField? 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::PromptLayer.TraceCustomChartSpecHierarchyFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramField.g.cs
new file mode 100644
index 0000000..d5f87bd
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecHistogramFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecHistogramField 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::PromptLayer.TraceCustomChartSpecHistogramFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecHistogramField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecHistogramField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecHistogramField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecHistogramFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullable.g.cs
new file mode 100644
index 0000000..7cd7f39
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecHistogramFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecHistogramField? 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::PromptLayer.TraceCustomChartSpecHistogramFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecHistogramField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecHistogramField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecHistogramField? 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::PromptLayer.TraceCustomChartSpecHistogramFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetric.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetric.g.cs
new file mode 100644
index 0000000..20a8989
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetric.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecMetricJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecMetric 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::PromptLayer.TraceCustomChartSpecMetricExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecMetric);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecMetric value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecMetricExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricField.g.cs
new file mode 100644
index 0000000..8c1bbba
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecMetricFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecMetricField 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::PromptLayer.TraceCustomChartSpecMetricFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecMetricField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecMetricField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecMetricFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullable.g.cs
new file mode 100644
index 0000000..fb9e87d
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecMetricFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecMetricField? 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::PromptLayer.TraceCustomChartSpecMetricFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecMetricField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecMetricField? 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::PromptLayer.TraceCustomChartSpecMetricFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullable.g.cs
new file mode 100644
index 0000000..2625da5
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecMetricNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecMetric? 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::PromptLayer.TraceCustomChartSpecMetricExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecMetric?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecMetric? 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::PromptLayer.TraceCustomChartSpecMetricExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByField.g.cs
new file mode 100644
index 0000000..92946ce
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSecondaryGroupByFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField 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::PromptLayer.TraceCustomChartSpecSecondaryGroupByFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecSecondaryGroupByFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullable.g.cs
new file mode 100644
index 0000000..2d430d3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSecondaryGroupByFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField? 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::PromptLayer.TraceCustomChartSpecSecondaryGroupByFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField? 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::PromptLayer.TraceCustomChartSpecSecondaryGroupByFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetric.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetric.g.cs
new file mode 100644
index 0000000..c250de2
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetric.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSerieMetricJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSerieMetric 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::PromptLayer.TraceCustomChartSpecSerieMetricExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSerieMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSerieMetric);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSerieMetric value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecSerieMetricExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricField.g.cs
new file mode 100644
index 0000000..51f4b58
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSerieMetricFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSerieMetricField 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::PromptLayer.TraceCustomChartSpecSerieMetricFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSerieMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSerieMetricField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSerieMetricField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecSerieMetricFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullable.g.cs
new file mode 100644
index 0000000..2679a01
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSerieMetricFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSerieMetricField? 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::PromptLayer.TraceCustomChartSpecSerieMetricFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSerieMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSerieMetricField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSerieMetricField? 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::PromptLayer.TraceCustomChartSpecSerieMetricFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullable.g.cs
new file mode 100644
index 0000000..beb057a
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecSerieMetricNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecSerieMetric? 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::PromptLayer.TraceCustomChartSpecSerieMetricExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecSerieMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecSerieMetric?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecSerieMetric? 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::PromptLayer.TraceCustomChartSpecSerieMetricExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucket.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucket.g.cs
new file mode 100644
index 0000000..9a091ee
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucket.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecTimeBucketJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecTimeBucket 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::PromptLayer.TraceCustomChartSpecTimeBucketExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecTimeBucket)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecTimeBucket);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecTimeBucket value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceCustomChartSpecTimeBucketExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullable.g.cs
new file mode 100644
index 0000000..1d8edcf
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceCustomChartSpecTimeBucketNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceCustomChartSpecTimeBucket? 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::PromptLayer.TraceCustomChartSpecTimeBucketExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceCustomChartSpecTimeBucket)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceCustomChartSpecTimeBucket?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceCustomChartSpecTimeBucket? 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::PromptLayer.TraceCustomChartSpecTimeBucketExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogic.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogic.g.cs
new file mode 100644
index 0000000..4114680
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogic.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceStructuredFilterGroupLogicJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceStructuredFilterGroupLogic 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::PromptLayer.TraceStructuredFilterGroupLogicExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceStructuredFilterGroupLogic)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceStructuredFilterGroupLogic);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceStructuredFilterGroupLogic value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TraceStructuredFilterGroupLogicExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullable.g.cs
new file mode 100644
index 0000000..56b1f70
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TraceStructuredFilterGroupLogicNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TraceStructuredFilterGroupLogic? 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::PromptLayer.TraceStructuredFilterGroupLogicExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TraceStructuredFilterGroupLogic)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TraceStructuredFilterGroupLogic?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TraceStructuredFilterGroupLogic? 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::PromptLayer.TraceStructuredFilterGroupLogicExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
index a9e8862..fc9840a 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
@@ -465,6 +465,50 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -725,6 +769,8 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter>),
@@ -1876,6 +1922,50 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -2136,6 +2226,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter>),
@@ -2340,6 +2432,27 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceStructuredFilter))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceStructuredFilterGroup))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceStructuredFilterGroupLogic), TypeInfoPropertyName = "TraceStructuredFilterGroupLogic2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf), TypeInfoPropertyName = "OneOfTraceStructuredFilterTraceStructuredFilterGroup2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpec))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecChartType), TypeInfoPropertyName = "TraceCustomChartSpecChartType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecMetric), TypeInfoPropertyName = "TraceCustomChartSpecMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecMetricField), TypeInfoPropertyName = "TraceCustomChartSpecMetricField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecGroupByField), TypeInfoPropertyName = "TraceCustomChartSpecGroupByField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField), TypeInfoPropertyName = "TraceCustomChartSpecSecondaryGroupByField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecHistogramField), TypeInfoPropertyName = "TraceCustomChartSpecHistogramField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecHierarchyField), TypeInfoPropertyName = "TraceCustomChartSpecHierarchyField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecTimeBucket), TypeInfoPropertyName = "TraceCustomChartSpecTimeBucket2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSerie))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSerieMetric), TypeInfoPropertyName = "TraceCustomChartSpecSerieMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSerieMetricField), TypeInfoPropertyName = "TraceCustomChartSpecSerieMetricField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreatePromptLabelRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackGroupRequest))]
@@ -2695,6 +2808,18 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsResultChartType?), TypeInfoPropertyName = "NullableCustomAnalyticsResultChartType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy?), TypeInfoPropertyName = "NullableRequestAnalyticsCustomAnalyticsQuerySortBy2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder?), TypeInfoPropertyName = "NullableRequestAnalyticsCustomAnalyticsQuerySortOrder2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceStructuredFilterGroupLogic?), TypeInfoPropertyName = "NullableTraceStructuredFilterGroupLogic2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf?), TypeInfoPropertyName = "NullableOneOfTraceStructuredFilterTraceStructuredFilterGroup2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecChartType?), TypeInfoPropertyName = "NullableTraceCustomChartSpecChartType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecMetric?), TypeInfoPropertyName = "NullableTraceCustomChartSpecMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecMetricField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecMetricField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecGroupByField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecGroupByField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecSecondaryGroupByField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecHistogramField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecHistogramField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecHierarchyField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecHierarchyField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecTimeBucket?), TypeInfoPropertyName = "NullableTraceCustomChartSpecTimeBucket2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSerieMetric?), TypeInfoPropertyName = "NullableTraceCustomChartSpecSerieMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TraceCustomChartSpecSerieMetricField?), TypeInfoPropertyName = "NullableTraceCustomChartSpecSerieMetricField2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnRequestColumnType?), TypeInfoPropertyName = "NullableAddReportColumnRequestColumnType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionType?), TypeInfoPropertyName = "NullableCreateToolRegistryRequestExecutionType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionLanguage?), TypeInfoPropertyName = "NullableCreateToolRegistryRequestExecutionLanguage2")]
@@ -2791,39 +2916,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary>>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -3287,6 +3379,50 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -3547,6 +3683,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter>),
@@ -3740,7 +3878,44 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>?), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_47a8c666c2b64908")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf?), TypeInfoPropertyName = "GetReportScoreResponseScoreDetailsVariant4_819979ee8daaec57")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_13c51ceff6c2844e")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary>>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AnyOf>))]
@@ -4033,6 +4208,28 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceStructuredFilterGroupLogicNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecChartTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecMetricFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecGroupByFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSecondaryGroupByFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecHistogramFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecHierarchyFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecTimeBucketNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TraceCustomChartSpecSerieMetricFieldNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionTypeJsonConverter());
@@ -4163,6 +4360,7 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter>());
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
index 60aba7f..febf1e7 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
@@ -2044,811 +2044,895 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.CreatePromptLabelRequest? Type504 { get; set; }
+ public global::PromptLayer.TraceStructuredFilter? Type504 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type505 { get; set; }
+ public global::PromptLayer.TraceStructuredFilterGroup? Type505 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupRequest? Type506 { get; set; }
+ public global::PromptLayer.TraceStructuredFilterGroupLogic? Type506 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreRequest? Type507 { get; set; }
+ public global::System.Collections.Generic.IList>? Type507 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequest? Type508 { get; set; }
+ public global::PromptLayer.OneOf? Type508 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequestColumnType? Type509 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpec? Type509 { get; set; }
///
///
///
- public global::PromptLayer.RunReportRequest? Type510 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecChartType? Type510 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequest? Type511 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecMetric? Type511 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecution? Type512 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecMetricField? Type512 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type513 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecGroupByField? Type513 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type514 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecSecondaryGroupByField? Type514 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableRequest? Type515 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecHistogramField? Type515 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableRequest? Type516 { get; set; }
+ public global::System.Collections.Generic.IList? Type516 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequest? Type517 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecHierarchyField? Type517 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type518 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecTimeBucket? Type518 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceFileSource? Type519 { get; set; }
+ public global::System.Collections.Generic.IList? Type519 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Type520 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecSerie? Type520 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource? Type521 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecSerieMetric? Type521 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Type522 { get; set; }
+ public global::PromptLayer.TraceCustomChartSpecSerieMetricField? Type522 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetRequest? Type523 { get; set; }
+ public global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery? Type523 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequest? Type524 { get; set; }
+ public global::System.Collections.Generic.IList? Type524 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type525 { get; set; }
+ public global::PromptLayer.CreatePromptLabelRequest? Type525 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type526 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type526 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequest? Type527 { get; set; }
+ public global::PromptLayer.TrackGroupRequest? Type527 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type528 { get; set; }
+ public global::PromptLayer.TrackScoreRequest? Type528 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type529 { get; set; }
+ public global::PromptLayer.AddReportColumnRequest? Type529 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsRequest? Type530 { get; set; }
+ public global::PromptLayer.AddReportColumnRequestColumnType? Type530 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellRequest? Type531 { get; set; }
+ public global::PromptLayer.RunReportRequest? Type531 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type532 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequest? Type532 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequest? Type533 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecution? Type533 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecution? Type534 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type534 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionType? Type535 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type535 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type536 { get; set; }
+ public global::PromptLayer.CreateTableRequest? Type536 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequest? Type537 { get; set; }
+ public global::PromptLayer.UpdateTableRequest? Type537 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecution? Type538 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequest? Type538 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionType? Type539 { get; set; }
+ public global::PromptLayer.OneOf? Type539 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type540 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSource? Type540 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type541 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Type541 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type542 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource? Type542 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarRequest? Type543 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Type543 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarRequest? Type544 { get; set; }
+ public global::PromptLayer.UpdateTableSheetRequest? Type544 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsStatus? Type545 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequest? Type545 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortBy? Type546 { get; set; }
+ public global::System.Collections.Generic.IList? Type546 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortOrder? Type547 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type547 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsStatus? Type548 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequest? Type548 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortBy? Type549 { get; set; }
+ public global::System.Collections.Generic.IList? Type549 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortOrder? Type550 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type550 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? Type551 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsRequest? Type551 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type552 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellRequest? Type552 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type553 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type553 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type554 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequest? Type554 { get; set; }
///
///
///
- public long? Type555 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecution? Type555 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortBy? Type556 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionType? Type556 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortOrder? Type557 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type557 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type558 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequest? Type558 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type559 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecution? Type559 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type560 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionType? Type560 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type561 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type561 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type562 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type562 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? Type563 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type563 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentType? Type564 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarRequest? Type564 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentEncoding? Type565 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarRequest? Type565 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type566 { get; set; }
+ public global::PromptLayer.ListDatasetsStatus? Type566 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type567 { get; set; }
+ public global::PromptLayer.ListDatasetsSortBy? Type567 { get; set; }
///
///
///
- public global::PromptLayer.GetSkillCollectionPublicFormat? Type568 { get; set; }
+ public global::PromptLayer.ListDatasetsSortOrder? Type568 { get; set; }
///
///
///
- public global::PromptLayer.GetRequestSearchSuggestionsField? Type569 { get; set; }
+ public global::PromptLayer.ListEvaluationsStatus? Type569 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortBy? Type570 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortBy? Type570 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortOrder? Type571 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortOrder? Type571 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesOrder? Type572 { get; set; }
+ public global::PromptLayer.AnyOf>? Type572 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsOrder? Type573 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type573 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsOrder? Type574 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type574 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsSort? Type575 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type575 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsOrder? Type576 { get; set; }
+ public long? Type576 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type577 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortBy? Type577 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type578 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortOrder? Type578 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type579 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type579 { get; set; }
///
///
///
- public global::PromptLayer.CreatePromptLabelResponse? Type580 { get; set; }
+ public global::System.Collections.Generic.IList? Type580 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type581 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type581 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupResponse? Type582 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type582 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreResponse? Type583 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type583 { get; set; }
///
///
///
- public global::PromptLayer.DeleteReportsByNameResponse? Type584 { get; set; }
+ public global::PromptLayer.OneOf>? Type584 { get; set; }
///
///
///
- public global::PromptLayer.CreateEvaluationPipelineResponse2? Type585 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentType? Type585 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse? Type586 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentEncoding? Type586 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse2? Type587 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type587 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse3? Type588 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type588 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse4? Type589 { get; set; }
+ public global::PromptLayer.GetSkillCollectionPublicFormat? Type589 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse? Type590 { get; set; }
+ public global::PromptLayer.GetRequestSearchSuggestionsField? Type590 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse2? Type591 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortBy? Type591 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse3? Type592 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortOrder? Type592 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse4? Type593 { get; set; }
+ public global::PromptLayer.ListTablesOrder? Type593 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse5? Type594 { get; set; }
+ public global::PromptLayer.ListTableSheetsOrder? Type594 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponse? Type595 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsOrder? Type595 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReport? Type596 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsSort? Type596 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatus? Type597 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsOrder? Type597 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStats? Type598 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type598 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatsStatusCounts? Type599 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type599 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type600 { get; set; }
+ public global::PromptLayer.OneOf? Type600 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReportColumn? Type601 { get; set; }
+ public global::PromptLayer.CreatePromptLabelResponse? Type601 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponse? Type602 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type602 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScore? Type603 { get; set; }
+ public global::PromptLayer.TrackGroupResponse? Type603 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type604 { get; set; }
+ public global::PromptLayer.TrackScoreResponse? Type604 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type605 { get; set; }
+ public global::PromptLayer.DeleteReportsByNameResponse? Type605 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type606 { get; set; }
+ public global::PromptLayer.CreateEvaluationPipelineResponse2? Type606 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type607 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse? Type607 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type608 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse2? Type608 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type609 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse3? Type609 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type610 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse4? Type610 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsResponse? Type611 { get; set; }
+ public global::PromptLayer.RunReportResponse? Type611 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type612 { get; set; }
+ public global::PromptLayer.RunReportResponse2? Type612 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsResponse? Type613 { get; set; }
+ public global::PromptLayer.RunReportResponse3? Type613 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type614 { get; set; }
+ public global::PromptLayer.RunReportResponse4? Type614 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type615 { get; set; }
+ public global::PromptLayer.RunReportResponse5? Type615 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type616 { get; set; }
+ public global::PromptLayer.GetReportResponse? Type616 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type617 { get; set; }
+ public global::PromptLayer.GetReportResponseReport? Type617 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type618 { get; set; }
+ public global::PromptLayer.GetReportResponseStatus? Type618 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type619 { get; set; }
+ public global::PromptLayer.GetReportResponseStats? Type619 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type620 { get; set; }
+ public global::PromptLayer.GetReportResponseStatsStatusCounts? Type620 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type621 { get; set; }
+ public global::System.Collections.Generic.IList? Type621 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse? Type622 { get; set; }
+ public global::PromptLayer.GetReportResponseReportColumn? Type622 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type623 { get; set; }
+ public global::PromptLayer.GetReportScoreResponse? Type623 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponseItem? Type624 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScore? Type624 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse2? Type625 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type625 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse3? Type626 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type626 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponse? Type627 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type627 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type628 { get; set; }
+ public global::System.Collections.Generic.IList? Type628 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseNode? Type629 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type629 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type630 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type630 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseEdge? Type631 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type631 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponse? Type632 { get; set; }
+ public global::PromptLayer.ListDatasetsResponse? Type632 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type633 { get; set; }
+ public global::System.Collections.Generic.IList? Type633 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type634 { get; set; }
+ public global::PromptLayer.ListEvaluationsResponse? Type634 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type635 { get; set; }
+ public global::System.Collections.Generic.IList? Type635 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesResponse2? Type636 { get; set; }
+ public global::PromptLayer.AnyOf? Type636 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponse? Type637 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type637 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type638 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type638 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type639 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type639 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryResponse? Type640 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type640 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponse? Type641 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type641 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type642 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type642 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableResponse? Type643 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse? Type643 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesResponse? Type644 { get; set; }
+ public global::System.Collections.Generic.IList? Type644 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type645 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponseItem? Type645 { get; set; }
///
///
///
- public global::PromptLayer.GetTableResponse? Type646 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse2? Type646 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableResponse? Type647 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse3? Type647 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableResponse? Type648 { get; set; }
+ public global::PromptLayer.GetWorkflowResponse? Type648 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsResponse? Type649 { get; set; }
+ public global::System.Collections.Generic.IList? Type649 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type650 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseNode? Type650 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetResponse? Type651 { get; set; }
+ public global::System.Collections.Generic.IList? Type651 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetResponse2? Type652 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseEdge? Type652 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetOperationResponse2? Type653 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponse? Type653 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetResponse? Type654 { get; set; }
+ public global::System.Collections.Generic.IList? Type654 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetResponse? Type655 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type655 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableSheetResponse? Type656 { get; set; }
+ public global::PromptLayer.AnyOf? Type656 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetColumnsResponse? Type657 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesResponse2? Type657 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type658 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponse? Type658 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnResponse? Type659 { get; set; }
+ public global::System.Collections.Generic.IList? Type659 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type660 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type660 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnResponse? Type661 { get; set; }
+ public global::PromptLayer.CreateToolRegistryResponse? Type661 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableSheetColumnResponse? Type662 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponse? Type662 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponse? Type663 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type663 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type664 { get; set; }
+ public global::PromptLayer.CreateTableResponse? Type664 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type665 { get; set; }
+ public global::PromptLayer.ListTablesResponse? Type665 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type666 { get; set; }
+ public global::System.Collections.Generic.IList? Type666 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponse? Type667 { get; set; }
+ public global::PromptLayer.GetTableResponse? Type667 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type668 { get; set; }
+ public global::PromptLayer.UpdateTableResponse? Type668 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponseRow? Type669 { get; set; }
+ public global::PromptLayer.DeleteTableResponse? Type669 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetCellResponse? Type670 { get; set; }
+ public global::PromptLayer.ListTableSheetsResponse? Type670 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellResponse? Type671 { get; set; }
+ public global::System.Collections.Generic.IList? Type671 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type672 { get; set; }
+ public global::PromptLayer.CreateTableSheetResponse? Type672 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type673 { get; set; }
+ public global::PromptLayer.CreateTableSheetResponse2? Type673 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionResponse? Type674 { get; set; }
+ public global::PromptLayer.GetTableSheetOperationResponse2? Type674 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponse? Type675 { get; set; }
+ public global::PromptLayer.GetTableSheetResponse? Type675 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResult? Type676 { get; set; }
+ public global::PromptLayer.UpdateTableSheetResponse? Type676 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResultStatus? Type677 { get; set; }
+ public global::PromptLayer.DeleteTableSheetResponse? Type677 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse? Type678 { get; set; }
+ public global::PromptLayer.ListTableSheetColumnsResponse? Type678 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosure? Type679 { get; set; }
+ public global::System.Collections.Generic.IList? Type679 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosureStatus? Type680 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnResponse? Type680 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse2? Type681 { get; set; }
+ public global::System.Collections.Generic.IList? Type681 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type682 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnResponse? Type682 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type683 { get; set; }
+ public global::PromptLayer.DeleteTableSheetColumnResponse? Type683 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type684 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponse? Type684 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type685 { get; set; }
+ public global::System.Collections.Generic.IList? Type685 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type686 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type686 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type687 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type687 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type688 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponse? Type688 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type689 { get; set; }
+ public global::System.Collections.Generic.IList? Type689 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type690 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponseRow? Type690 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type691 { get; set; }
+ public global::PromptLayer.GetTableSheetCellResponse? Type691 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type692 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellResponse? Type692 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse? Type693 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type693 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type694 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type694 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type695 { get; set; }
+ public global::PromptLayer.CreateToolVersionResponse? Type695 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse2? Type696 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponse? Type696 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse? Type697 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResult? Type697 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type698 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResultStatus? Type698 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse2? Type699 { get; set; }
+ public global::PromptLayer.CloseTraceResponse? Type699 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse3? Type700 { get; set; }
+ public global::PromptLayer.CloseTraceResponseClosure? Type700 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse? Type701 { get; set; }
+ public global::PromptLayer.CloseTraceResponseClosureStatus? Type701 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type702 { get; set; }
+ public global::PromptLayer.CloseTraceResponse2? Type702 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse2? Type703 { get; set; }
+ public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type703 { get; set; }
///
///
///
- public global::PromptLayer.DeleteToolEnvVarResponse? Type704 { get; set; }
+ public global::System.Collections.Generic.IList? Type704 { get; set; }
///
///
///
- public global::PromptLayer.DeleteToolEnvVarResponse2? Type705 { get; set; }
+ public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type705 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type706 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type707 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type708 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type709 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type710 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type711 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type712 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type713 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponse? Type714 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type715 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type716 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponse2? Type717 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse? Type718 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type719 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse2? Type720 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse3? Type721 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponse? Type722 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type723 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponse2? Type724 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteToolEnvVarResponse? Type725 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteToolEnvVarResponse2? Type726 { get; set; }
///
///
@@ -3165,90 +3249,106 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.Collections.Generic.List? ListType78 { get; set; }
+ public global::System.Collections.Generic.List>? ListType78 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType79 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType80 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType81 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType82 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType79 { get; set; }
+ public global::System.Collections.Generic.List? ListType83 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? ListType80 { get; set; }
+ public global::PromptLayer.AnyOf>? ListType84 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType81 { get; set; }
+ public global::System.Collections.Generic.List? ListType85 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? ListType82 { get; set; }
+ public global::PromptLayer.OneOf>? ListType86 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType83 { get; set; }
+ public global::System.Collections.Generic.List? ListType87 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType84 { get; set; }
+ public global::System.Collections.Generic.List? ListType88 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType85 { get; set; }
+ public global::System.Collections.Generic.List? ListType89 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType86 { get; set; }
+ public global::System.Collections.Generic.List? ListType90 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType87 { get; set; }
+ public global::System.Collections.Generic.List? ListType91 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType88 { get; set; }
+ public global::System.Collections.Generic.List? ListType92 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType89 { get; set; }
+ public global::System.Collections.Generic.List? ListType93 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType90 { get; set; }
+ public global::System.Collections.Generic.List? ListType94 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType91 { get; set; }
+ public global::System.Collections.Generic.List? ListType95 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType92 { get; set; }
+ public global::System.Collections.Generic.List? ListType96 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType93 { get; set; }
+ public global::System.Collections.Generic.List? ListType97 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType94 { get; set; }
+ public global::System.Collections.Generic.List? ListType98 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType95 { get; set; }
+ public global::System.Collections.Generic.List? ListType99 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType96 { get; set; }
+ public global::System.Collections.Generic.List? ListType100 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType97 { get; set; }
+ public global::System.Collections.Generic.List? ListType101 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType98 { get; set; }
+ public global::System.Collections.Generic.List? ListType102 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType99 { get; set; }
+ public global::System.Collections.Generic.List? ListType103 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.Json.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.Json.g.cs
new file mode 100644
index 0000000..171135d
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public sealed partial class TraceAnalyticsCustomAnalyticsQuery
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery),
+ jsonSerializerContext) as global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery),
+ jsonSerializerContext).ConfigureAwait(false)) as global::PromptLayer.TraceAnalyticsCustomAnalyticsQuery;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::PromptLayer.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.g.cs
new file mode 100644
index 0000000..ba274f3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.TraceAnalyticsCustomAnalyticsQuery.g.cs
@@ -0,0 +1,56 @@
+
+#nullable enable
+
+namespace PromptLayer
+{
+ ///