diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetRequestAnalyticsCustomAnalytics.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetRequestAnalyticsCustomAnalytics.g.cs
new file mode 100644
index 0000000..ef195db
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ITrackingClient.GetRequestAnalyticsCustomAnalytics.g.cs
@@ -0,0 +1,59 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ITrackingClient
+ {
+ ///
+ /// Request Analytics Custom Analytics
+ ///
+ ///
+ /// 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 GetRequestAnalyticsCustomAnalyticsAsync(
+
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuery request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Request Analytics Custom Analytics
+ ///
+ ///
+ /// 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> GetRequestAnalyticsCustomAnalyticsAsResponseAsync(
+
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuery request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Request Analytics Custom Analytics
+ ///
+ ///
+ /// Nested filter group with AND/OR logic.
+ ///
+ ///
+ /// Free-text search query.
+ ///
+ ///
+ /// Accepted for compatibility; does not affect aggregated output.
+ ///
+ ///
+ ///
+ /// One or more chart definitions to compute. Chart ids must be unique.
+ ///
+ /// 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 GetRequestAnalyticsCustomAnalyticsAsync(
+ global::System.Collections.Generic.IList customCharts,
+ global::PromptLayer.StructuredFilterGroup? filterGroup = default,
+ string? q = default,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy? sortBy = default,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder? sortOrder = 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.CustomAnalyticsResultChartType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsResultChartType.g.cs
new file mode 100644
index 0000000..367532b
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsResultChartType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsResultChartTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsResultChartType 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.CustomAnalyticsResultChartTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsResultChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsResultChartType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsResultChartType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsResultChartTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullable.g.cs
new file mode 100644
index 0000000..9d4e483
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsResultChartTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsResultChartType? 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.CustomAnalyticsResultChartTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsResultChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsResultChartType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsResultChartType? 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.CustomAnalyticsResultChartTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnit.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnit.g.cs
new file mode 100644
index 0000000..ac9e004
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnit.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesMetaUnitJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesMetaUnit 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.CustomAnalyticsSeriesMetaUnitExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesMetaUnit)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesMetaUnit);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesMetaUnit value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSeriesMetaUnitExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullable.g.cs
new file mode 100644
index 0000000..04fe1f4
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesMetaUnitNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesMetaUnit? 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.CustomAnalyticsSeriesMetaUnitExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesMetaUnit)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesMetaUnit?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesMetaUnit? 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.CustomAnalyticsSeriesMetaUnitExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetric.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetric.g.cs
new file mode 100644
index 0000000..7915162
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetric.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesSpecMetricJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesSpecMetric 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.CustomAnalyticsSeriesSpecMetricExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesSpecMetric);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesSpecMetric value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSeriesSpecMetricExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricField.g.cs
new file mode 100644
index 0000000..2f6c5e6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesSpecMetricFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesSpecMetricField 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.CustomAnalyticsSeriesSpecMetricFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesSpecMetricField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesSpecMetricField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSeriesSpecMetricFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullable.g.cs
new file mode 100644
index 0000000..5629898
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesSpecMetricFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesSpecMetricField? 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.CustomAnalyticsSeriesSpecMetricFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesSpecMetricField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesSpecMetricField? 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.CustomAnalyticsSeriesSpecMetricFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullable.g.cs
new file mode 100644
index 0000000..73862cd
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSeriesSpecMetricNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSeriesSpecMetric? 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.CustomAnalyticsSeriesSpecMetricExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSeriesSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSeriesSpecMetric?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSeriesSpecMetric? 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.CustomAnalyticsSeriesSpecMetricExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartType.g.cs
new file mode 100644
index 0000000..a8ec005
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecChartTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecChartType 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.CustomAnalyticsSpecChartTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecChartType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecChartType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSpecChartTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullable.g.cs
new file mode 100644
index 0000000..81298d8
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecChartTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecChartType? 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.CustomAnalyticsSpecChartTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecChartType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecChartType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecChartType? 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.CustomAnalyticsSpecChartTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByField.g.cs
new file mode 100644
index 0000000..0feb31f
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecGroupByFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecGroupByField 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.CustomAnalyticsSpecGroupByFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecGroupByField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecGroupByField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSpecGroupByFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullable.g.cs
new file mode 100644
index 0000000..a956750
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecGroupByFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecGroupByField? 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.CustomAnalyticsSpecGroupByFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecGroupByField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecGroupByField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecGroupByField? 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.CustomAnalyticsSpecGroupByFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetric.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetric.g.cs
new file mode 100644
index 0000000..74fbf2a
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetric.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecMetricJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecMetric 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.CustomAnalyticsSpecMetricExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecMetric);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecMetric value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSpecMetricExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricField.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricField.g.cs
new file mode 100644
index 0000000..125835f
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricField.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecMetricFieldJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecMetricField 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.CustomAnalyticsSpecMetricFieldExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecMetricField);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecMetricField value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CustomAnalyticsSpecMetricFieldExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullable.g.cs
new file mode 100644
index 0000000..b7e1b9a
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecMetricFieldNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecMetricField? 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.CustomAnalyticsSpecMetricFieldExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecMetricField)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecMetricField?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecMetricField? 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.CustomAnalyticsSpecMetricFieldExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullable.g.cs
new file mode 100644
index 0000000..2de606f
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CustomAnalyticsSpecMetricNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CustomAnalyticsSpecMetric? 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.CustomAnalyticsSpecMetricExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CustomAnalyticsSpecMetric)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CustomAnalyticsSpecMetric?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CustomAnalyticsSpecMetric? 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.CustomAnalyticsSpecMetricExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultType.g.cs
new file mode 100644
index 0000000..b18f3a3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class DerivedRatioInsightResultTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.DerivedRatioInsightResultType 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.DerivedRatioInsightResultTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.DerivedRatioInsightResultType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.DerivedRatioInsightResultType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.DerivedRatioInsightResultType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.DerivedRatioInsightResultTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullable.g.cs
new file mode 100644
index 0000000..fda6dca
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class DerivedRatioInsightResultTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.DerivedRatioInsightResultType? 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.DerivedRatioInsightResultTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.DerivedRatioInsightResultType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.DerivedRatioInsightResultType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.DerivedRatioInsightResultType? 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.DerivedRatioInsightResultTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecType.g.cs
new file mode 100644
index 0000000..80400c9
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class DerivedRatioInsightSpecTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.DerivedRatioInsightSpecType 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.DerivedRatioInsightSpecTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.DerivedRatioInsightSpecType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.DerivedRatioInsightSpecType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.DerivedRatioInsightSpecType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.DerivedRatioInsightSpecTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullable.g.cs
new file mode 100644
index 0000000..1b2c66d
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class DerivedRatioInsightSpecTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.DerivedRatioInsightSpecType? 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.DerivedRatioInsightSpecTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.DerivedRatioInsightSpecType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.DerivedRatioInsightSpecType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.DerivedRatioInsightSpecType? 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.DerivedRatioInsightSpecTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortBy.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortBy.g.cs
new file mode 100644
index 0000000..5c30015
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortBy.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class RequestAnalyticsCustomAnalyticsQuerySortByJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy 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.RequestAnalyticsCustomAnalyticsQuerySortByExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortByExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullable.g.cs
new file mode 100644
index 0000000..1fd8860
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class RequestAnalyticsCustomAnalyticsQuerySortByNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy? 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.RequestAnalyticsCustomAnalyticsQuerySortByExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy? 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.RequestAnalyticsCustomAnalyticsQuerySortByExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrder.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrder.g.cs
new file mode 100644
index 0000000..8f14cf4
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrder.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class RequestAnalyticsCustomAnalyticsQuerySortOrderJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder 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.RequestAnalyticsCustomAnalyticsQuerySortOrderExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrderExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullable.g.cs
new file mode 100644
index 0000000..e45f968
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder? 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.RequestAnalyticsCustomAnalyticsQuerySortOrderExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder? 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.RequestAnalyticsCustomAnalyticsQuerySortOrderExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
index 2b07895..129ca9a 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
@@ -417,6 +417,54 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.TableCellStatusNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -859,6 +907,8 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.UnixTimestampJsonConverter),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_a2e389e01f671d8d")]
@@ -1345,22 +1395,22 @@ namespace PromptLayer
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableSheetScoreColumnResolvedScoringType), TypeInfoPropertyName = "TableSheetScoreColumnResolvedScoringType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableSheetScoreConfigurationScoreType), TypeInfoPropertyName = "TableSheetScoreConfigurationScoreType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableCellStatus), TypeInfoPropertyName = "TableCellStatus2")]
- [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))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackScoreRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnRequestColumnType), TypeInfoPropertyName = "AddReportColumnRequestColumnType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecution))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionType), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionLanguage), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionLanguage2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf), TypeInfoPropertyName = "OneOfCreateTableSheetRequestSourceFileSourceCreateTableSheetRequestSourceRequestLogsSource2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceFileSource))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DerivedRatioInsightSpec))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DerivedRatioInsightSpecType), TypeInfoPropertyName = "DerivedRatioInsightSpecType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DerivedRatioInsightResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DerivedRatioInsightResultType), TypeInfoPropertyName = "DerivedRatioInsightResultType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSpec))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSpecChartType), TypeInfoPropertyName = "CustomAnalyticsSpecChartType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSpecMetric), TypeInfoPropertyName = "CustomAnalyticsSpecMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSpecMetricField), TypeInfoPropertyName = "CustomAnalyticsSpecMetricField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSeriesSpec))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSpecGroupByField), TypeInfoPropertyName = "CustomAnalyticsSpecGroupByField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSeriesSpecMetric), TypeInfoPropertyName = "CustomAnalyticsSeriesSpecMetric2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSeriesSpecMetricField), TypeInfoPropertyName = "CustomAnalyticsSeriesSpecMetricField2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSeriesMeta))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsSeriesMetaUnit), TypeInfoPropertyName = "CustomAnalyticsSeriesMetaUnit2")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1776,6 +1826,54 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.TableCellStatusNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortOrderNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -2218,6 +2316,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.UnixTimestampJsonConverter),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_a2e389e01f671d8d")]
@@ -2225,6 +2325,32 @@ internal sealed partial class SourceGenerationContextChunk0 : 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::PromptLayer.CustomAnalyticsResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CustomAnalyticsResultChartType), TypeInfoPropertyName = "CustomAnalyticsResultChartType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuery))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy), TypeInfoPropertyName = "RequestAnalyticsCustomAnalyticsQuerySortBy2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder), TypeInfoPropertyName = "RequestAnalyticsCustomAnalyticsQuerySortOrder2")]
+ [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.CreatePromptLabelRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackGroupRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackScoreRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnRequestColumnType), TypeInfoPropertyName = "AddReportColumnRequestColumnType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecution))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionType), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionLanguage), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionLanguage2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf), TypeInfoPropertyName = "OneOfCreateTableSheetRequestSourceFileSourceCreateTableSheetRequestSourceRequestLogsSource2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceFileSource))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceFileSourceType), TypeInfoPropertyName = "CreateTableSheetRequestSourceFileSourceType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType), TypeInfoPropertyName = "CreateTableSheetRequestSourceRequestLogsSourceType2")]
@@ -2480,6 +2606,12 @@ 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.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>))]
@@ -2746,6 +2878,30 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.TableSheetScoreConfigurationScoreTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.TableCellStatusJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.TableCellStatusNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.DerivedRatioInsightSpecTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.DerivedRatioInsightResultTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecChartTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecMetricFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSpecGroupByFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesSpecMetricFieldNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsSeriesMetaUnitNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.RequestAnalyticsCustomAnalyticsQuerySortByJsonConverter());
+ 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.AddReportColumnRequestColumnTypeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionTypeJsonConverter());
@@ -2967,6 +3123,7 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
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.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.UnixTimestampJsonConverter());
return options;
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
index e981ae1..363c85f 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
@@ -1940,799 +1940,903 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.CreatePromptLabelRequest? Type478 { get; set; }
+ public global::PromptLayer.DerivedRatioInsightSpec? Type478 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type479 { get; set; }
+ public global::PromptLayer.DerivedRatioInsightSpecType? Type479 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupRequest? Type480 { get; set; }
+ public global::PromptLayer.DerivedRatioInsightResult? Type480 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreRequest? Type481 { get; set; }
+ public global::PromptLayer.DerivedRatioInsightResultType? Type481 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequest? Type482 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSpec? Type482 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequestColumnType? Type483 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSpecChartType? Type483 { get; set; }
///
///
///
- public global::PromptLayer.RunReportRequest? Type484 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSpecMetric? Type484 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequest? Type485 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSpecMetricField? Type485 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecution? Type486 { get; set; }
+ public global::System.Collections.Generic.IList? Type486 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type487 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSeriesSpec? Type487 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type488 { get; set; }
+ public global::System.Collections.Generic.IList? Type488 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableRequest? Type489 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSpecGroupByField? Type489 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableRequest? Type490 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSeriesSpecMetric? Type490 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequest? Type491 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSeriesSpecMetricField? Type491 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type492 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSeriesMeta? Type492 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceFileSource? Type493 { get; set; }
+ public global::PromptLayer.CustomAnalyticsSeriesMetaUnit? Type493 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Type494 { get; set; }
+ public global::PromptLayer.CustomAnalyticsResult? Type494 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource? Type495 { get; set; }
+ public global::PromptLayer.CustomAnalyticsResultChartType? Type495 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Type496 { get; set; }
+ public global::System.Collections.Generic.IList? Type496 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetRequest? Type497 { get; set; }
+ public global::System.Collections.Generic.IList? Type497 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequest? Type498 { get; set; }
+ public global::PromptLayer.RequestAnalyticsCustomAnalyticsQuery? Type498 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequestType? Type499 { get; set; }
+ public global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortBy? Type499 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type500 { get; set; }
+ public global::PromptLayer.RequestAnalyticsCustomAnalyticsQuerySortOrder? Type500 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type501 { get; set; }
+ public global::System.Collections.Generic.IList? Type501 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequest? Type502 { get; set; }
+ public global::PromptLayer.RequestAnalyticsCustomAnalyticsResponse? Type502 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type503 { get; set; }
+ public global::System.Collections.Generic.IList? Type503 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type504 { get; set; }
+ public global::PromptLayer.CreatePromptLabelRequest? Type504 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsRequest? Type505 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type505 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellRequest? Type506 { get; set; }
+ public global::PromptLayer.TrackGroupRequest? Type506 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type507 { get; set; }
+ public global::PromptLayer.TrackScoreRequest? Type507 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequest? Type508 { get; set; }
+ public global::PromptLayer.AddReportColumnRequest? Type508 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecution? Type509 { get; set; }
+ public global::PromptLayer.AddReportColumnRequestColumnType? Type509 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionType? Type510 { get; set; }
+ public global::PromptLayer.RunReportRequest? Type510 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type511 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequest? Type511 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequest? Type512 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecution? Type512 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecution? Type513 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type513 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionType? Type514 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type514 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type515 { get; set; }
+ public global::PromptLayer.CreateTableRequest? Type515 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type516 { get; set; }
+ public global::PromptLayer.UpdateTableRequest? Type516 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type517 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequest? Type517 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarRequest? Type518 { get; set; }
+ public global::PromptLayer.OneOf? Type518 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarRequest? Type519 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSource? Type519 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsStatus? Type520 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Type520 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortBy? Type521 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource? Type521 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortOrder? Type522 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Type522 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsStatus? Type523 { get; set; }
+ public global::PromptLayer.UpdateTableSheetRequest? Type523 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortBy? Type524 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequest? Type524 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortOrder? Type525 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestType? Type525 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? Type526 { get; set; }
+ public global::System.Collections.Generic.IList? Type526 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type527 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type527 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type528 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequest? Type528 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type529 { get; set; }
+ public global::System.Collections.Generic.IList? Type529 { get; set; }
///
///
///
- public long? Type530 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type530 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortBy? Type531 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsRequest? Type531 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortOrder? Type532 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellRequest? Type532 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type533 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type533 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type534 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequest? Type534 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type535 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecution? Type535 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type536 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionType? Type536 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type537 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type537 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? Type538 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequest? Type538 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentType? Type539 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecution? Type539 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentEncoding? Type540 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionType? Type540 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type541 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type541 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type542 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type542 { get; set; }
///
///
///
- public global::PromptLayer.GetSkillCollectionPublicFormat? Type543 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type543 { get; set; }
///
///
///
- public global::PromptLayer.GetRequestSearchSuggestionsField? Type544 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarRequest? Type544 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortBy? Type545 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarRequest? Type545 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortOrder? Type546 { get; set; }
+ public global::PromptLayer.ListDatasetsStatus? Type546 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesOrder? Type547 { get; set; }
+ public global::PromptLayer.ListDatasetsSortBy? Type547 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsOrder? Type548 { get; set; }
+ public global::PromptLayer.ListDatasetsSortOrder? Type548 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsOrder? Type549 { get; set; }
+ public global::PromptLayer.ListEvaluationsStatus? Type549 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsSort? Type550 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortBy? Type550 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsOrder? Type551 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortOrder? Type551 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type552 { get; set; }
+ public global::PromptLayer.AnyOf>? Type552 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type553 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type553 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type554 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type554 { get; set; }
///
///
///
- public global::PromptLayer.CreatePromptLabelResponse? Type555 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type555 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type556 { get; set; }
+ public long? Type556 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupResponse? Type557 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortBy? Type557 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreResponse? Type558 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortOrder? Type558 { get; set; }
///
///
///
- public global::PromptLayer.DeleteReportsByNameResponse? Type559 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type559 { get; set; }
///
///
///
- public global::PromptLayer.CreateEvaluationPipelineResponse2? Type560 { get; set; }
+ public global::System.Collections.Generic.IList? Type560 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse? Type561 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type561 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse2? Type562 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type562 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse3? Type563 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type563 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse4? Type564 { get; set; }
+ public global::PromptLayer.OneOf>? Type564 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse? Type565 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentType? Type565 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse2? Type566 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentEncoding? Type566 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse3? Type567 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type567 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse4? Type568 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type568 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse5? Type569 { get; set; }
+ public global::PromptLayer.GetSkillCollectionPublicFormat? Type569 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponse? Type570 { get; set; }
+ public global::PromptLayer.GetRequestSearchSuggestionsField? Type570 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReport? Type571 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortBy? Type571 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatus? Type572 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortOrder? Type572 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStats? Type573 { get; set; }
+ public global::PromptLayer.ListTablesOrder? Type573 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatsStatusCounts? Type574 { get; set; }
+ public global::PromptLayer.ListTableSheetsOrder? Type574 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type575 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsOrder? Type575 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReportColumn? Type576 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsSort? Type576 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponse? Type577 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsOrder? Type577 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScore? Type578 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type578 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type579 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type579 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type580 { get; set; }
+ public global::PromptLayer.OneOf? Type580 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type581 { get; set; }
+ public global::PromptLayer.CreatePromptLabelResponse? Type581 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type582 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type582 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type583 { get; set; }
+ public global::PromptLayer.TrackGroupResponse? Type583 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type584 { get; set; }
+ public global::PromptLayer.TrackScoreResponse? Type584 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type585 { get; set; }
+ public global::PromptLayer.DeleteReportsByNameResponse? Type585 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsResponse? Type586 { get; set; }
+ public global::PromptLayer.CreateEvaluationPipelineResponse2? Type586 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type587 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse? Type587 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsResponse? Type588 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse2? Type588 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type589 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse3? Type589 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type590 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse4? Type590 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type591 { get; set; }
+ public global::PromptLayer.RunReportResponse? Type591 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type592 { get; set; }
+ public global::PromptLayer.RunReportResponse2? Type592 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type593 { get; set; }
+ public global::PromptLayer.RunReportResponse3? Type593 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type594 { get; set; }
+ public global::PromptLayer.RunReportResponse4? Type594 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type595 { get; set; }
+ public global::PromptLayer.RunReportResponse5? Type595 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type596 { get; set; }
+ public global::PromptLayer.GetReportResponse? Type596 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse? Type597 { get; set; }
+ public global::PromptLayer.GetReportResponseReport? Type597 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type598 { get; set; }
+ public global::PromptLayer.GetReportResponseStatus? Type598 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponseItem? Type599 { get; set; }
+ public global::PromptLayer.GetReportResponseStats? Type599 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse2? Type600 { get; set; }
+ public global::PromptLayer.GetReportResponseStatsStatusCounts? Type600 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse3? Type601 { get; set; }
+ public global::System.Collections.Generic.IList? Type601 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponse? Type602 { get; set; }
+ public global::PromptLayer.GetReportResponseReportColumn? Type602 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type603 { get; set; }
+ public global::PromptLayer.GetReportScoreResponse? Type603 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseNode? Type604 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScore? Type604 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type605 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type605 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseEdge? Type606 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type606 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponse? Type607 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type607 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type608 { get; set; }
+ public global::System.Collections.Generic.IList? Type608 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type609 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type609 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type610 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type610 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesResponse2? Type611 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type611 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponse? Type612 { get; set; }
+ public global::PromptLayer.ListDatasetsResponse? Type612 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type613 { get; set; }
+ public global::System.Collections.Generic.IList? Type613 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type614 { get; set; }
+ public global::PromptLayer.ListEvaluationsResponse? Type614 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryResponse? Type615 { get; set; }
+ public global::System.Collections.Generic.IList? Type615 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponse? Type616 { get; set; }
+ public global::PromptLayer.AnyOf? Type616 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type617 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type617 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableResponse? Type618 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type618 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesResponse? Type619 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type619 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type620 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type620 { get; set; }
///
///
///
- public global::PromptLayer.GetTableResponse? Type621 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type621 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableResponse? Type622 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type622 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsResponse? Type623 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse? Type623 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type624 { get; set; }
+ public global::System.Collections.Generic.IList? Type624 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetResponse? Type625 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponseItem? Type625 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetOperationResponse2? Type626 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse2? Type626 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetResponse? Type627 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse3? Type627 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetResponse? Type628 { get; set; }
+ public global::PromptLayer.GetWorkflowResponse? Type628 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetColumnsResponse? Type629 { get; set; }
+ public global::System.Collections.Generic.IList? Type629 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type630 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseNode? Type630 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnResponse? Type631 { get; set; }
+ public global::System.Collections.Generic.IList? Type631 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type632 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseEdge? Type632 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnResponse? Type633 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponse? Type633 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponse? Type634 { get; set; }
+ public global::System.Collections.Generic.IList? Type634 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type635 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type635 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type636 { get; set; }
+ public global::PromptLayer.AnyOf? Type636 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type637 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesResponse2? Type637 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponse? Type638 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponse? Type638 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type639 { get; set; }
+ public global::System.Collections.Generic.IList? Type639 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponseRow? Type640 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type640 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetCellResponse? Type641 { get; set; }
+ public global::PromptLayer.CreateToolRegistryResponse? Type641 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellResponse? Type642 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponse? Type642 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type643 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type643 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type644 { get; set; }
+ public global::PromptLayer.CreateTableResponse? Type644 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionResponse? Type645 { get; set; }
+ public global::PromptLayer.ListTablesResponse? Type645 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponse? Type646 { get; set; }
+ public global::System.Collections.Generic.IList? Type646 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResult? Type647 { get; set; }
+ public global::PromptLayer.GetTableResponse? Type647 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResultStatus? Type648 { get; set; }
+ public global::PromptLayer.UpdateTableResponse? Type648 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse? Type649 { get; set; }
+ public global::PromptLayer.ListTableSheetsResponse? Type649 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosure? Type650 { get; set; }
+ public global::System.Collections.Generic.IList? Type650 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosureStatus? Type651 { get; set; }
+ public global::PromptLayer.CreateTableSheetResponse? Type651 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse2? Type652 { get; set; }
+ public global::PromptLayer.GetTableSheetOperationResponse2? Type652 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type653 { get; set; }
+ public global::PromptLayer.GetTableSheetResponse? Type653 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type654 { get; set; }
+ public global::PromptLayer.UpdateTableSheetResponse? Type654 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type655 { get; set; }
+ public global::PromptLayer.ListTableSheetColumnsResponse? Type655 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type656 { get; set; }
+ public global::System.Collections.Generic.IList? Type656 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type657 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnResponse? Type657 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type658 { get; set; }
+ public global::System.Collections.Generic.IList? Type658 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type659 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnResponse? Type659 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type660 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponse? Type660 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type661 { get; set; }
+ public global::System.Collections.Generic.IList? Type661 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type662 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type662 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type663 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type663 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse? Type664 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponse? Type664 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type665 { get; set; }
+ public global::System.Collections.Generic.IList? Type665 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type666 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponseRow? Type666 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse2? Type667 { get; set; }
+ public global::PromptLayer.GetTableSheetCellResponse? Type667 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse? Type668 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellResponse? Type668 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type669 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type669 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse2? Type670 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type670 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse3? Type671 { get; set; }
+ public global::PromptLayer.CreateToolVersionResponse? Type671 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse? Type672 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponse? Type672 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type673 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResult? Type673 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse2? Type674 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResultStatus? Type674 { get; set; }
///
///
///
- public global::PromptLayer.DeleteToolEnvVarResponse? Type675 { get; set; }
+ public global::PromptLayer.CloseTraceResponse? Type675 { get; set; }
///
///
///
- public global::PromptLayer.DeleteToolEnvVarResponse2? Type676 { get; set; }
+ public global::PromptLayer.CloseTraceResponseClosure? Type676 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponseClosureStatus? Type677 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponse2? Type678 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type679 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type680 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type681 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type682 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type683 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type684 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type685 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type686 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type687 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type688 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type689 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponse? Type690 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type691 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type692 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolEnvVarsResponse2? Type693 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse? Type694 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type695 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse2? Type696 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolEnvVarResponse3? Type697 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponse? Type698 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type699 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateToolEnvVarResponse2? Type700 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteToolEnvVarResponse? Type701 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.DeleteToolEnvVarResponse2? Type702 { get; set; }
///
///
@@ -3025,90 +3129,114 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.Collections.Generic.List? ListType72 { get; set; }
+ public global::System.Collections.Generic.List? ListType72 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType73 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType74 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType75 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType76 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType77 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType78 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType73 { get; set; }
+ public global::System.Collections.Generic.List? ListType79 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? ListType74 { get; set; }
+ public global::PromptLayer.AnyOf>? ListType80 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType75 { get; set; }
+ public global::System.Collections.Generic.List? ListType81 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? ListType76 { get; set; }
+ public global::PromptLayer.OneOf>? ListType82 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType77 { get; set; }
+ public global::System.Collections.Generic.List? ListType83 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType78 { get; set; }
+ public global::System.Collections.Generic.List? ListType84 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType79 { get; set; }
+ public global::System.Collections.Generic.List? ListType85 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType80 { get; set; }
+ public global::System.Collections.Generic.List? ListType86 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType81 { get; set; }
+ public global::System.Collections.Generic.List? ListType87 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType82 { get; set; }
+ public global::System.Collections.Generic.List? ListType88 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType83 { get; set; }
+ public global::System.Collections.Generic.List? ListType89 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType84 { get; set; }
+ public global::System.Collections.Generic.List? ListType90 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType85 { get; set; }
+ public global::System.Collections.Generic.List? ListType91 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType86 { get; set; }
+ public global::System.Collections.Generic.List? ListType92 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType87 { get; set; }
+ public global::System.Collections.Generic.List? ListType93 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType88 { get; set; }
+ public global::System.Collections.Generic.List? ListType94 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType89 { get; set; }
+ public global::System.Collections.Generic.List? ListType95 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType90 { get; set; }
+ public global::System.Collections.Generic.List? ListType96 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType91 { get; set; }
+ public global::System.Collections.Generic.List? ListType97 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType92 { get; set; }
+ public global::System.Collections.Generic.List? ListType98 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType93 { get; set; }
+ public global::System.Collections.Generic.List? ListType99 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.Json.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.Json.g.cs
new file mode 100644
index 0000000..53a22f1
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public sealed partial class CustomAnalyticsResult
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::PromptLayer.CustomAnalyticsResult? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::PromptLayer.CustomAnalyticsResult),
+ jsonSerializerContext) as global::PromptLayer.CustomAnalyticsResult;
+ }
+
+ ///
+ /// 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.CustomAnalyticsResult? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.CustomAnalyticsResult),
+ jsonSerializerContext).ConfigureAwait(false)) as global::PromptLayer.CustomAnalyticsResult;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.g.cs
new file mode 100644
index 0000000..5b4fe98
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.CustomAnalyticsResult.g.cs
@@ -0,0 +1,100 @@
+
+#nullable enable
+
+namespace PromptLayer
+{
+ ///
+ /// Computed result for a single custom analytics query.
+ ///
+ public sealed partial class CustomAnalyticsResult
+ {
+ ///
+ /// Echoes the chart id from the request.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// Chart title (echoed from request, or defaults to id).
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("title")]
+ public string? Title { get; set; }
+
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("chartType")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.CustomAnalyticsResultChartTypeJsonConverter))]
+ public global::PromptLayer.CustomAnalyticsResultChartType? ChartType { get; set; }
+
+ ///
+ /// Series descriptors (one entry per series). For single-metric charts the only entry has key `value`.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("series")]
+ public global::System.Collections.Generic.IList? Series { get; set; }
+
+ ///
+ /// Rows of chart data. Each row has a `label` string and one numeric key per series. Time-series rows also include `bucketKey` (ISO date string).
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("data")]
+ public global::System.Collections.Generic.IList