diff --git a/src/libs/AutoSDK/Helpers/OpenApi31Support.cs b/src/libs/AutoSDK/Helpers/OpenApi31Support.cs index 36ce96ce18..7ddf49ab92 100644 --- a/src/libs/AutoSDK/Helpers/OpenApi31Support.cs +++ b/src/libs/AutoSDK/Helpers/OpenApi31Support.cs @@ -78,33 +78,51 @@ private static void ConvertJsonNode(JsonObject node) { node["openapi"] = "3.0.3"; } - - if (keyString == "anyOf" && - entry.Value is JsonArray anyOfList && anyOfList.Count == 2 && + + if (keyString is "anyOf" or "oneOf" && + entry.Value is JsonArray { Count: 2 } anyOfList && anyOfList.Any(v => v is JsonObject objects && objects.ContainsKey("type") && - objects["type"] == null)) + objects["type"]?.ToJsonString() == "\"null\"")) { var first = anyOfList[0] as JsonObject; var second = anyOfList[1] as JsonObject; var firstType = first?["type"]; var secondType = second?["type"]; - if (firstType == null || secondType == null) + // Replace "anyOf" with "type: string, nullable: true" + node["type"] = firstType?.ToJsonString() == "\"null\"" + ? secondType?.DeepClone() + : firstType?.DeepClone(); + node["nullable"] = true; + + var nonNullObject = firstType?.ToJsonString() == "\"null\"" + ? second + : first; + foreach (var kvp in nonNullObject!) { - // Replace "anyOf" with "type: string, nullable: true" - node["type"] = firstType?.ToString() ?? secondType?.ToString(); - node["nullable"] = true; - - var nonNullObject = firstType != null ? first : second; - foreach (var kvp in nonNullObject!) - { - node[kvp.Key] = kvp.Value; - } - - node.Remove(keyString); + node[kvp.Key] = kvp.Value?.DeepClone(); } + + node.Remove(keyString); + } + + if (keyString is "anyOf" or "oneOf" && + entry.Value is JsonArray { Count: > 2 } anyOfList3 && + anyOfList3.Any(v => + v is JsonObject objects && + objects.ContainsKey("type") && + objects["type"]?.ToJsonString() == "\"null\"")) + { + node[keyString] = new JsonArray(anyOfList3 + .Where(v => + v is JsonObject objects && + (!objects.ContainsKey("type") || + objects["type"]?.ToJsonString() != "\"null\"")) + .Select(v => v?.DeepClone()) + .ToArray()); + node["nullable"] = true; } if (keyString == "exclusiveMinimum" && entry.Value is not JsonValue) @@ -233,7 +251,7 @@ private static void ConvertYamlNode(Dictionary node) } var keyString = entry.Key as string; - if (keyString == "anyOf" && + if (keyString is "anyOf" or "oneOf" && entry.Value is List anyOfList && anyOfList.Count == 2 && anyOfList.Any(v => v is Dictionary objects && @@ -284,6 +302,16 @@ private static void ConvertYamlNode(Dictionary node) node[new string("exclusiveMaximum".ToCharArray())] = true; } + // Remove "prefixItems" + if (keyString == "prefixItems" && entry.Value is List { Count: > 0 } prefixItemsList) + { + node.Remove(keyString); + if (!node.ContainsKey("items")) + { + node[new string("items".ToCharArray())] = prefixItemsList[0]; + } + } + // Identify "type" that is a list containing "string" and "null" if (keyString == "type" && entry.Value is List typeList && diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.6.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.6.g.verified.cs deleted file mode 100644 index a7f7535190..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.6.g.verified.cs +++ /dev/null @@ -1,418 +0,0 @@ -//HintName: AnyOf.6.g.cs -using System.Linq; - -#nullable enable - -namespace G -{ - /// - /// - /// - public readonly partial struct AnyOf : global::System.IEquatable> - { - /// - /// - /// -#if NET6_0_OR_GREATER - public T1? Value1 { get; init; } -#else - public T1? Value1 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))] -#endif - public bool IsValue1 => Value1 != null; - - /// - /// - /// - public static implicit operator AnyOf(T1 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T1?(AnyOf @this) => @this.Value1; - - /// - /// - /// - public AnyOf(T1? value) - { - Value1 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T2? Value2 { get; init; } -#else - public T2? Value2 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))] -#endif - public bool IsValue2 => Value2 != null; - - /// - /// - /// - public static implicit operator AnyOf(T2 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T2?(AnyOf @this) => @this.Value2; - - /// - /// - /// - public AnyOf(T2? value) - { - Value2 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T3? Value3 { get; init; } -#else - public T3? Value3 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))] -#endif - public bool IsValue3 => Value3 != null; - - /// - /// - /// - public static implicit operator AnyOf(T3 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T3?(AnyOf @this) => @this.Value3; - - /// - /// - /// - public AnyOf(T3? value) - { - Value3 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T4? Value4 { get; init; } -#else - public T4? Value4 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value4))] -#endif - public bool IsValue4 => Value4 != null; - - /// - /// - /// - public static implicit operator AnyOf(T4 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T4?(AnyOf @this) => @this.Value4; - - /// - /// - /// - public AnyOf(T4? value) - { - Value4 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T5? Value5 { get; init; } -#else - public T5? Value5 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value5))] -#endif - public bool IsValue5 => Value5 != null; - - /// - /// - /// - public static implicit operator AnyOf(T5 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T5?(AnyOf @this) => @this.Value5; - - /// - /// - /// - public AnyOf(T5? value) - { - Value5 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T6? Value6 { get; init; } -#else - public T6? Value6 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value6))] -#endif - public bool IsValue6 => Value6 != null; - - /// - /// - /// - public static implicit operator AnyOf(T6 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T6?(AnyOf @this) => @this.Value6; - - /// - /// - /// - public AnyOf(T6? value) - { - Value6 = value; - } - - /// - /// - /// - public AnyOf( - T1? value1, - T2? value2, - T3? value3, - T4? value4, - T5? value5, - T6? value6 - ) - { - Value1 = value1; - Value2 = value2; - Value3 = value3; - Value4 = value4; - Value5 = value5; - Value6 = value6; - } - - /// - /// - /// - public object? Object => - Value6 as object ?? - Value5 as object ?? - Value4 as object ?? - Value3 as object ?? - Value2 as object ?? - Value1 as object - ; - - /// - /// - /// - public bool Validate() - { - return IsValue1 || IsValue2 || IsValue3 || IsValue4 || IsValue5 || IsValue6; - } - - /// - /// - /// - public TResult? Match( - global::System.Func? value1 = null, - global::System.Func? value2 = null, - global::System.Func? value3 = null, - global::System.Func? value4 = null, - global::System.Func? value5 = null, - global::System.Func? value6 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1 && value1 != null) - { - return value1(Value1!); - } - else if (IsValue2 && value2 != null) - { - return value2(Value2!); - } - else if (IsValue3 && value3 != null) - { - return value3(Value3!); - } - else if (IsValue4 && value4 != null) - { - return value4(Value4!); - } - else if (IsValue5 && value5 != null) - { - return value5(Value5!); - } - else if (IsValue6 && value6 != null) - { - return value6(Value6!); - } - - return default(TResult); - } - - /// - /// - /// - public void Match( - global::System.Action? value1 = null, - global::System.Action? value2 = null, - global::System.Action? value3 = null, - global::System.Action? value4 = null, - global::System.Action? value5 = null, - global::System.Action? value6 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - else if (IsValue3) - { - value3?.Invoke(Value3!); - } - else if (IsValue4) - { - value4?.Invoke(Value4!); - } - else if (IsValue5) - { - value5?.Invoke(Value5!); - } - else if (IsValue6) - { - value6?.Invoke(Value6!); - } - } - - /// - /// - /// - public override int GetHashCode() - { - var fields = new object?[] - { - Value1, - typeof(T1), - Value2, - typeof(T2), - Value3, - typeof(T3), - Value4, - typeof(T4), - Value5, - typeof(T5), - Value6, - typeof(T6), - }; - const int offset = unchecked((int)2166136261); - const int prime = 16777619; - static int HashCodeAggregator(int hashCode, object? value) => value == null - ? (hashCode ^ 0) * prime - : (hashCode ^ value.GetHashCode()) * prime; - return fields.Aggregate(offset, HashCodeAggregator); - } - - /// - /// - /// - public bool Equals(AnyOf other) - { - return - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value4, other.Value4) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value5, other.Value5) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value6, other.Value6) - ; - } - - /// - /// - /// - public static bool operator ==(AnyOf obj1, AnyOf obj2) - { - return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2); - } - - /// - /// - /// - public static bool operator !=(AnyOf obj1, AnyOf obj2) - { - return !(obj1 == obj2); - } - - /// - /// - /// - public override bool Equals(object? obj) - { - return obj is AnyOf o && Equals(o); - } - } -} diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs index 08166c2279..5e1cb557ba 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs @@ -137,13 +137,13 @@ partial void ProcessCreateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? updatedAt = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, - global::G.AnyOf? enableReservations = default, - global::G.AnyOf? reservationMinutes = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, + bool? enableReservations = true, + int? reservationMinutes = 1, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs index 2e3065ef9e..ea6d39fa03 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs @@ -131,8 +131,8 @@ partial void ProcessCreateIdentityAnnotationQueueRunStatusResponseContent( /// public async global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::G.AnyOf? status = default, - global::G.AnyOf? overrideAddedAt = default, + string? status = default, + global::System.DateTime? overrideAddedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityAnnotationQueueRunStatusCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs index 244a2e4a18..e7385c4f86 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs @@ -8,21 +8,21 @@ public partial class AnnotationQueuesClient { partial void PrepareGetAnnotationQueuesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? ids, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, + global::System.Collections.Generic.IList? ids, + ref string? name, + ref string? nameContains, ref int? offset, ref int? limit, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareGetAnnotationQueuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? ids, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, + global::System.Collections.Generic.IList? ids, + string? name, + string? nameContains, int? offset, int? limit, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessGetAnnotationQueuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -48,35 +48,35 @@ partial void ProcessGetAnnotationQueuesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + global::System.Collections.Generic.IList? ids = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareGetAnnotationQueuesArguments( httpClient: _httpClient, - ids: ref ids, + ids: ids, name: ref name, nameContains: ref nameContains, offset: ref offset, limit: ref limit, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/annotation-queues", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("ids", ids?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("ids", ids, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs index bcd1507db6..830b0f1c29 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs @@ -139,12 +139,12 @@ partial void ProcessUpdateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, bool? enableReservations = true, - global::G.AnyOf? reservationMinutes = default, + int? reservationMinutes = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.AnnotationQueueUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs index 1c6e179d17..eb2b1a2ffd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs @@ -139,8 +139,8 @@ partial void ProcessUpdateRunInAnnotationQueueResponseContent( public async global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::G.AnyOf? lastReviewedTime = default, - global::G.AnyOf? addedAt = default, + global::System.DateTime? lastReviewedTime = default, + global::System.DateTime? addedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.AnnotationQueueRunUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateChart.g.verified.cs index d9066bd192..f39b146981 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateChart.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessCreateChartResponseContent( string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, - global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + string? description = default, + int? index = default, + global::System.Guid? sectionId = default, + object? metadata = default, + global::G.CustomChartSeriesFilters? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateSection.g.verified.cs index 0089b43a3a..a32bc42ff8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.CreateSection.g.verified.cs @@ -127,8 +127,8 @@ partial void ProcessCreateSectionResponseContent( /// public async global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, + string? description = default, + int? index = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsSectionCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadCharts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadCharts.g.verified.cs index bd1294f65f..48fb4279e9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadCharts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadCharts.g.verified.cs @@ -135,10 +135,10 @@ partial void ProcessReadChartsResponseContent( public async global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSections.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSections.g.verified.cs index 1a1cd21302..a7a9645fe4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSections.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSections.g.verified.cs @@ -10,21 +10,21 @@ partial void PrepareReadSectionsArguments( global::System.Net.Http.HttpClient httpClient, ref int? limit, ref int? offset, - ref global::G.AnyOf? titleContains, - ref global::G.AnyOf, object>? ids, - ref global::G.AnyOf? sortBy, - ref global::G.AnyOf? sortByDesc, - ref global::G.AnyOf, object>? tagValueId); + ref string? titleContains, + global::System.Collections.Generic.IList? ids, + ref string? sortBy, + ref bool? sortByDesc, + global::System.Collections.Generic.IList? tagValueId); partial void PrepareReadSectionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int? limit, int? offset, - global::G.AnyOf? titleContains, - global::G.AnyOf, object>? ids, - global::G.AnyOf? sortBy, - global::G.AnyOf? sortByDesc, - global::G.AnyOf, object>? tagValueId); + string? titleContains, + global::System.Collections.Generic.IList? ids, + string? sortBy, + bool? sortByDesc, + global::System.Collections.Generic.IList? tagValueId); partial void ProcessReadSectionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -58,11 +58,11 @@ partial void ProcessReadSectionsResponseContent( public async global::System.Threading.Tasks.Task> ReadSectionsAsync( int? limit = 100, int? offset = 0, - global::G.AnyOf? titleContains = default, - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? sortBy = default, - global::G.AnyOf? sortByDesc = default, - global::G.AnyOf, object>? tagValueId = default, + string? titleContains = default, + global::System.Collections.Generic.IList? ids = default, + string? sortBy = "created_at", + bool? sortByDesc = true, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -72,10 +72,10 @@ partial void ProcessReadSectionsResponseContent( limit: ref limit, offset: ref offset, titleContains: ref titleContains, - ids: ref ids, + ids: ids, sortBy: ref sortBy, sortByDesc: ref sortByDesc, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/charts/section", @@ -83,11 +83,11 @@ partial void ProcessReadSectionsResponseContent( __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("title_contains", titleContains?.ToString() ?? string.Empty) - .AddOptionalParameter("ids", ids?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("title_contains", titleContains) + .AddOptionalParameter("ids", ids, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("sort_by", sortBy) + .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs index 1b7ba77b2a..89e4c5981b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs @@ -143,10 +143,10 @@ partial void ProcessReadSingleChartResponseContent( global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs index 239502dcb4..e7962eae1b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs @@ -141,7 +141,7 @@ partial void ProcessReadSingleSectionResponseContent( global::System.Guid sectionId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateChart.g.verified.cs index 70b51d9356..a3d81f8db4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateChart.g.verified.cs @@ -140,13 +140,13 @@ partial void ProcessUpdateChartResponseContent( public async global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::G.AnyOf? chartType = default, global::G.AnyOf, global::G.Missing>? series = default, global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateSection.g.verified.cs index df4ee0bd07..0cc637f058 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateSection.g.verified.cs @@ -135,7 +135,7 @@ partial void ProcessUpdateSectionResponseContent( public async global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.CreateCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.CreateCommit.g.verified.cs index 49b8cdd272..b30fcb73cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.CreateCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.CreateCommit.g.verified.cs @@ -143,8 +143,8 @@ partial void ProcessCreateCommitResponseContent( string owner, string repo, object manifest, - global::G.AnyOf? parentCommit = default, - global::G.AnyOf, object>? exampleRunIds = default, + string? parentCommit = default, + global::System.Collections.Generic.IList? exampleRunIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRepoCommitRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.GetCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.GetCommit.g.verified.cs index 43a39078f8..cb61f6e86e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.GetCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.CommitsClient.GetCommit.g.verified.cs @@ -13,7 +13,7 @@ partial void PrepareGetCommitArguments( ref string commit, ref bool? getExamples, ref bool? isView, - ref global::G.AnyOf? includeModel); + ref bool? includeModel); partial void PrepareGetCommitRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, @@ -22,7 +22,7 @@ partial void PrepareGetCommitRequest( string commit, bool? getExamples, bool? isView, - global::G.AnyOf? includeModel); + bool? includeModel); partial void ProcessGetCommitResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -56,7 +56,7 @@ partial void ProcessGetCommitResponseContent( string commit, bool? getExamples = false, bool? isView = false, - global::G.AnyOf? includeModel = default, + bool? includeModel = false, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -76,7 +76,7 @@ partial void ProcessGetCommitResponseContent( __pathBuilder .AddOptionalParameter("get_examples", getExamples?.ToString()) .AddOptionalParameter("is_view", isView?.ToString()) - .AddOptionalParameter("include_model", includeModel?.ToString() ?? string.Empty) + .AddOptionalParameter("include_model", includeModel?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CloneDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CloneDataset.g.verified.cs index 61620edfb8..61b908399f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CloneDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CloneDataset.g.verified.cs @@ -122,7 +122,9 @@ partial void ProcessCloneDatasetResponseContent( /// /// /// - /// + /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. + /// /// /// Default Value: [] /// @@ -131,7 +133,7 @@ partial void ProcessCloneDatasetResponseContent( public async global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::G.AnyOf?, object>? asOf = default, + object? asOf = default, global::System.Collections.Generic.IList? examples = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs index ea9afc2670..3b062cdcf5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs @@ -134,11 +134,11 @@ partial void ProcessCreateComparativeExperimentResponseContent( global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, + string? name = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? extra = default, + object? extra = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ComparativeExperimentCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateDataset.g.verified.cs index 0b22bef6d3..0d53cf9b6b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.CreateDataset.g.verified.cs @@ -137,13 +137,13 @@ partial void ProcessCreateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf? externallyManaged = default, - global::G.AnyOf? id = default, - global::G.AnyOf? extra = default, + object? inputsSchemaDefinition = default, + object? outputsSchemaDefinition = default, + bool? externallyManaged = false, + global::System.Guid? id = default, + object? extra = default, global::G.DataType? dataType = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs index d99d68c106..88159f86a4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessDatasetHandlerResponseContent( global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs index 1b520be708..3d93ff5291 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetCsvArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetCsvRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetCsvResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetCsvResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetCsvAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetCsvResponseContent( path: $"/api/v1/datasets/{datasetId}/csv", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs index dc16fea1a9..e04d45b498 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetOpenaiArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetOpenaiRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetOpenaiResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetOpenaiResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetOpenaiAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetOpenaiResponseContent( path: $"/api/v1/datasets/{datasetId}/openai", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs index 9cd080a3a4..eb60534d58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetOpenaiFtArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetOpenaiFtRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetOpenaiFtResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetOpenaiFtResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetOpenaiFtAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetOpenaiFtResponseContent( path: $"/api/v1/datasets/{datasetId}/openai_ft", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Generate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Generate.g.verified.cs index e4a84ad1c7..b11627b12a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Generate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Generate.g.verified.cs @@ -134,7 +134,7 @@ partial void ProcessGenerateResponseContent( public async global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::G.AnyOf, object>? exampleIds = default, + global::System.Collections.Generic.IList? exampleIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.GenerateSyntheticExamplesBody diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs index f357d6aa29..577da50534 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs @@ -9,14 +9,14 @@ public partial class DatasetsClient partial void PrepareGetDatasetVersionArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf, - ref global::G.AnyOf? tag); + ref global::System.DateTime? asOf, + ref string? tag); partial void PrepareGetDatasetVersionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf, - global::G.AnyOf? tag); + global::System.DateTime? asOf, + string? tag); partial void ProcessGetDatasetVersionResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,8 +37,8 @@ partial void ProcessGetDatasetVersionResponseContent( /// public async global::System.Threading.Tasks.Task GetDatasetVersionAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, - global::G.AnyOf? tag = default, + global::System.DateTime? asOf = default, + string? tag = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -53,8 +53,8 @@ partial void ProcessGetDatasetVersionResponseContent( path: $"/api/v1/datasets/{datasetId}/version", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("tag", tag?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("tag", tag) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs index 9e5de27dc3..6ba526bdf4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs @@ -9,16 +9,16 @@ public partial class DatasetsClient partial void PrepareGetDatasetVersionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? search, - ref global::G.AnyOf? example, + ref string? search, + ref global::System.Guid? example, ref int? limit, ref int? offset); partial void PrepareGetDatasetVersionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? search, - global::G.AnyOf? example, + string? search, + global::System.Guid? example, int? limit, int? offset); partial void ProcessGetDatasetVersionsResponse( @@ -47,8 +47,8 @@ partial void ProcessGetDatasetVersionsResponseContent( /// public async global::System.Threading.Tasks.Task> GetDatasetVersionsAsync( global::System.Guid datasetId, - global::G.AnyOf? search = default, - global::G.AnyOf? example = default, + string? search = default, + global::System.Guid? example = default, int? limit = 100, int? offset = 0, global::System.Threading.CancellationToken cancellationToken = default) @@ -67,8 +67,8 @@ partial void ProcessGetDatasetVersionsResponseContent( path: $"/api/v1/datasets/{datasetId}/versions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("search", search?.ToString() ?? string.Empty) - .AddOptionalParameter("example", example?.ToString() ?? string.Empty) + .AddOptionalParameter("search", search) + .AddOptionalParameter("example", example?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) ; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Index.g.verified.cs index be6921bee1..299a11c04e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Index.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Index.g.verified.cs @@ -134,7 +134,7 @@ partial void ProcessIndexResponseContent( /// public async global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::G.AnyOf? tag = default, + string? tag = "latest", global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetIndexRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs index 403e7a1a0b..9c9455c0e6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs @@ -9,9 +9,9 @@ public partial class DatasetsClient partial void PrepareReadComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf, object>? id, + ref string? name, + ref string? nameContains, + global::System.Collections.Generic.IList? id, ref int? offset, ref int? limit, ref global::G.SortByComparativeExperimentColumn? sortBy, @@ -20,9 +20,9 @@ partial void PrepareReadComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf, object>? id, + string? name, + string? nameContains, + global::System.Collections.Generic.IList? id, int? offset, int? limit, global::G.SortByComparativeExperimentColumn? sortBy, @@ -60,9 +60,9 @@ partial void ProcessReadComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf, object>? id = default, + string? name = default, + string? nameContains = default, + global::System.Collections.Generic.IList? id = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, @@ -76,7 +76,7 @@ partial void ProcessReadComparativeExperimentsResponseContent( datasetId: ref datasetId, name: ref name, nameContains: ref nameContains, - id: ref id, + id: id, offset: ref offset, limit: ref limit, sortBy: ref sortBy, @@ -92,9 +92,9 @@ partial void ProcessReadComparativeExperimentsResponseContent( path: $"/api/v1/datasets/{datasetId}/comparative", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortByValue?.ToString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs index c3fa83d1fc..aa6bd93480 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessReadDatasetShareStateResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ReadDatasetShareStateAsync( + public async global::System.Threading.Tasks.Task ReadDatasetShareStateAsync( global::System.Guid datasetId, global::System.Threading.CancellationToken cancellationToken = default) { @@ -104,7 +104,7 @@ partial void ProcessReadDatasetShareStateResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject?>(__content, JsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject(__content, JsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs index 056f65f864..1f4af57790 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs @@ -8,29 +8,29 @@ public partial class DatasetsClient { partial void PrepareReadDatasetsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf, global::G.DataType?, object>? dataType, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? metadata, + global::System.Collections.Generic.IList? id, + ref global::G.AnyOf, global::G.DataType?>? dataType, + ref string? name, + ref string? nameContains, + ref string? metadata, ref int? offset, ref int? limit, ref global::G.SortByDatasetColumn? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareReadDatasetsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, - global::G.AnyOf, global::G.DataType?, object>? dataType, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? metadata, + global::System.Collections.Generic.IList? id, + global::G.AnyOf, global::G.DataType?>? dataType, + string? name, + string? nameContains, + string? metadata, int? offset, int? limit, global::G.SortByDatasetColumn? sortBy, bool? sortByDesc, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessReadDatasetsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,23 +65,23 @@ partial void ProcessReadDatasetsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf, global::G.DataType?, object>? dataType = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? metadata = default, + global::System.Collections.Generic.IList? id = default, + global::G.AnyOf, global::G.DataType?>? dataType = default, + string? name = default, + string? nameContains = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::G.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadDatasetsArguments( httpClient: _httpClient, - id: ref id, + id: id, dataType: ref dataType, name: ref name, nameContains: ref nameContains, @@ -90,7 +90,7 @@ partial void ProcessReadDatasetsResponseContent( limit: ref limit, sortBy: ref sortBy, sortByDesc: ref sortByDesc, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var sortByValue = sortBy switch { @@ -105,16 +105,16 @@ partial void ProcessReadDatasetsResponseContent( path: "/api/v1/datasets", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("data_type", dataType?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("metadata", metadata) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortByValue?.ToString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDelta.g.verified.cs index 63a9fc52b4..8574c2b44f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadDelta.g.verified.cs @@ -145,10 +145,10 @@ partial void ProcessReadDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryFeedbackDelta diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs index f9e910d65c..32f451aac4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs @@ -141,8 +141,8 @@ partial void ProcessReadExamplesWithRunsResponseContent( public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Search.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Search.g.verified.cs index 8df35f688c..31c7fcd255 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Search.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Search.g.verified.cs @@ -142,7 +142,7 @@ partial void ProcessSearchResponseContent( object inputs, int? limit = 5, bool? debug = false, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.SearchDatasetRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs index feba0faefc..1774995343 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessStreamDatasetHandlerResponseContent( global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs index 1ed8d19d1c..f81ab1d354 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf, object>? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::System.Collections.Generic.Dictionary? patchExamples = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs index 73b5bcc530..e07ef061bd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs @@ -81,7 +81,7 @@ partial void ProcessUploadCsvDatasetResponseContent( if (request.Name != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent(request.Name?.Value1?.ToString() ?? request.Name?.Value2?.ToString() ?? string.Empty), + content: new global::System.Net.Http.StringContent($"{request.Name}"), name: "name"); } if (request.DataType != default) @@ -99,7 +99,7 @@ partial void ProcessUploadCsvDatasetResponseContent( if (request.Description != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent(request.Description?.Value1?.ToString() ?? request.Description?.Value2?.ToString() ?? string.Empty), + content: new global::System.Net.Http.StringContent($"{request.Description}"), name: "description"); } httpRequest.Content = __httpRequestContent; @@ -170,10 +170,10 @@ partial void ProcessUploadCsvDatasetResponseContent( byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::G.AnyOf? name = default, + string? name = default, global::G.DataType? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyUploadCsvDatasetApiV1DatasetsUploadPost diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs index 3c156a4ab3..549e4bad11 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessUploadExperimentResponseContent( global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::G.AnyOf? experimentDescription = default, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? datasetName = default, - global::G.AnyOf? datasetDescription = default, - global::G.AnyOf, object>? summaryExperimentScores = default, - global::G.AnyOf? experimentMetadata = default, + string? experimentDescription = default, + global::System.Guid? datasetId = default, + string? datasetName = default, + string? datasetDescription = default, + global::System.Collections.Generic.IList? summaryExperimentScores = default, + object? experimentMetadata = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ExperimentResultsUpload diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.EventsClient.CreateEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.EventsClient.CreateEvent.g.verified.cs index 72313dda43..390b6ccefd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.EventsClient.CreateEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.EventsClient.CreateEvent.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateEventResponseContent( global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::G.AnyOf? commit = default, + string? commit = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateEventRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CountExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CountExamples.g.verified.cs index 36cc4153cb..95667e75cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CountExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CountExamples.g.verified.cs @@ -8,23 +8,23 @@ public partial class ExamplesClient { partial void PrepareCountExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf, object>? fullTextContains, - ref global::G.AnyOf, object>? splits, - ref global::G.AnyOf? dataset, - ref global::G.AnyOf? filter); + ref string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + ref global::System.Guid? dataset, + ref string? filter); partial void PrepareCountExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf, object>? fullTextContains, - global::G.AnyOf, object>? splits, - global::G.AnyOf? dataset, - global::G.AnyOf? filter); + string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + global::System.Guid? dataset, + string? filter); partial void ProcessCountExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -51,24 +51,24 @@ partial void ProcessCountExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CountExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, - global::G.AnyOf? filter = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareCountExamplesArguments( httpClient: _httpClient, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, - fullTextContains: ref fullTextContains, - splits: ref splits, + fullTextContains: fullTextContains, + splits: splits, dataset: ref dataset, filter: ref filter); @@ -76,13 +76,13 @@ partial void ProcessCountExamplesResponseContent( path: "/api/v1/examples/count", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("full_text_contains", fullTextContains?.ToString() ?? string.Empty) - .AddOptionalParameter("splits", splits?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset", dataset?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("full_text_contains", fullTextContains, delimiter: ",", explode: true) + .AddOptionalParameter("splits", splits, delimiter: ",", explode: true) + .AddOptionalParameter("dataset", dataset?.ToString()) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CreateExample.g.verified.cs index 43ab32d9a4..db678b400a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CreateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CreateExample.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessCreateExampleResponseContent( /// public async global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::G.AnyOf? outputs = default, - global::G.AnyOf? sourceRunId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf, string, object>? split = default, - global::G.AnyOf? id = default, + object? outputs = default, + global::System.Guid? sourceRunId = default, + object? metadata = default, + object? inputs = default, + global::G.AnyOf, string>? split = default, + global::System.Guid? id = default, bool? useSourceRunIo = false, global::System.DateTime? createdAt = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExamples.g.verified.cs index b319a2b412..d34a31b3d2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExamples.g.verified.cs @@ -8,33 +8,33 @@ public partial class ExamplesClient { partial void PrepareReadExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf, object>? fullTextContains, - ref global::G.AnyOf, object>? splits, - ref global::G.AnyOf? dataset, + ref string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + ref global::System.Guid? dataset, ref int? offset, ref int? limit, ref global::G.ExampleListOrder? order, - ref global::G.AnyOf? randomSeed, + ref double? randomSeed, global::System.Collections.Generic.IList? select, - ref global::G.AnyOf? filter); + ref string? filter); partial void PrepareReadExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf, object>? fullTextContains, - global::G.AnyOf, object>? splits, - global::G.AnyOf? dataset, + string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + global::System.Guid? dataset, int? offset, int? limit, global::G.ExampleListOrder? order, - global::G.AnyOf? randomSeed, + double? randomSeed, global::System.Collections.Generic.IList? select, - global::G.AnyOf? filter); + string? filter); partial void ProcessReadExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -72,29 +72,29 @@ partial void ProcessReadExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, int? offset = 0, int? limit = 100, global::G.ExampleListOrder? order = default, - global::G.AnyOf? randomSeed = default, + double? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadExamplesArguments( httpClient: _httpClient, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, - fullTextContains: ref fullTextContains, - splits: ref splits, + fullTextContains: fullTextContains, + splits: splits, dataset: ref dataset, offset: ref offset, limit: ref limit, @@ -114,17 +114,17 @@ partial void ProcessReadExamplesResponseContent( path: "/api/v1/examples", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("full_text_contains", fullTextContains?.ToString() ?? string.Empty) - .AddOptionalParameter("splits", splits?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset", dataset?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("full_text_contains", fullTextContains, delimiter: ",", explode: true) + .AddOptionalParameter("splits", splits, delimiter: ",", explode: true) + .AddOptionalParameter("dataset", dataset?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("order", orderValue?.ToString()) - .AddOptionalParameter("random_seed", randomSeed?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("random_seed", randomSeed?.ToString()) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.UpdateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.UpdateExample.g.verified.cs index 5314fe46e4..f0ce2e6fa5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.UpdateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.UpdateExample.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateExampleResponseContent( /// public async global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf? outputs = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, string, object>? split = default, + global::System.Guid? datasetId = default, + object? inputs = default, + object? outputs = default, + object? metadata = default, + global::G.AnyOf, string>? split = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ExampleUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs index f605a08e6b..ddd82336d4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs @@ -140,17 +140,17 @@ partial void ProcessCreateFeedbackResponseContent( string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs index 8c88fe5740..7de8ea48dc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs @@ -9,18 +9,18 @@ public partial class FeedbackClient partial void PrepareCreateFeedbackWithTokenGetArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid token, - ref global::G.AnyOf? score, - ref global::G.AnyOf? value, - ref global::G.AnyOf? comment, - ref global::G.AnyOf? correction); + ref global::G.AnyOf? score, + ref global::G.AnyOf? value, + ref string? comment, + ref string? correction); partial void PrepareCreateFeedbackWithTokenGetRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid token, - global::G.AnyOf? score, - global::G.AnyOf? value, - global::G.AnyOf? comment, - global::G.AnyOf? correction); + global::G.AnyOf? score, + global::G.AnyOf? value, + string? comment, + string? correction); partial void ProcessCreateFeedbackWithTokenGetResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,10 +43,10 @@ partial void ProcessCreateFeedbackWithTokenGetResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenGetAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + string? correction = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -65,8 +65,8 @@ partial void ProcessCreateFeedbackWithTokenGetResponseContent( __pathBuilder .AddOptionalParameter("score", score?.ToString() ?? string.Empty) .AddOptionalParameter("value", value?.ToString() ?? string.Empty) - .AddOptionalParameter("comment", comment?.ToString() ?? string.Empty) - .AddOptionalParameter("correction", correction?.ToString() ?? string.Empty) + .AddOptionalParameter("comment", comment) + .AddOptionalParameter("correction", correction) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs index f686447f32..9c9e913d58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs @@ -120,11 +120,11 @@ partial void ProcessCreateFeedbackWithTokenPostResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? metadata = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + object? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateWithTokenExtendedSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs index 1d5696a750..8b1d90365d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs @@ -144,17 +144,17 @@ partial void ProcessEagerlyCreateFeedbackResponseContent( string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs index 52f0c929aa..cd148dfe48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs @@ -8,33 +8,33 @@ public partial class FeedbackClient { partial void PrepareReadFeedbacksArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level, - ref global::G.AnyOf? maxCreatedAt, - ref global::G.AnyOf? minCreatedAt); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level, + ref global::System.DateTime? maxCreatedAt, + ref global::System.DateTime? minCreatedAt); partial void PrepareReadFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level, - global::G.AnyOf? maxCreatedAt, - global::G.AnyOf? minCreatedAt); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level, + global::System.DateTime? maxCreatedAt, + global::System.DateTime? minCreatedAt); partial void ProcessReadFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -61,59 +61,66 @@ partial void ProcessReadFeedbacksResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, - global::G.AnyOf? maxCreatedAt = default, - global::G.AnyOf? minCreatedAt = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, + global::System.DateTime? maxCreatedAt = default, + global::System.DateTime? minCreatedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadFeedbacksArguments( httpClient: _httpClient, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level, maxCreatedAt: ref maxCreatedAt, minCreatedAt: ref minCreatedAt); + var levelValue = level switch + { + global::G.FeedbackLevel.Run => "run", + global::G.FeedbackLevel.Session => "session", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: "/api/v1/feedback", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) - .AddOptionalParameter("max_created_at", maxCreatedAt?.ToString() ?? string.Empty) - .AddOptionalParameter("min_created_at", minCreatedAt?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", levelValue?.ToString()) + .AddOptionalParameter("max_created_at", maxCreatedAt?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("min_created_at", minCreatedAt?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs index d8eed76cc4..85b4f7f7e3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs index c4f359938c..e5cc773823 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateFeedbackConfigEndpointResponseContent( public async global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::G.AnyOf? isLowerScoreBetter = default, + bool? isLowerScoreBetter = false, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateFeedbackConfigSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs index 41675dee8c..677a736133 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs @@ -8,11 +8,11 @@ public partial class FeedbackConfigsClient { partial void PrepareListFeedbackConfigsEndpointArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? key); + global::System.Collections.Generic.IList? key); partial void PrepareListFeedbackConfigsEndpointRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? key); + global::System.Collections.Generic.IList? key); partial void ProcessListFeedbackConfigsEndpointResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,20 +29,20 @@ partial void ProcessListFeedbackConfigsEndpointResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::G.AnyOf, object>? key = default, + global::System.Collections.Generic.IList? key = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareListFeedbackConfigsEndpointArguments( httpClient: _httpClient, - key: ref key); + key: key); var __pathBuilder = new PathBuilder( path: "/api/v1/feedback-configs", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs index 9549f9a810..4bcd7d11a6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessUpdateFeedbackConfigEndpointResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::G.AnyOf? feedbackConfig = default, - global::G.AnyOf? isLowerScoreBetter = default, + global::G.FeedbackConfig? feedbackConfig = default, + bool? isLowerScoreBetter = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateFeedbackConfigSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs index cee65ce630..9338f1c2b3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs @@ -37,13 +37,13 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? updatedAt = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, - global::G.AnyOf? enableReservations = default, - global::G.AnyOf? reservationMinutes = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, + bool? enableReservations = true, + int? reservationMinutes = 1, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs index c3348cc9cc..63d26bf4e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::G.AnyOf? status = default, - global::G.AnyOf? overrideAddedAt = default, + string? status = default, + global::System.DateTime? overrideAddedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs index 028947a43c..b8c541ba93 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs @@ -21,12 +21,12 @@ public partial interface IAnnotationQueuesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + global::System.Collections.Generic.IList? ids = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs index 2ea146e7d0..bf8db8019a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs @@ -35,12 +35,12 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, bool? enableReservations = true, - global::G.AnyOf? reservationMinutes = default, + int? reservationMinutes = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs index 91b12feebf..6bfd0e0fc4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs @@ -31,8 +31,8 @@ public partial interface IAnnotationQueuesClient global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::G.AnyOf? lastReviewedTime = default, - global::G.AnyOf? addedAt = default, + global::System.DateTime? lastReviewedTime = default, + global::System.DateTime? addedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateChart.g.verified.cs index 4fe3dff973..1f64d37a72 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateChart.g.verified.cs @@ -36,11 +36,11 @@ public partial interface IChartsClient string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, - global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + string? description = default, + int? index = default, + global::System.Guid? sectionId = default, + object? metadata = default, + global::G.CustomChartSeriesFilters? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateSection.g.verified.cs index ea02ccf258..4fd4831296 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.CreateSection.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IChartsClient /// global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, + string? description = default, + int? index = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadCharts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadCharts.g.verified.cs index 8af09fd3b1..2e0cf228ff 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadCharts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadCharts.g.verified.cs @@ -35,10 +35,10 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSections.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSections.g.verified.cs index 30250bb875..f735c142db 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSections.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSections.g.verified.cs @@ -29,11 +29,11 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task> ReadSectionsAsync( int? limit = 100, int? offset = 0, - global::G.AnyOf? titleContains = default, - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? sortBy = default, - global::G.AnyOf? sortByDesc = default, - global::G.AnyOf, object>? tagValueId = default, + string? titleContains = default, + global::System.Collections.Generic.IList? ids = default, + string? sortBy = "created_at", + bool? sortByDesc = true, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs index ffdd6f38da..cb970b958a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs @@ -39,10 +39,10 @@ public partial interface IChartsClient global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs index cd4f613e94..97867c33a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs @@ -37,7 +37,7 @@ public partial interface IChartsClient global::System.Guid sectionId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateChart.g.verified.cs index b65561df2b..a19bc5f98d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateChart.g.verified.cs @@ -36,13 +36,13 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::G.AnyOf? chartType = default, global::G.AnyOf, global::G.Missing>? series = default, global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateSection.g.verified.cs index c4280c14a3..af4be1b6a6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IChartsClient.UpdateSection.g.verified.cs @@ -31,7 +31,7 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.CreateCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.CreateCommit.g.verified.cs index 3fa5786bb1..9e4b7e9f1d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.CreateCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.CreateCommit.g.verified.cs @@ -35,8 +35,8 @@ public partial interface ICommitsClient string owner, string repo, object manifest, - global::G.AnyOf? parentCommit = default, - global::G.AnyOf, object>? exampleRunIds = default, + string? parentCommit = default, + global::System.Collections.Generic.IList? exampleRunIds = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.GetCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.GetCommit.g.verified.cs index e7aaf2b282..c51b4a0af5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.GetCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ICommitsClient.GetCommit.g.verified.cs @@ -29,7 +29,7 @@ public partial interface ICommitsClient string commit, bool? getExamples = false, bool? isView = false, - global::G.AnyOf? includeModel = default, + bool? includeModel = false, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs index 3057e00815..41610c6ef7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs @@ -22,7 +22,9 @@ public partial interface IDatasetsClient /// /// /// - /// + /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. + /// /// /// Default Value: [] /// @@ -31,7 +33,7 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::G.AnyOf?, object>? asOf = default, + object? asOf = default, global::System.Collections.Generic.IList? examples = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs index 67d5368e71..188e9fa373 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs @@ -34,11 +34,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, + string? name = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? extra = default, + object? extra = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs index 1b382aad37..bb1dd6df16 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs @@ -37,13 +37,13 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf? externallyManaged = default, - global::G.AnyOf? id = default, - global::G.AnyOf? extra = default, + object? inputsSchemaDefinition = default, + object? outputsSchemaDefinition = default, + bool? externallyManaged = false, + global::System.Guid? id = default, + object? extra = default, global::G.DataType? dataType = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs index 0c86be3382..da73408168 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs @@ -39,11 +39,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs index 94d94dc275..1238978800 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetCsvAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs index dae60292c3..ddaafaf61f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetOpenaiAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs index 70d3ff7194..4732fed471 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetOpenaiFtAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Generate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Generate.g.verified.cs index 91b382dd38..16397f3b2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Generate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Generate.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::G.AnyOf, object>? exampleIds = default, + global::System.Collections.Generic.IList? exampleIds = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs index b5435cd86f..b9dfc8f41d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs @@ -16,8 +16,8 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task GetDatasetVersionAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, - global::G.AnyOf? tag = default, + global::System.DateTime? asOf = default, + string? tag = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs index a6c78e7bcd..d2a3f131c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs @@ -22,8 +22,8 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task> GetDatasetVersionsAsync( global::System.Guid datasetId, - global::G.AnyOf? search = default, - global::G.AnyOf? example = default, + string? search = default, + global::System.Guid? example = default, int? limit = 100, int? offset = 0, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Index.g.verified.cs index a8c69c726f..25570f0139 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Index.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Index.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::G.AnyOf? tag = default, + string? tag = "latest", global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs index 84e39004cd..2afe63768b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs @@ -29,9 +29,9 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf, object>? id = default, + string? name = default, + string? nameContains = default, + global::System.Collections.Generic.IList? id = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs index 6229ae5a18..0ee5bcb7d7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IDatasetsClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> ReadDatasetShareStateAsync( + global::System.Threading.Tasks.Task ReadDatasetShareStateAsync( global::System.Guid datasetId, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs index 7b1d92c770..c9c41f2884 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs @@ -30,16 +30,16 @@ public partial interface IDatasetsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf, global::G.DataType?, object>? dataType = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? metadata = default, + global::System.Collections.Generic.IList? id = default, + global::G.AnyOf, global::G.DataType?>? dataType = default, + string? name = default, + string? nameContains = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::G.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs index e1d97049a7..55c43ea450 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs @@ -41,10 +41,10 @@ public partial interface IDatasetsClient global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs index d25f767630..be38a0e023 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs @@ -37,8 +37,8 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Search.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Search.g.verified.cs index a1acc61941..f23dff8d97 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Search.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.Search.g.verified.cs @@ -38,7 +38,7 @@ public partial interface IDatasetsClient object inputs, int? limit = 5, bool? debug = false, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs index 770cf7f331..600d6573c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs @@ -39,11 +39,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs index d6122b2c3b..ae79224d91 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf, object>? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::System.Collections.Generic.Dictionary? patchExamples = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs index ca10fad57b..260c4c542d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs @@ -37,10 +37,10 @@ public partial interface IDatasetsClient byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::G.AnyOf? name = default, + string? name = default, global::G.DataType? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs index 1077690b7e..b50c710632 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs @@ -37,12 +37,12 @@ public partial interface IDatasetsClient global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::G.AnyOf? experimentDescription = default, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? datasetName = default, - global::G.AnyOf? datasetDescription = default, - global::G.AnyOf, object>? summaryExperimentScores = default, - global::G.AnyOf? experimentMetadata = default, + string? experimentDescription = default, + global::System.Guid? datasetId = default, + string? datasetName = default, + string? datasetDescription = default, + global::System.Collections.Generic.IList? summaryExperimentScores = default, + object? experimentMetadata = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IEventsClient.CreateEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IEventsClient.CreateEvent.g.verified.cs index e05cadfa36..ba3ebb4062 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IEventsClient.CreateEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IEventsClient.CreateEvent.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IEventsClient global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::G.AnyOf? commit = default, + string? commit = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CountExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CountExamples.g.verified.cs index dff77f8c25..1b06d227af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CountExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CountExamples.g.verified.cs @@ -22,13 +22,13 @@ public partial interface IExamplesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CountExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, - global::G.AnyOf? filter = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CreateExample.g.verified.cs index 8d81eddc6c..c5483e0d47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CreateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.CreateExample.g.verified.cs @@ -37,12 +37,12 @@ public partial interface IExamplesClient /// global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::G.AnyOf? outputs = default, - global::G.AnyOf? sourceRunId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf, string, object>? split = default, - global::G.AnyOf? id = default, + object? outputs = default, + global::System.Guid? sourceRunId = default, + object? metadata = default, + object? inputs = default, + global::G.AnyOf, string>? split = default, + global::System.Guid? id = default, bool? useSourceRunIo = false, global::System.DateTime? createdAt = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.ReadExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.ReadExamples.g.verified.cs index fdd9932427..b503f2f2f1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.ReadExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.ReadExamples.g.verified.cs @@ -33,18 +33,18 @@ public partial interface IExamplesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, int? offset = 0, int? limit = 100, global::G.ExampleListOrder? order = default, - global::G.AnyOf? randomSeed = default, + double? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.UpdateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.UpdateExample.g.verified.cs index ffae84a137..1e1d2c5aeb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.UpdateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IExamplesClient.UpdateExample.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IExamplesClient /// global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf? outputs = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, string, object>? split = default, + global::System.Guid? datasetId = default, + object? inputs = default, + object? outputs = default, + object? metadata = default, + global::G.AnyOf, string>? split = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs index e6f1bfc3f9..cab3c890e0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs @@ -40,17 +40,17 @@ public partial interface IFeedbackClient string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs index 1218ef7685..fb5dcca202 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs @@ -18,10 +18,10 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task CreateFeedbackWithTokenGetAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + string? correction = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs index 1038a61f25..32224871b9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? metadata = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + object? metadata = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs index e820f28191..87dd8c8b6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs @@ -44,17 +44,17 @@ public partial interface IFeedbackClient string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs index e415d4020c..661b2c8dc2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs @@ -22,24 +22,26 @@ public partial interface IFeedbackClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, - global::G.AnyOf? maxCreatedAt = default, - global::G.AnyOf? minCreatedAt = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, + global::System.DateTime? maxCreatedAt = default, + global::System.DateTime? minCreatedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs index c1353c2c1d..d8f46fb9fd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs index 615d4d3008..4320bc926a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IFeedbackConfigsClient global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::G.AnyOf? isLowerScoreBetter = default, + bool? isLowerScoreBetter = false, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs index 175719ab9c..f22b825fcf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IFeedbackConfigsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::G.AnyOf, object>? key = default, + global::System.Collections.Generic.IList? key = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs index 809a00905c..7fa5998570 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IFeedbackConfigsClient /// global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::G.AnyOf? feedbackConfig = default, - global::G.AnyOf? isLowerScoreBetter = default, + global::G.FeedbackConfig? feedbackConfig = default, + bool? isLowerScoreBetter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs index 5904a3ac90..7d55c335eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs @@ -34,9 +34,9 @@ public partial interface IModelPriceMapClient string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs index c0f02e060d..a687c4abc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs @@ -38,9 +38,9 @@ public partial interface IModelPriceMapClient string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs index 308f5ff8e0..0a12b78b1e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IOrgsClient global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool? readOnly = false, - global::G.AnyOf? roleId = default, - global::G.AnyOf, object>? workspaceIds = default, - global::G.AnyOf? workspaceRoleId = default, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + global::System.Guid? roleId = default, + global::System.Collections.Generic.IList? workspaceIds = default, + global::System.Guid? workspaceRoleId = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs index d05086d6f2..2ada2b6ffb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs @@ -30,8 +30,8 @@ public partial interface IOrgsClient global::System.Threading.Tasks.Task CreateSsoSettingsAsync( global::System.Guid defaultWorkspaceRoleId, global::System.Collections.Generic.IList defaultWorkspaceIds, - global::G.AnyOf? metadataXml = default, - global::G.AnyOf? metadataUrl = default, + string? metadataXml = default, + string? metadataUrl = default, global::System.Collections.Generic.Dictionary? attributeMapping = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.GetDashboard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.GetDashboard.g.verified.cs index ca514faedb..7375809199 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.GetDashboard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.GetDashboard.g.verified.cs @@ -11,12 +11,14 @@ public partial interface IOrgsClient /// /// Enum for acceptable types of dashboards. /// - /// + /// + /// Enum for acceptable color schemes of dashboards. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme, + global::G.OrganizationDashboardColorScheme colorScheme, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs index 3eb28f15c1..98c6802dfd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs @@ -18,8 +18,12 @@ public partial interface IOrgsClient /// /// Set Company Info /// - /// - /// + /// + /// Stripe customer billing information. + /// + /// + /// Stripe tax ID. + /// /// /// /// Default Value: false @@ -27,9 +31,9 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::G.AnyOf? companyInfo = default, - global::G.AnyOf? taxId = default, - global::G.AnyOf? invoiceEmail = default, + global::G.StripeBusinessBillingInfo? companyInfo = default, + global::G.StripeTaxId? taxId = default, + string? invoiceEmail = default, bool? isBusiness = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs index 53f74ab13e..a65661fe3f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs @@ -30,9 +30,9 @@ public partial interface IOrgsClient /// global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, - global::G.AnyOf? roleId = default, + string? password = default, + string? fullName = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs index 9579118f9d..f394f04a7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs @@ -22,7 +22,7 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpdateCurrentOrganizationInfoAsync( - global::G.AnyOf? displayName = default, + string? displayName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs index a662f88d82..0add533302 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs index bc935fa93a..25632ed0bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs @@ -31,10 +31,10 @@ public partial interface IOrgsClient /// global::System.Threading.Tasks.Task UpdateSsoSettingsAsync( global::System.Guid id, - global::G.AnyOf? defaultWorkspaceRoleId = default, - global::G.AnyOf, object>? defaultWorkspaceIds = default, - global::G.AnyOf? metadataUrl = default, - global::G.AnyOf? metadataXml = default, + global::System.Guid? defaultWorkspaceRoleId = default, + global::System.Collections.Generic.IList? defaultWorkspaceIds = default, + string? metadataUrl = default, + string? metadataXml = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs index 81c3da8079..6f24d121e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs @@ -26,8 +26,8 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index 7f275b2bc3..92dd553407 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs @@ -26,7 +26,7 @@ public partial interface IPlaygroundSettingsClient /// global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs index 8ed32552f1..6b184c68ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IPlaygroundSettingsClient /// global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs index 8c0c384c6d..f7922163e8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs @@ -21,10 +21,10 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task CountSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? filter = default, + string? metadata = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs index 2ccffb67c9..caba126cb2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs @@ -26,7 +26,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -38,7 +40,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -53,23 +57,23 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs index b897ec33d1..6edcb535c2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs index da11739866..fe6dff3a5d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs @@ -28,8 +28,8 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs index b5d80df263..e3fc056b9c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs @@ -37,8 +37,8 @@ public partial interface IPublicClient global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs index 66619aa7c5..3da583707e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs @@ -23,21 +23,23 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs index 84c3ee7f98..5e1169d5ab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs @@ -33,17 +33,17 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? sortByFeedbackKey = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs index 31d57bb41f..365fb59604 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs @@ -41,10 +41,10 @@ public partial interface IPublicClient global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs index 8c301b629e..e0012b57f0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs @@ -30,13 +30,13 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs index 06ae3543a2..153dfef1c4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs @@ -22,21 +22,23 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs index d8c53c06af..526c8df078 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs @@ -26,7 +26,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -38,27 +40,29 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.CreateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.CreateRepo.g.verified.cs index fc14d7b4ae..498741d753 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.CreateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.CreateRepo.g.verified.cs @@ -30,9 +30,9 @@ public partial interface IReposClient global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ForkRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ForkRepo.g.verified.cs index 813f62a14b..3caf352823 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ForkRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ForkRepo.g.verified.cs @@ -37,10 +37,10 @@ public partial interface IReposClient string owner, string repo, string repoHandle, - global::G.AnyOf? readme = default, - global::G.AnyOf? description = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, + string? readme = default, + string? description = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepoTags.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepoTags.g.verified.cs index 7891046f1e..a376768218 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepoTags.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepoTags.g.verified.cs @@ -33,17 +33,17 @@ public partial interface IReposClient global::System.Threading.Tasks.Task ListRepoTagsAsync( int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepos.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepos.g.verified.cs index 7a9c0a024f..ae47ad2e30 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepos.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.ListRepos.g.verified.cs @@ -39,19 +39,19 @@ public partial interface IReposClient bool? withLatestManifest = false, int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, - global::G.AnyOf? sortField = default, - global::G.AnyOf? sortDirection = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListReposApiV1ReposGetIsArchived? isArchived = default, + global::G.ListReposApiV1ReposGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, + string? sortField = default, + global::G.AnyOf? sortDirection = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.OptimizePrompt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.OptimizePrompt.g.verified.cs index 9876a4527d..89ddf1aa8b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.OptimizePrompt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.OptimizePrompt.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IReposClient string prompt, object metaprompt, global::System.Collections.Generic.IList examples, - global::G.AnyOf overallFeedback, + string? overallFeedback, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.UpdateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.UpdateRepo.g.verified.cs index 08fc0f03de..21d6790ec9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.UpdateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IReposClient.UpdateRepo.g.verified.cs @@ -36,11 +36,11 @@ public partial interface IReposClient global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? isArchived = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, + bool? isArchived = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRule.g.verified.cs index c5febf3896..029310c0f2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRule.g.verified.cs @@ -52,23 +52,23 @@ public partial interface IRunClient global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRun.g.verified.cs index cc0f99fd2b..f271f9ef93 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.CreateRun.g.verified.cs @@ -45,24 +45,24 @@ public partial interface IRunClient global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::G.OneOf? inputs = default, - global::G.OneOf? startTime = default, - global::G.OneOf? endTime = default, - global::G.OneOf? extra = default, - global::G.OneOf? error = default, - global::G.OneOf? serialized = default, - global::G.OneOf? outputs = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? id = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, - global::G.OneOf? referenceExampleId = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, + object? inputs = default, + global::G.OneOf? startTime = default, + global::G.OneOf? endTime = default, + object? extra = default, + string? error = default, + object? serialized = default, + object? outputs = default, + global::System.Guid? parentRunId = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? id = default, + global::System.Guid? sessionId = default, + string? sessionName = default, + global::System.Guid? referenceExampleId = default, + object? inputAttachments = default, + object? outputAttachments = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.GroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.GroupRuns.g.verified.cs index 1a7e7486f5..c6240acf38 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.GroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.GroupRuns.g.verified.cs @@ -15,7 +15,7 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task GroupRunsAsync( global::G.RunGroupRequest request, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); /// @@ -38,11 +38,11 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::G.AnyOf? accept = default, + string? accept = default, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRuleLogs.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRuleLogs.g.verified.cs index badeb37007..72dc8172c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRuleLogs.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRuleLogs.g.verified.cs @@ -24,8 +24,8 @@ public partial interface IRunClient global::System.Guid ruleId, int? limit = 720, int? offset = 0, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRules.g.verified.cs index 0b87775725..518dc0311c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ListRules.g.verified.cs @@ -16,10 +16,10 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListRulesAsync( - global::G.AnyOf? datasetId = default, - global::G.AnyOf? sessionId = default, - global::G.AnyOf? type = default, - global::G.AnyOf? nameContains = default, + global::System.Guid? datasetId = default, + global::System.Guid? sessionId = default, + global::G.ListRulesApiV1RunsRulesGetType? type = default, + string? nameContains = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.QueryRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.QueryRuns.g.verified.cs index 569517a839..916c518716 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.QueryRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.QueryRuns.g.verified.cs @@ -21,7 +21,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -33,7 +35,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -47,23 +51,23 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task QueryRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ReadRunShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ReadRunShareState.g.verified.cs index d6dee0d664..070cf8efba 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ReadRunShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.ReadRunShareState.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IRunClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> ReadRunShareStateAsync( + global::System.Threading.Tasks.Task ReadRunShareStateAsync( global::System.Guid runId, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs index 2e5c67b42e..af42e6ba2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs @@ -36,9 +36,9 @@ public partial interface IRunClient global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsRuns.g.verified.cs index 3b47c420d7..09d863bf47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.StatsRuns.g.verified.cs @@ -23,7 +23,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -35,26 +37,28 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task StatsRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.TriggerRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.TriggerRules.g.verified.cs index 5514e07d01..7542f69190 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.TriggerRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.TriggerRules.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task TriggerRulesAsync( - global::G.AnyOf, object>? ruleIds = default, - global::G.AnyOf? datasetId = default, + global::System.Collections.Generic.IList? ruleIds = default, + global::System.Guid? datasetId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRule.g.verified.cs index f14f1824ad..ef9eef2a4c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRule.g.verified.cs @@ -56,23 +56,23 @@ public partial interface IRunClient global::System.Guid ruleId, string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRun.g.verified.cs index ecfd604309..56fe009f24 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IRunClient.UpdateRun.g.verified.cs @@ -41,20 +41,20 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf? endTime = default, - global::G.OneOf? error = default, - global::G.OneOf? inputs = default, - global::G.OneOf? outputs = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? extra = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? parentRunId = default, + global::G.OneOf? endTime = default, + string? error = default, + object? inputs = default, + object? outputs = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + object? extra = default, + object? inputAttachments = default, + object? outputAttachments = default, + global::System.Guid? sessionId = default, + string? sessionName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITenantClient.CreateTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITenantClient.CreateTenant.g.verified.cs index 406750cc5f..db2bf7c471 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITenantClient.CreateTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITenantClient.CreateTenant.g.verified.cs @@ -32,8 +32,8 @@ public partial interface ITenantClient global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? organizationId = default, - global::G.AnyOf? tenantHandle = default, + global::System.Guid? organizationId = default, + string? tenantHandle = default, bool? isPersonal = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs index 8780247b9a..d1aa426c46 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs @@ -33,10 +33,10 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task CreateFilterViewAsync( global::System.Guid sessionId, string displayName, - global::G.AnyOf? filterString = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, - global::G.AnyOf? description = default, + string? filterString = default, + string? traceFilterString = default, + string? treeFilterString = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs index 94c6ccc119..7ad457b993 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs @@ -41,14 +41,14 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool? upsert = false, global::System.DateTime? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, + global::System.DateTime? endTime = default, + object? extra = default, string? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? referenceDatasetId = default, - global::G.AnyOf? traceTier = default, - global::G.AnyOf? id = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.Guid? referenceDatasetId = default, + global::G.TraceTier? traceTier = default, + global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs index bfde5e3d81..21bd1a7154 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs @@ -19,7 +19,7 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task ReadTracerSessionAsync( global::System.Guid sessionId, bool? includeStats = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs index eb77037fa5..27fde8000d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs @@ -35,21 +35,21 @@ public partial interface ITracerSessionsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::G.AnyOf? referenceFree = default, - global::G.AnyOf, object>? referenceDataset = default, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + bool? referenceFree = default, + global::System.Collections.Generic.IList? referenceDataset = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? metadata = default, - global::G.AnyOf? sortByFeedbackKey = default, + string? metadata = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs index e830500ecd..9f2e90f0e7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs @@ -22,8 +22,8 @@ public partial interface ITracerSessionsClient /// global::System.Threading.Tasks.Task>> ReadTracerSessionsRunsMetadataAsync( global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys = default, - global::G.AnyOf? startTime = default, + global::System.Collections.Generic.IList? metadataKeys = default, + global::System.DateTime? startTime = default, int? k = 10, bool? rootRunsOnly = false, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs index b6f6cf8402..d49b5ee44d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs @@ -36,11 +36,11 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::G.AnyOf? filterString = default, - global::G.AnyOf? displayName = default, - global::G.AnyOf? description = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, + string? filterString = default, + string? displayName = default, + string? description = default, + string? traceFilterString = default, + string? treeFilterString = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs index 660f3fe2b6..35ce662bdf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs @@ -33,12 +33,12 @@ public partial interface ITracerSessionsClient /// global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, - global::G.AnyOf? traceTier = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.DateTime? endTime = default, + object? extra = default, + global::G.TraceTier? traceTier = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs index e2dfb2f76a..44b2eab966 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs @@ -26,8 +26,8 @@ public partial interface ITtlSettingsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs index e558338725..aec0067b90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IUsageLimitsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertUsageLimitAsync( - global::G.UsageLimitType2 limitType, + global::G.UsageLimitType limitType, int limitValue, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs index 4aaaa3a9b0..4bce5d25c7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::G.AnyOf? readOnly = default, - global::G.AnyOf? roleId = default, + bool? readOnly = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs index b4d73a21ba..37d206b2f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs @@ -24,7 +24,7 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs index 0422d83408..c57bc564b2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs index 30c01c5232..0e1e9c0312 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? tenantHandle = default, + string? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs index 9d041c3c4c..4000984606 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IWorkspacesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs index 0f560ff71b..ea6078ea3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IWorkspacesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListTaggingsAsync( - global::G.AnyOf? tagValueId = default, + global::System.Guid? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs index 78401a5ac4..cd130abe47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::G.AnyOf? readOnly = default, + bool? readOnly = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs index 5def66eeef..88a15411ed 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::G.AnyOf? key = default, - global::G.AnyOf? description = default, + string? key = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs index 0a35812079..4eb3bb6ed7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs @@ -31,8 +31,8 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::G.AnyOf? value = default, - global::G.AnyOf? description = default, + string? value = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs index b488f53fa8..07aa313923 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs @@ -134,9 +134,9 @@ partial void ProcessCreateNewModelPriceResponseContent( string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ModelPriceMapCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs index da0d40e027..fee14180fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs @@ -142,9 +142,9 @@ partial void ProcessUpdateModelPriceResponseContent( string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ModelPriceMapUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIFeedbackSource.g.verified.cs index 7f10717213..e874e7a272 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class APIFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyCreateResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyCreateResponse.g.verified.cs index ffcb879ada..335e965ef2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyCreateResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyCreateResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIKeyCreateResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class APIKeyCreateResponse /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class APIKeyCreateResponse /// /// [global::Newtonsoft.Json.JsonProperty("last_used_at")] - public global::G.AnyOf? LastUsedAt { get; set; } + public global::System.DateTime? LastUsedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyGetResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyGetResponse.g.verified.cs index 881ad37c21..e030cbc758 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyGetResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.APIKeyGetResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIKeyGetResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class APIKeyGetResponse /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class APIKeyGetResponse /// /// [global::Newtonsoft.Json.JsonProperty("last_used_at")] - public global::G.AnyOf? LastUsedAt { get; set; } + public global::System.DateTime? LastUsedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs index 59476cd734..9940b3a796 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -39,25 +37,25 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs index 6f0dc033f6..865b12e169 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class AnnotationQueueRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs index 3ddf6a7235..9a193fe144 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueRunUpdateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class AnnotationQueueRunUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("added_at")] - public global::G.AnyOf? AddedAt { get; set; } + public global::System.DateTime? AddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchema.g.verified.cs index ccd4012c66..cf5f604884 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AnnotationQueueSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -39,25 +37,25 @@ public sealed partial class AnnotationQueueSchema /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs index 7ea96a8f6d..08716764d1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueSchemaWithSize.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -39,25 +37,25 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs index da990cdad7..04f8f99833 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueUpdateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,25 +13,25 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true @@ -45,7 +43,7 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::G.AnyOf? ReservationMinutes { get; set; } + public int? ReservationMinutes { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppFeedbackSource.g.verified.cs index db2b7152b8..9eca10379f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AppFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs index 67b6bc1504..34eca46e63 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppHubCrudTenantsTenant.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class AppHubCrudTenantsTenant /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppSchemasTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppSchemasTenant.g.verified.cs index cc79c42985..aa5addbdb4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppSchemasTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AppSchemasTenant.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppSchemasTenant.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AppSchemasTenant /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class AppSchemasTenant /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs index 7af1151f63..1db6c8b14e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AutoEvalFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class AutoEvalFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs index 804b1bb60f..e4aa3450f7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BasicAuthMemberCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -33,37 +31,37 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthUserPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthUserPatch.g.verified.cs index 589f436b7c..a054107d9c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthUserPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BasicAuthUserPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BasicAuthUserPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class BasicAuthUserPatch /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs index c9c0eedb0c..ede2b22625 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// @@ -39,49 +39,49 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs similarity index 84% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs index 01882b1f5c..eb200eff1a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.cs +//HintName: G.Models.BatchIngestRunsRequestPatchItemEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class BatchIngestRunsRequestPatchItemEventsVariant1Item + public sealed partial class BatchIngestRunsRequestPatchItemEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs index 081dd6d14f..2bd3a3e767 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs @@ -39,49 +39,49 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.OneOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// @@ -105,31 +105,31 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.OneOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs similarity index 84% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs index a4beda7b89..f27f189abb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.cs +//HintName: G.Models.BatchIngestRunsRequestPostItemEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class BatchIngestRunsRequestPostItemEventsVariant1Item + public sealed partial class BatchIngestRunsRequestPostItemEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs index 79d3ced220..8e003e4ade 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -24,10 +22,10 @@ public sealed partial class BodyCloneDatasetApiV1DatasetsClonePost public global::System.Guid SourceDatasetId { get; set; } = default!; /// - /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. /// [global::Newtonsoft.Json.JsonProperty("as_of")] - public global::G.AnyOf?, object>? AsOf { get; set; } + public object? AsOf { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs index ef247705ab..47f41bde1a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyParamsForRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,103 +13,103 @@ public sealed partial class BodyParamsForRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace")] - public global::G.AnyOf? Trace { get; set; } + public global::System.Guid? Trace { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run")] - public global::G.AnyOf? ParentRun { get; set; } + public global::System.Guid? ParentRun { get; set; } /// - /// + /// Enum for run types. /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::G.AnyOf? RunType { get; set; } + public global::G.RunTypeEnum? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example")] - public global::G.AnyOf, object>? ReferenceExample { get; set; } + public global::System.Collections.Generic.IList? ReferenceExample { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("execution_order")] - public global::G.AnyOf? ExecutionOrder { get; set; } + public int? ExecutionOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public bool? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("query")] - public global::G.AnyOf? Query { get; set; } + public string? Query { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_root")] - public global::G.AnyOf? IsRoot { get; set; } + public bool? IsRoot { get; set; } /// - /// + /// Enum for run data source types. /// [global::Newtonsoft.Json.JsonProperty("data_source_type")] - public global::G.AnyOf? DataSourceType { get; set; } + public global::G.RunsFilterDataSourceTypeEnum? DataSourceType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("cursor")] - public global::G.AnyOf? Cursor { get; set; } + public string? Cursor { get; set; } /// /// Default Value: 100 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs index 1ebb8f9572..0f8f6e8bd3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Enum for dataset data types. @@ -51,7 +49,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExport.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExport.g.verified.cs index 834a831855..570dabc0f1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExport.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExport.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExport.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -81,7 +79,7 @@ public sealed partial class BulkExport /// /// [global::Newtonsoft.Json.JsonProperty("finished_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf FinishedAt { get; set; } = default!; + public global::System.DateTime? FinishedAt { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs index b0fa567863..3b8064684f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExportDestinationS3Config.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,19 +19,19 @@ public sealed partial class BulkExportDestinationS3Config /// /// [global::Newtonsoft.Json.JsonProperty("prefix", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf Prefix { get; set; } = default!; + public string? Prefix { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("region")] - public global::G.AnyOf? Region { get; set; } + public string? Region { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("endpoint_url")] - public global::G.AnyOf? EndpointUrl { get; set; } + public string? EndpointUrl { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportRun.g.verified.cs index 86b4f0f178..32a17d7cb9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BulkExportRun.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExportRun.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,7 +43,7 @@ public sealed partial class BulkExportRun /// /// [global::Newtonsoft.Json.JsonProperty("errors")] - public global::G.AnyOf? Errors { get; set; } + public object? Errors { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class BulkExportRun /// /// [global::Newtonsoft.Json.JsonProperty("finished_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf FinishedAt { get; set; } = default!; + public global::System.DateTime? FinishedAt { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Comment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Comment.g.verified.cs index 2a723a223c..d88083b26e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Comment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Comment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Comment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("comment_by")] - public global::G.AnyOf? CommentBy { get; set; } + public global::System.Guid? CommentBy { get; set; } /// /// @@ -33,7 +31,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("parent_id")] - public global::G.AnyOf? ParentId { get; set; } + public global::System.Guid? ParentId { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("comment_by_name")] - public global::G.AnyOf? CommentByName { get; set; } + public string? CommentByName { get; set; } /// /// @@ -75,7 +73,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("liked_by_auth_user")] - public global::G.AnyOf? LikedByAuthUser { get; set; } + public bool? LikedByAuthUser { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitManifestResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitManifestResponse.g.verified.cs index 1db84bd5f1..2d842da8d5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitManifestResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitManifestResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CommitManifestResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CommitManifestResponse /// /// [global::Newtonsoft.Json.JsonProperty("examples")] - public global::G.AnyOf, object>? Examples { get; set; } + public global::System.Collections.Generic.IList? Examples { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitWithLookups.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitWithLookups.g.verified.cs index 756fcf53dc..6766bcdb1e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitWithLookups.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CommitWithLookups.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CommitWithLookups.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class CommitWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("parent_id")] - public global::G.AnyOf? ParentId { get; set; } + public global::System.Guid? ParentId { get; set; } /// /// @@ -75,7 +73,7 @@ public sealed partial class CommitWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("parent_commit_hash")] - public global::G.AnyOf? ParentCommitHash { get; set; } + public string? ParentCommitHash { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperiment.g.verified.cs index 1eabac7217..6c5199b53a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperiment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperiment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -69,7 +67,7 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentBase.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentBase.g.verified.cs index 564743a86c..1d513365f1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentBase.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentBase.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperimentBase.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class ComparativeExperimentBase /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class ComparativeExperimentBase /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs index e590b8d2db..70d12d5cda 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperimentCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,13 +25,13 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateEventRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateEventRequest.g.verified.cs index 6beb89214b..9976d8bc6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateEventRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateEventRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateEventRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class CreateEventRequest /// /// [global::Newtonsoft.Json.JsonProperty("commit")] - public global::G.AnyOf? Commit { get; set; } + public string? Commit { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs index eff969e48a..9cbb82d85d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateFeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CreateFeedbackConfigSchema /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } = false; + public bool? IsLowerScoreBetter { get; set; } = false; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs index 952094bbb9..33eccfd666 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateRepoCommitRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CreateRepoCommitRequest /// /// [global::Newtonsoft.Json.JsonProperty("parent_commit")] - public global::G.AnyOf? ParentCommit { get; set; } + public string? ParentCommit { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("example_run_ids")] - public global::G.AnyOf, object>? ExampleRunIds { get; set; } + public global::System.Collections.Generic.IList? ExampleRunIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoRequest.g.verified.cs index 0a9997c2fe..4157ffa210 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CreateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// @@ -39,7 +37,7 @@ public sealed partial class CreateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs index 14cd9f90d1..4268cbc6db 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CreateRunRequest /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// @@ -33,103 +33,103 @@ public sealed partial class CreateRunRequest /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.OneOf? StartTime { get; set; } + public global::G.OneOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.OneOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_id")] - public global::G.OneOf? TraceId { get; set; } + public global::System.Guid? TraceId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::G.OneOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.OneOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.OneOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEvent.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEvent.g.verified.cs index b49d9ddb14..573de78d37 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunSchemaEventsVariant1Item.g.cs +//HintName: G.Models.CreateRunRequestEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunSchemaEventsVariant1Item + public sealed partial class CreateRunRequestEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreate.g.verified.cs index a320c7bc42..ff0135a5b2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CustomChartCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// Enum for custom chart types. @@ -45,19 +43,19 @@ public sealed partial class CustomChartCreate /// /// [global::Newtonsoft.Json.JsonProperty("section_id")] - public global::G.AnyOf? SectionId { get; set; } + public global::System.Guid? SectionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreatePreview.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreatePreview.g.verified.cs index 6005cd39b0..74b0621cb3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreatePreview.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreatePreview.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartCreatePreview.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class CustomChartCreatePreview /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartResponse.g.verified.cs index 080e17fd59..315132a53e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -51,13 +49,13 @@ public sealed partial class CustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("series", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf, object> Series { get; set; } = default!; + public global::System.Collections.Generic.IList? Series { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeries.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeries.g.verified.cs index 8d2e43c482..1bb21eaa1b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeries.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeries.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeries.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class CustomChartSeries /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -33,7 +31,7 @@ public sealed partial class CustomChartSeries /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs index 924908b676..9e99c97db3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -33,7 +31,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs index 92550bdae1..8f7bc14b7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesFilters.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,25 +13,25 @@ public sealed partial class CustomChartSeriesFilters /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs index 1c4e5aeb3c..2a7badf5c7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -33,13 +31,13 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartUpdate.g.verified.cs index 8e9d0f061c..0ca68c4291 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartUpdate.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CustomChartUpdate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -51,13 +51,13 @@ public sealed partial class CustomChartUpdate /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.AnyOf? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsDataPoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsDataPoint.g.verified.cs index 5c0abcbc71..e926010851 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsDataPoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsDataPoint.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class CustomChartsDataPoint /// /// [global::Newtonsoft.Json.JsonProperty("value", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf Value { get; set; } = default!; + public global::G.AnyOf? Value { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequest.g.verified.cs index 4d42bf2390..a619203fc1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CustomChartsRequest /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Timedelta input. @@ -39,13 +37,13 @@ public sealed partial class CustomChartsRequest /// /// [global::Newtonsoft.Json.JsonProperty("after_index")] - public global::G.AnyOf? AfterIndex { get; set; } + public int? AfterIndex { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tag_value_id")] - public global::G.AnyOf, object>? TagValueId { get; set; } + public global::System.Collections.Generic.IList? TagValueId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequestBase.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequestBase.g.verified.cs index e7c39baa8b..deae046124 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequestBase.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsRequestBase.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsRequestBase.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CustomChartsRequestBase /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Timedelta input. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSection.g.verified.cs index 55dab9c01c..5ccc30ccfc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSection.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSection.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CustomChartsSection /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs index 36d58695a5..83db899eac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSectionCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CustomChartsSectionCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs index a5b8019329..5408a57f6e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSectionResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// @@ -39,19 +37,19 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::Newtonsoft.Json.JsonProperty("chart_count")] - public global::G.AnyOf? ChartCount { get; set; } + public int? ChartCount { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs index e422add8da..d1fb9b58e6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CustomChartsSectionUpdate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs index 072d8ff1c9..41518e6986 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomerVisiblePlanInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class CustomerVisiblePlanInfo /// /// [global::Newtonsoft.Json.JsonProperty("ends_on")] - public global::G.AnyOf? EndsOn { get; set; } + public global::System.DateTime? EndsOn { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Dataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Dataset.g.verified.cs index fa33bce85d..f74c9c4cf8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Dataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Dataset.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Dataset.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class Dataset /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -33,25 +31,25 @@ public sealed partial class Dataset /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + public global::G.DataType? DataType { get; set; } /// /// @@ -87,7 +85,7 @@ public sealed partial class Dataset /// /// [global::Newtonsoft.Json.JsonProperty("last_session_start_time")] - public global::G.AnyOf? LastSessionStartTime { get; set; } + public global::System.DateTime? LastSessionStartTime { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetCreate.g.verified.cs index 5835bf6f87..9a849d627a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class DatasetCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -33,31 +31,31 @@ public sealed partial class DatasetCreate /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Enum for dataset data types. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexInfo.g.verified.cs index 097dd4ecf9..cc70ba42d2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetIndexInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class DatasetIndexInfo /// Default Value: latest /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::G.AnyOf? Tag { get; set; } = "latest"; + public string? Tag { get; set; } = "latest"; /// /// /// [global::Newtonsoft.Json.JsonProperty("last_updated_version")] - public global::G.AnyOf? LastUpdatedVersion { get; set; } + public global::System.DateTime? LastUpdatedVersion { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexRequest.g.verified.cs index 7d6da39467..c205ea4481 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetIndexRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class DatasetIndexRequest /// Default Value: latest /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::G.AnyOf? Tag { get; set; } = "latest"; + public string? Tag { get; set; } = "latest"; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetPublicSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetPublicSchema.g.verified.cs index e9d11090df..b94d1c45f7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetPublicSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetPublicSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetPublicSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,7 +21,7 @@ public sealed partial class DatasetPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -35,25 +33,25 @@ public sealed partial class DatasetPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + public global::G.DataType? DataType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs index d21d3abe33..cc5f71fe28 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetSchemaForUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class DatasetSchemaForUpdate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -33,25 +31,25 @@ public sealed partial class DatasetSchemaForUpdate /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + public global::G.DataType? DataType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetUpdate.g.verified.cs index 220a16f986..f85d3b77e5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetUpdate.g.verified.cs @@ -15,31 +15,31 @@ public sealed partial class DatasetUpdate /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("patch_examples")] - public global::G.AnyOf, object>? PatchExamples { get; set; } + public global::System.Collections.Generic.Dictionary? PatchExamples { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetVersion.g.verified.cs index fc0ee4e11d..869963a3d1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetVersion.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetVersion.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class DatasetVersion /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs index 6a34c39ae9..f8708b9f8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.EvaluatorStructuredOutput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,31 +13,31 @@ public sealed partial class EvaluatorStructuredOutput /// /// [global::Newtonsoft.Json.JsonProperty("hub_ref")] - public global::G.AnyOf? HubRef { get; set; } + public string? HubRef { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt")] - public global::G.AnyOf>, object>? Prompt { get; set; } + public global::System.Collections.Generic.IList>? Prompt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("template_format")] - public global::G.AnyOf? TemplateFormat { get; set; } + public string? TemplateFormat { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("schema")] - public global::G.AnyOf? Schema { get; set; } + public object? Schema { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("variable_mapping")] - public global::G.AnyOf, object>? VariableMapping { get; set; } + public global::System.Collections.Generic.Dictionary? VariableMapping { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Example.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Example.g.verified.cs index 1b78496a36..f6e0183d45 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Example.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Example.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Example.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,13 +25,13 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleBulkCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleBulkCreate.g.verified.cs index 2a195fbf57..8dda58cadc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleBulkCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleBulkCreate.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ExampleBulkCreate /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,31 +27,31 @@ public sealed partial class ExampleBulkCreate /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// Default Value: base /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::G.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string>? Split { get; set; } = "base"; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Default Value: false @@ -63,7 +63,7 @@ public sealed partial class ExampleBulkCreate /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleCreate.g.verified.cs index 7a17cbcca8..648255de55 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleCreate.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ExampleCreate /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,31 +27,31 @@ public sealed partial class ExampleCreate /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// Default Value: base /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::G.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string>? Split { get; set; } = "base"; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdate.g.verified.cs index 2e17b044bb..262a9763aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdate.g.verified.cs @@ -15,31 +15,31 @@ public sealed partial class ExampleUpdate /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::G.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string>? Split { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdateWithID.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdateWithID.g.verified.cs index 21d19f3661..5471bf396c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdateWithID.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleUpdateWithID.g.verified.cs @@ -15,31 +15,31 @@ public sealed partial class ExampleUpdateWithID /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::G.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string>? Split { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRuns.g.verified.cs index 2e13c5b0ff..a3d15b2b9b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExampleWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,13 +25,13 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRunsCH.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRunsCH.g.verified.cs index 5e14578d28..e41ea88f15 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRunsCH.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExampleWithRunsCH.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExampleWithRunsCH.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,13 +25,13 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultRow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultRow.g.verified.cs index 115b3496f6..697f1edc9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultRow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultRow.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExperimentResultRow.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("row_id")] - public global::G.AnyOf? RowId { get; set; } + public global::System.Guid? RowId { get; set; } /// /// @@ -27,19 +25,19 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("expected_outputs")] - public global::G.AnyOf? ExpectedOutputs { get; set; } + public object? ExpectedOutputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("actual_outputs")] - public global::G.AnyOf? ActualOutputs { get; set; } + public object? ActualOutputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluation_scores")] - public global::G.AnyOf, object>? EvaluationScores { get; set; } + public global::System.Collections.Generic.IList? EvaluationScores { get; set; } /// /// @@ -57,19 +55,19 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_metadata")] - public global::G.AnyOf? RunMetadata { get; set; } + public object? RunMetadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultsUpload.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultsUpload.g.verified.cs index f402ffef79..06e52abe8e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultsUpload.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ExperimentResultsUpload.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExperimentResultsUpload.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,31 +19,31 @@ public sealed partial class ExperimentResultsUpload /// /// [global::Newtonsoft.Json.JsonProperty("experiment_description")] - public global::G.AnyOf? ExperimentDescription { get; set; } + public string? ExperimentDescription { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_description")] - public global::G.AnyOf? DatasetDescription { get; set; } + public string? DatasetDescription { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("summary_experiment_scores")] - public global::G.AnyOf, object>? SummaryExperimentScores { get; set; } + public global::System.Collections.Generic.IList? SummaryExperimentScores { get; set; } /// /// @@ -69,7 +67,7 @@ public sealed partial class ExperimentResultsUpload /// /// [global::Newtonsoft.Json.JsonProperty("experiment_metadata")] - public global::G.AnyOf? ExperimentMetadata { get; set; } + public object? ExperimentMetadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCategory.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCategory.g.verified.cs index 1958a044ea..beeff46b2f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCategory.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCategory.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackCategory.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class FeedbackCategory /// /// [global::Newtonsoft.Json.JsonProperty("label")] - public global::G.AnyOf? Label { get; set; } + public string? Label { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfig.g.verified.cs index f5c81f9cfb..9eaa74a668 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfig.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackConfig.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,19 +19,19 @@ public sealed partial class FeedbackConfig /// /// [global::Newtonsoft.Json.JsonProperty("min")] - public global::G.AnyOf? Min { get; set; } + public double? Min { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("max")] - public global::G.AnyOf? Max { get; set; } + public double? Max { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("categories")] - public global::G.AnyOf, object>? Categories { get; set; } + public global::System.Collections.Generic.IList? Categories { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfigSchema.g.verified.cs index 65ad481ec9..449e07da4d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,7 +37,7 @@ public sealed partial class FeedbackConfigSchema /// /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } + public bool? IsLowerScoreBetter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs index 1ef3a54ba4..6666089720 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs @@ -33,37 +33,37 @@ public sealed partial class FeedbackCreateCoreSchema /// /// [global::Newtonsoft.Json.JsonProperty("score")] - public global::G.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::G.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// @@ -75,13 +75,13 @@ public sealed partial class FeedbackCreateCoreSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::G.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateSchema.g.verified.cs index 28c91f6b01..2b7daa8d1b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateSchema.g.verified.cs @@ -33,49 +33,49 @@ public sealed partial class FeedbackCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("score")] - public global::G.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::G.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// @@ -87,13 +87,13 @@ public sealed partial class FeedbackCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::G.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs index 9c47a73db2..b0be97db7f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs @@ -15,31 +15,31 @@ public sealed partial class FeedbackCreateWithTokenExtendedSchema /// /// [global::Newtonsoft.Json.JsonProperty("score")] - public global::G.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::G.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs index 4a54203f24..599f769058 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackIngestTokenCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,16 +10,16 @@ namespace G public sealed partial class FeedbackIngestTokenCreateSchema { /// - /// + /// Timedelta input. /// [global::Newtonsoft.Json.JsonProperty("expires_in")] - public global::G.AnyOf? ExpiresIn { get; set; } + public global::G.TimedeltaInput? ExpiresIn { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("expires_at")] - public global::G.AnyOf? ExpiresAt { get; set; } + public global::System.DateTime? ExpiresAt { get; set; } /// /// @@ -39,7 +37,7 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSchema.g.verified.cs index 47ac194292..06a85bba42 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSchema.g.verified.cs @@ -33,49 +33,49 @@ public sealed partial class FeedbackSchema /// /// [global::Newtonsoft.Json.JsonProperty("score")] - public global::G.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::G.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// @@ -84,10 +84,10 @@ public sealed partial class FeedbackSchema public global::System.Guid Id { get; set; } = default!; /// - /// + /// The feedback source loaded from the database. /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::G.AnyOf? FeedbackSource { get; set; } + public global::G.FeedbackSource3? FeedbackSource { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource3.g.verified.cs similarity index 69% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource4.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource3.g.verified.cs index 56f55d42e2..0429aed97e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackSource3.g.verified.cs @@ -1,6 +1,4 @@ -//HintName: G.Models.FeedbackSource4.g.cs - -#pragma warning disable CS0618 // Type or member is obsolete +//HintName: G.Models.FeedbackSource3.g.cs #nullable enable @@ -9,25 +7,25 @@ namespace G /// /// The feedback source loaded from the database. /// - public sealed partial class FeedbackSource4 + public sealed partial class FeedbackSource3 { /// /// /// [global::Newtonsoft.Json.JsonProperty("type")] - public global::G.AnyOf? Type { get; set; } + public string? Type { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs index e283e5b319..4885b1ff01 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs @@ -15,31 +15,31 @@ public sealed partial class FeedbackUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("score")] - public global::G.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::G.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs index 5e5b9720e5..8da1841d23 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterQueryParamsForRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,97 +13,97 @@ public sealed partial class FilterQueryParamsForRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace")] - public global::G.AnyOf? Trace { get; set; } + public global::System.Guid? Trace { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run")] - public global::G.AnyOf? ParentRun { get; set; } + public global::System.Guid? ParentRun { get; set; } /// - /// + /// Enum for run types. /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::G.AnyOf? RunType { get; set; } + public global::G.RunTypeEnum? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example")] - public global::G.AnyOf, object>? ReferenceExample { get; set; } + public global::System.Collections.Generic.IList? ReferenceExample { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("execution_order")] - public global::G.AnyOf? ExecutionOrder { get; set; } + public int? ExecutionOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public bool? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("query")] - public global::G.AnyOf? Query { get; set; } + public string? Query { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_root")] - public global::G.AnyOf? IsRoot { get; set; } + public bool? IsRoot { get; set; } /// - /// + /// Enum for run data source types. /// [global::Newtonsoft.Json.JsonProperty("data_source_type")] - public global::G.AnyOf? DataSourceType { get; set; } + public global::G.RunsFilterDataSourceTypeEnum? DataSourceType { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterView.g.verified.cs index 140e6f7cee..cf5d0ecfe2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterView.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterView.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,19 +13,19 @@ public sealed partial class FilterView /// /// [global::Newtonsoft.Json.JsonProperty("filter_string")] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter_string")] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter_string")] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// @@ -39,7 +37,7 @@ public sealed partial class FilterView /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -51,7 +49,7 @@ public sealed partial class FilterView /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewCreate.g.verified.cs index 5192ca0a6f..68085dbcdd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterViewCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,19 +13,19 @@ public sealed partial class FilterViewCreate /// /// [global::Newtonsoft.Json.JsonProperty("filter_string")] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter_string")] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter_string")] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// @@ -39,7 +37,7 @@ public sealed partial class FilterViewCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewUpdate.g.verified.cs index 5b9fc94f14..dacabbe5ab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.FilterViewUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterViewUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,31 +13,31 @@ public sealed partial class FilterViewUpdate /// /// [global::Newtonsoft.Json.JsonProperty("filter_string")] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter_string")] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter_string")] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ForkRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ForkRepoRequest.g.verified.cs index a355af88a4..acd567a924 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ForkRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ForkRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ForkRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,25 +19,25 @@ public sealed partial class ForkRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_public")] - public global::G.AnyOf? IsPublic { get; set; } + public bool? IsPublic { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs index 0139a7d846..5abfa91962 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.GenerateSyntheticExamplesBody.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class GenerateSyntheticExamplesBody /// /// [global::Newtonsoft.Json.JsonProperty("example_ids")] - public global::G.AnyOf, object>? ExampleIds { get; set; } + public global::System.Collections.Generic.IList? ExampleIds { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Identity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Identity.g.verified.cs index 6bd9ac7f12..2ba29e8e0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Identity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Identity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Identity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -57,13 +55,13 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs index 3026dc70af..f4d511ae12 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class IdentityAnnotationQueueRunStatusCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("status")] - public global::G.AnyOf? Status { get; set; } + public string? Status { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("override_added_at")] - public global::G.AnyOf? OverrideAddedAt { get; set; } + public global::System.DateTime? OverrideAddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityCreate.g.verified.cs index 9103bbead1..19240a863b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class IdentityCreate /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityPatch.g.verified.cs index 99b14f6873..039acf3ef4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.IdentityPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class IdentityPatch /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.InfoGetResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.InfoGetResponse.g.verified.cs index 5378e59208..fc5b175ae6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.InfoGetResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.InfoGetResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.InfoGetResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class InfoGetResponse /// /// [global::Newtonsoft.Json.JsonProperty("license_expiration_time")] - public global::G.AnyOf? LicenseExpirationTime { get; set; } + public global::System.DateTime? LicenseExpirationTime { get; set; } /// /// Batch ingest config. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs index 986c364363..5f38467c47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListPublicDatasetRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class ListPublicDatasetRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("cursors", Required = global::Newtonsoft.Json.Required.Always)] - public object Cursors { get; set; } = default!; + public global::System.Collections.Generic.Dictionary Cursors { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicRunsResponse.g.verified.cs index 474063f4ab..7700775221 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListPublicRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListPublicRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class ListPublicRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("cursors", Required = global::Newtonsoft.Json.Required.Always)] - public object Cursors { get; set; } = default!; + public global::System.Collections.Generic.Dictionary Cursors { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs similarity index 71% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs index 41b413c5f2..d6e291ad13 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.cs +//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum ListRepoTagsApiV1ReposTagsGetIsArchived2 + public enum ListRepoTagsApiV1ReposTagsGetIsArchived { /// /// @@ -30,31 +30,31 @@ public enum ListRepoTagsApiV1ReposTagsGetIsArchived2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions + public static class ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsArchived2 value) + public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsArchived value) { return value switch { - ListRepoTagsApiV1ReposTagsGetIsArchived2.True => "true", - ListRepoTagsApiV1ReposTagsGetIsArchived2.Allow => "allow", - ListRepoTagsApiV1ReposTagsGetIsArchived2.False => "false", + ListRepoTagsApiV1ReposTagsGetIsArchived.True => "true", + ListRepoTagsApiV1ReposTagsGetIsArchived.Allow => "allow", + ListRepoTagsApiV1ReposTagsGetIsArchived.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRepoTagsApiV1ReposTagsGetIsArchived2? ToEnum(string value) + public static ListRepoTagsApiV1ReposTagsGetIsArchived? ToEnum(string value) { return value switch { - "true" => ListRepoTagsApiV1ReposTagsGetIsArchived2.True, - "allow" => ListRepoTagsApiV1ReposTagsGetIsArchived2.Allow, - "false" => ListRepoTagsApiV1ReposTagsGetIsArchived2.False, + "true" => ListRepoTagsApiV1ReposTagsGetIsArchived.True, + "allow" => ListRepoTagsApiV1ReposTagsGetIsArchived.Allow, + "false" => ListRepoTagsApiV1ReposTagsGetIsArchived.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs similarity index 68% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs index 86c280ebb5..21f5711482 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.cs +//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum ListRepoTagsApiV1ReposTagsGetIsPublic2 + public enum ListRepoTagsApiV1ReposTagsGetIsPublic { /// /// @@ -25,29 +25,29 @@ public enum ListRepoTagsApiV1ReposTagsGetIsPublic2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions + public static class ListRepoTagsApiV1ReposTagsGetIsPublicExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsPublic2 value) + public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsPublic value) { return value switch { - ListRepoTagsApiV1ReposTagsGetIsPublic2.True => "true", - ListRepoTagsApiV1ReposTagsGetIsPublic2.False => "false", + ListRepoTagsApiV1ReposTagsGetIsPublic.True => "true", + ListRepoTagsApiV1ReposTagsGetIsPublic.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRepoTagsApiV1ReposTagsGetIsPublic2? ToEnum(string value) + public static ListRepoTagsApiV1ReposTagsGetIsPublic? ToEnum(string value) { return value switch { - "true" => ListRepoTagsApiV1ReposTagsGetIsPublic2.True, - "false" => ListRepoTagsApiV1ReposTagsGetIsPublic2.False, + "true" => ListRepoTagsApiV1ReposTagsGetIsPublic.True, + "false" => ListRepoTagsApiV1ReposTagsGetIsPublic.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs similarity index 64% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs index f7b31aa31d..cb867edb04 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListReposApiV1ReposGetIsArchived2.g.cs +//HintName: G.Models.ListReposApiV1ReposGetIsArchived.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum ListReposApiV1ReposGetIsArchived2 + public enum ListReposApiV1ReposGetIsArchived { /// /// @@ -30,31 +30,31 @@ public enum ListReposApiV1ReposGetIsArchived2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListReposApiV1ReposGetIsArchived2Extensions + public static class ListReposApiV1ReposGetIsArchivedExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListReposApiV1ReposGetIsArchived2 value) + public static string ToValueString(this ListReposApiV1ReposGetIsArchived value) { return value switch { - ListReposApiV1ReposGetIsArchived2.True => "true", - ListReposApiV1ReposGetIsArchived2.Allow => "allow", - ListReposApiV1ReposGetIsArchived2.False => "false", + ListReposApiV1ReposGetIsArchived.True => "true", + ListReposApiV1ReposGetIsArchived.Allow => "allow", + ListReposApiV1ReposGetIsArchived.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListReposApiV1ReposGetIsArchived2? ToEnum(string value) + public static ListReposApiV1ReposGetIsArchived? ToEnum(string value) { return value switch { - "true" => ListReposApiV1ReposGetIsArchived2.True, - "allow" => ListReposApiV1ReposGetIsArchived2.Allow, - "false" => ListReposApiV1ReposGetIsArchived2.False, + "true" => ListReposApiV1ReposGetIsArchived.True, + "allow" => ListReposApiV1ReposGetIsArchived.Allow, + "false" => ListReposApiV1ReposGetIsArchived.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs similarity index 67% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs index 4db1b71aba..235ae2167e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListReposApiV1ReposGetIsPublic2.g.cs +//HintName: G.Models.ListReposApiV1ReposGetIsPublic.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum ListReposApiV1ReposGetIsPublic2 + public enum ListReposApiV1ReposGetIsPublic { /// /// @@ -25,29 +25,29 @@ public enum ListReposApiV1ReposGetIsPublic2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListReposApiV1ReposGetIsPublic2Extensions + public static class ListReposApiV1ReposGetIsPublicExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListReposApiV1ReposGetIsPublic2 value) + public static string ToValueString(this ListReposApiV1ReposGetIsPublic value) { return value switch { - ListReposApiV1ReposGetIsPublic2.True => "true", - ListReposApiV1ReposGetIsPublic2.False => "false", + ListReposApiV1ReposGetIsPublic.True => "true", + ListReposApiV1ReposGetIsPublic.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListReposApiV1ReposGetIsPublic2? ToEnum(string value) + public static ListReposApiV1ReposGetIsPublic? ToEnum(string value) { return value switch { - "true" => ListReposApiV1ReposGetIsPublic2.True, - "false" => ListReposApiV1ReposGetIsPublic2.False, + "true" => ListReposApiV1ReposGetIsPublic.True, + "false" => ListReposApiV1ReposGetIsPublic.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs similarity index 66% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs index 65e61e04f3..e22f910ce9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRulesApiV1RunsRulesGetType2.g.cs +//HintName: G.Models.ListRulesApiV1RunsRulesGetType.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum ListRulesApiV1RunsRulesGetType2 + public enum ListRulesApiV1RunsRulesGetType { /// /// @@ -25,29 +25,29 @@ public enum ListRulesApiV1RunsRulesGetType2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRulesApiV1RunsRulesGetType2Extensions + public static class ListRulesApiV1RunsRulesGetTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRulesApiV1RunsRulesGetType2 value) + public static string ToValueString(this ListRulesApiV1RunsRulesGetType value) { return value switch { - ListRulesApiV1RunsRulesGetType2.Session => "session", - ListRulesApiV1RunsRulesGetType2.Dataset => "dataset", + ListRulesApiV1RunsRulesGetType.Session => "session", + ListRulesApiV1RunsRulesGetType.Dataset => "dataset", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRulesApiV1RunsRulesGetType2? ToEnum(string value) + public static ListRulesApiV1RunsRulesGetType? ToEnum(string value) { return value switch { - "session" => ListRulesApiV1RunsRulesGetType2.Session, - "dataset" => ListRulesApiV1RunsRulesGetType2.Dataset, + "session" => ListRulesApiV1RunsRulesGetType.Session, + "dataset" => ListRulesApiV1RunsRulesGetType.Dataset, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRunsResponse.g.verified.cs index 8c6f838dee..25d0901ff3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class ListRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("cursors", Required = global::Newtonsoft.Json.Required.Always)] - public object Cursors { get; set; } = default!; + public global::System.Collections.Generic.Dictionary Cursors { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MemberIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MemberIdentity.g.verified.cs index eecb00f1d2..7e253da0fb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MemberIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MemberIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MemberIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -57,13 +55,13 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// @@ -75,19 +73,19 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelFeedbackSource.g.verified.cs index 23af59bc2d..beed78376f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ModelFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class ModelFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs index a430c9c830..2a27e76225 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class ModelPriceMapCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -51,7 +51,7 @@ public sealed partial class ModelPriceMapCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("provider")] - public global::G.AnyOf? Provider { get; set; } + public string? Provider { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs index 476b48ae63..fe11ea0888 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class ModelPriceMapUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -51,7 +51,7 @@ public sealed partial class ModelPriceMapUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("provider")] - public global::G.AnyOf? Provider { get; set; } + public string? Provider { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorBlock.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorBlock.g.verified.cs index 6739ebf0bd..f282d69f9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorBlock.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorBlock.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MonitorBlock.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class MonitorBlock /// /// [global::Newtonsoft.Json.JsonProperty("subtitle")] - public global::G.AnyOf? Subtitle { get; set; } + public string? Subtitle { get; set; } /// /// @@ -51,13 +49,13 @@ public sealed partial class MonitorBlock /// /// [global::Newtonsoft.Json.JsonProperty("click_target")] - public global::G.AnyOf? ClickTarget { get; set; } + public string? ClickTarget { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("toggleable_marks")] - public global::G.AnyOf>, object>? ToggleableMarks { get; set; } + public global::System.Collections.Generic.Dictionary>? ToggleableMarks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorGroupSpec.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorGroupSpec.g.verified.cs index 8758a90b7d..3d61eb4ca7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorGroupSpec.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorGroupSpec.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MonitorGroupSpec.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class MonitorGroupSpec /// /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::G.AnyOf? Tag { get; set; } + public string? Tag { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public global::G.MetadataKeyValue? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptRequest.g.verified.cs index b55d1034ae..70f1166e74 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OptimizePromptRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class OptimizePromptRequest /// /// [global::Newtonsoft.Json.JsonProperty("overall_feedback", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf OverallFeedback { get; set; } = default!; + public string? OverallFeedback { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptResponse.g.verified.cs index a65d0f8cf6..13f63a1e91 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OptimizePromptResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OptimizePromptResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class OptimizePromptResponse /// /// [global::Newtonsoft.Json.JsonProperty("error", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf Error { get; set; } = default!; + public string? Error { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgIdentityPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgIdentityPatch.g.verified.cs index 037fbc089f..f438fc9b23 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgIdentityPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgIdentityPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgIdentityPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,19 +13,19 @@ public sealed partial class OrgIdentityPatch /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgMemberIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgMemberIdentity.g.verified.cs index bd03fa0c30..c7168bdedb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgMemberIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgMemberIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgMemberIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -57,13 +55,13 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// @@ -75,19 +73,19 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgPendingIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgPendingIdentity.g.verified.cs index 5b3cbed05c..b9cf09546d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgPendingIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrgPendingIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgPendingIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,31 +25,31 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// @@ -69,19 +67,19 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -93,7 +91,7 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Organization.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Organization.g.verified.cs index fbffdfe6a8..ff2a3bcbe0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Organization.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Organization.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Organization.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -51,13 +49,13 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::G.AnyOf? Tier { get; set; } + public global::G.PaymentPlanTier? Tier { get; set; } /// - /// + /// Stripe customer billing info. /// [global::Newtonsoft.Json.JsonProperty("payment_method")] - public global::G.AnyOf? PaymentMethod { get; set; } + public global::G.StripePaymentMethodInfo? PaymentMethod { get; set; } /// /// @@ -69,19 +67,19 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("end_of_billing_period")] - public global::G.AnyOf? EndOfBillingPeriod { get; set; } + public global::System.DateTime? EndOfBillingPeriod { get; set; } /// - /// + /// Customer visible plan information. /// [global::Newtonsoft.Json.JsonProperty("current_plan")] - public global::G.AnyOf? CurrentPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? CurrentPlan { get; set; } /// - /// + /// Customer visible plan information. /// [global::Newtonsoft.Json.JsonProperty("upcoming_plan")] - public global::G.AnyOf? UpcomingPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? UpcomingPlan { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationBillingInfo.g.verified.cs index f053a45fc5..227d404130 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationBillingInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationBillingInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationBillingInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class OrganizationBillingInfo /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// @@ -51,31 +49,31 @@ public sealed partial class OrganizationBillingInfo /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::G.AnyOf? Tier { get; set; } + public global::G.PaymentPlanTier? Tier { get; set; } /// - /// + /// Stripe customer billing info. /// [global::Newtonsoft.Json.JsonProperty("payment_method")] - public global::G.AnyOf? PaymentMethod { get; set; } + public global::G.StripePaymentMethodInfo? PaymentMethod { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_of_billing_period")] - public global::G.AnyOf? EndOfBillingPeriod { get; set; } + public global::System.DateTime? EndOfBillingPeriod { get; set; } /// - /// + /// Customer visible plan information. /// [global::Newtonsoft.Json.JsonProperty("current_plan")] - public global::G.AnyOf? CurrentPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? CurrentPlan { get; set; } /// - /// + /// Customer visible plan information. /// [global::Newtonsoft.Json.JsonProperty("upcoming_plan")] - public global::G.AnyOf? UpcomingPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? UpcomingPlan { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationConfig.g.verified.cs index e692fa7faa..7d81a0e2d5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationConfig.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationConfig.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,19 +37,19 @@ public sealed partial class OrganizationConfig /// /// [global::Newtonsoft.Json.JsonProperty("startup_plan_approval_date")] - public global::G.AnyOf? StartupPlanApprovalDate { get; set; } + public string? StartupPlanApprovalDate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("partner_plan_approval_date")] - public global::G.AnyOf? PartnerPlanApprovalDate { get; set; } + public string? PartnerPlanApprovalDate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("premier_plan_approval_date")] - public global::G.AnyOf? PremierPlanApprovalDate { get; set; } + public string? PremierPlanApprovalDate { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationInfo.g.verified.cs index 6bc00145a6..5b382af13d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class OrganizationInfo /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -39,7 +37,7 @@ public sealed partial class OrganizationInfo /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::G.AnyOf? Tier { get; set; } + public global::G.PaymentPlanTier? Tier { get; set; } /// /// Default Value: false @@ -69,7 +67,7 @@ public sealed partial class OrganizationInfo /// /// [global::Newtonsoft.Json.JsonProperty("sso_login_slug")] - public global::G.AnyOf? SsoLoginSlug { get; set; } + public string? SsoLoginSlug { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs index 4f95cfb0bc..7e5e8ff1c1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationPGSchemaSlim.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,19 +25,19 @@ public sealed partial class OrganizationPGSchemaSlim /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("created_by_user_id")] - public global::G.AnyOf? CreatedByUserId { get; set; } + public global::System.Guid? CreatedByUserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class OrganizationPGSchemaSlim /// /// [global::Newtonsoft.Json.JsonProperty("sso_login_slug")] - public global::G.AnyOf? SsoLoginSlug { get; set; } + public string? SsoLoginSlug { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationUpdate.g.verified.cs index 3cc1ec8ebe..d23da96c7f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.OrganizationUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class OrganizationUpdate /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentity.g.verified.cs index 7a95ecfded..1117bd2064 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PendingIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,31 +25,31 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// @@ -69,19 +67,19 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -93,7 +91,7 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentityCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentityCreate.g.verified.cs index 154304f4a6..a45e5a3652 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentityCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PendingIdentityCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PendingIdentityCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,31 +25,31 @@ public sealed partial class PendingIdentityCreate /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs index a23a556351..cdb26a557c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundRunOverDatasetRequestSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,25 +25,25 @@ public sealed partial class PlaygroundRunOverDatasetRequestSchema /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::G.AnyOf? RunId { get; set; } + public string? RunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("repo_id")] - public global::G.AnyOf? RepoId { get; set; } + public string? RepoId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::G.AnyOf, object>? Tools { get; set; } + public global::System.Collections.Generic.IList? Tools { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tool_choice")] - public global::G.AnyOf? ToolChoice { get; set; } + public string? ToolChoice { get; set; } /// /// Configuration for a Runnable. @@ -57,7 +55,7 @@ public sealed partial class PlaygroundRunOverDatasetRequestSchema /// /// [global::Newtonsoft.Json.JsonProperty("project_name")] - public global::G.AnyOf? ProjectName { get; set; } + public string? ProjectName { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs similarity index 93% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs index bc44e764f4..d2851f9a33 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.cs +//HintName: G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item + public sealed partial class PlaygroundRunOverDatasetRequestSchemaTool { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs index 73ce189fb7..9608ae0f65 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsCreateRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class PlaygroundSettingsCreateRequest /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs index 4f8527bb65..f694e322bc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class PlaygroundSettingsResponse /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs index c4efe049df..fc76750d11 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsUpdateRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class PlaygroundSettingsUpdateRequest /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ProviderUserSlim.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ProviderUserSlim.g.verified.cs index bc59e8e67c..941071ce56 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ProviderUserSlim.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ProviderUserSlim.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ProviderUserSlim.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class ProviderUserSlim /// /// [global::Newtonsoft.Json.JsonProperty("provider")] - public global::G.AnyOf? Provider { get; set; } + public global::G.AuthProvider? Provider { get; set; } /// /// @@ -33,13 +31,13 @@ public sealed partial class ProviderUserSlim /// /// [global::Newtonsoft.Json.JsonProperty("saml_provider_id")] - public global::G.AnyOf? SamlProviderId { get; set; } + public global::System.Guid? SamlProviderId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("provider_user_id")] - public global::G.AnyOf? ProviderUserId { get; set; } + public global::System.Guid? ProviderUserId { get; set; } /// /// @@ -57,19 +55,19 @@ public sealed partial class ProviderUserSlim /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("email_confirmed_at")] - public global::G.AnyOf? EmailConfirmedAt { get; set; } + public global::System.DateTime? EmailConfirmedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicComparativeExperiment.g.verified.cs index ce83357f84..dfb37ca1f4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicComparativeExperiment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PublicComparativeExperiment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -57,7 +55,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicExampleWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicExampleWithRuns.g.verified.cs index c5ba544f94..03470bf67c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicExampleWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicExampleWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PublicExampleWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -27,13 +25,13 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs index 736395e5dd..e6eb8263c7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryExampleSchemaWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class QueryExampleSchemaWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::G.AnyOf>, object>? Filters { get; set; } + public global::System.Collections.Generic.Dictionary>? Filters { get; set; } /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryFeedbackDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryFeedbackDelta.g.verified.cs index 7061e85529..bcbb0c6a40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryFeedbackDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryFeedbackDelta.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryFeedbackDelta.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::G.AnyOf>, object>? Filters { get; set; } + public global::System.Collections.Generic.Dictionary>? Filters { get; set; } /// /// Default Value: 0 @@ -51,7 +49,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs index 39255e4a07..e7c7cd5334 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryParamsForPublicRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class QueryParamsForPublicRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoExampleResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoExampleResponse.g.verified.cs index 95c2b568ea..2129dc0ad1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoExampleResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoExampleResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RepoExampleResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,19 +19,19 @@ public sealed partial class RepoExampleResponse /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoWithLookups.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoWithLookups.g.verified.cs index b2535925eb..540707658b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoWithLookups.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RepoWithLookups.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RepoWithLookups.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// @@ -75,19 +73,19 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("original_repo_id")] - public global::G.AnyOf? OriginalRepoId { get; set; } + public global::System.Guid? OriginalRepoId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upstream_repo_id")] - public global::G.AnyOf? UpstreamRepoId { get; set; } + public global::System.Guid? UpstreamRepoId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("owner", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf Owner { get; set; } = default!; + public string? Owner { get; set; } = default!; /// /// @@ -117,13 +115,13 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("liked_by_auth_user")] - public global::G.AnyOf? LikedByAuthUser { get; set; } + public bool? LikedByAuthUser { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_commit_hash")] - public global::G.AnyOf? LastCommitHash { get; set; } + public string? LastCommitHash { get; set; } /// /// @@ -135,19 +133,19 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("original_repo_full_name")] - public global::G.AnyOf? OriginalRepoFullName { get; set; } + public string? OriginalRepoFullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upstream_repo_full_name")] - public global::G.AnyOf? UpstreamRepoFullName { get; set; } + public string? UpstreamRepoFullName { get; set; } /// - /// + /// Response model for get_commit_manifest. /// [global::Newtonsoft.Json.JsonProperty("latest_commit_manifest")] - public global::G.AnyOf? LatestCommitManifest { get; set; } + public global::G.CommitManifestResponse? LatestCommitManifest { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Role.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Role.g.verified.cs index 74e38f6c42..a9b07047d8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Role.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Role.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Role.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,7 +37,7 @@ public sealed partial class Role /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -51,7 +49,7 @@ public sealed partial class Role /// /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::G.AnyOf? AccessScope { get; set; } + public global::G.AccessScope? AccessScope { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogActionResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogActionResponse.g.verified.cs index baf0ca179c..a4662007e6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogActionResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogActionResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RuleLogActionResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class RuleLogActionResponse /// /// [global::Newtonsoft.Json.JsonProperty("payload")] - public global::G.AnyOf? Payload { get; set; } + public object? Payload { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogSchema.g.verified.cs index ef180806a3..aed2aee1da 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RuleLogSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RuleLogSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,19 +25,19 @@ public sealed partial class RuleLogSchema /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::G.AnyOf? RunType { get; set; } + public string? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_session_id")] - public global::G.AnyOf? RunSessionId { get; set; } + public global::System.Guid? RunSessionId { get; set; } /// /// @@ -57,31 +55,31 @@ public sealed partial class RuleLogSchema /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue")] - public global::G.AnyOf? AddToAnnotationQueue { get; set; } + public global::G.RuleLogActionResponse? AddToAnnotationQueue { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset")] - public global::G.AnyOf? AddToDataset { get; set; } + public global::G.RuleLogActionResponse? AddToDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::G.AnyOf? Evaluators { get; set; } + public global::G.RuleLogActionResponse? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::G.AnyOf? Alerts { get; set; } + public global::G.RuleLogActionResponse? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks")] - public global::G.AnyOf? Webhooks { get; set; } + public global::G.RuleLogActionResponse? Webhooks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupRequest.g.verified.cs index c28da728ee..980db772f0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunGroupRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,19 +25,19 @@ public sealed partial class RunGroupRequest /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStats.g.verified.cs index bdfba29a44..8b7fb35cef 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStats.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunGroupStats.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,97 +19,97 @@ public sealed partial class RunGroupStats /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("median_tokens")] - public global::G.AnyOf? MedianTokens { get; set; } + public int? MedianTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs index 1012dfec80..6095734ff8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunStatsRunFacetsVariant1Item.g.cs +//HintName: G.Models.RunGroupStatsRunFacet.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunStatsRunFacetsVariant1Item + public sealed partial class RunGroupStatsRunFacet { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs deleted file mode 100644 index af2af21a1d..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.RunGroupStatsRunFacetsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class RunGroupStatsRunFacetsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::Newtonsoft.Json.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs index 5a38093070..439d7621cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunPublicDatasetSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +43,19 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +67,67 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -159,31 +157,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +205,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs similarity index 77% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs index aed0528b49..182617398d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunPublicSchemaEventsVariant1Item.g.cs +//HintName: G.Models.RunPublicDatasetSchemaEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunPublicSchemaEventsVariant1Item + public sealed partial class RunPublicDatasetSchemaEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs deleted file mode 100644 index 82deca6e12..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class RunPublicDatasetSchemaEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::Newtonsoft.Json.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchema.g.verified.cs index 3011f3dc90..8a0dccb490 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunPublicSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +43,19 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +67,67 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -159,31 +157,31 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +205,31 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs similarity index 77% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs index afd612115b..b3fac955bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.CreateRunRequestEventsVariant1Item.g.cs +//HintName: G.Models.RunPublicSchemaEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class CreateRunRequestEventsVariant1Item + public sealed partial class RunPublicSchemaEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesCreateSchema.g.verified.cs index 2f1d4f3b38..d949087e04 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// Default Value: true @@ -33,7 +31,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// @@ -45,25 +43,25 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("backfill_from")] - public global::G.AnyOf? BackfillFrom { get; set; } + public global::System.DateTime? BackfillFrom { get; set; } /// /// Default Value: false @@ -75,7 +73,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("num_few_shot_examples")] - public global::G.AnyOf? NumFewShotExamples { get; set; } + public int? NumFewShotExamples { get; set; } /// /// Default Value: false @@ -87,13 +85,13 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_id")] - public global::G.AnyOf? AddToAnnotationQueueId { get; set; } + public global::System.Guid? AddToAnnotationQueueId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_id")] - public global::G.AnyOf? AddToDatasetId { get; set; } + public global::System.Guid? AddToDatasetId { get; set; } /// /// Default Value: false @@ -105,25 +103,25 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::G.AnyOf, object>? Evaluators { get; set; } + public global::System.Collections.Generic.IList? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("code_evaluators")] - public global::G.AnyOf, object>? CodeEvaluators { get; set; } + public global::System.Collections.Generic.IList? CodeEvaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::G.AnyOf, object>? Alerts { get; set; } + public global::System.Collections.Generic.IList? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks")] - public global::G.AnyOf, object>? Webhooks { get; set; } + public global::System.Collections.Generic.IList? Webhooks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs index 99ea3a6776..cc0b278c58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesPagerdutyAlertSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,10 +10,10 @@ namespace G public sealed partial class RunRulesPagerdutyAlertSchema { /// - /// Default Value: pagerduty + /// Enum for alert types. /// [global::Newtonsoft.Json.JsonProperty("type")] - public global::G.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; + public global::G.RunRulesAlertType? Type { get; set; } /// /// @@ -27,13 +25,13 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// /// [global::Newtonsoft.Json.JsonProperty("summary")] - public global::G.AnyOf? Summary { get; set; } + public string? Summary { get; set; } /// - /// Default Value: warning + /// Enum for severity. /// [global::Newtonsoft.Json.JsonProperty("severity")] - public global::G.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; + public global::G.PagerdutySeverity? Severity { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesSchema.g.verified.cs index bc9f005623..01af81e2c1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,25 +31,25 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::G.AnyOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// @@ -69,43 +67,43 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_id")] - public global::G.AnyOf? AddToAnnotationQueueId { get; set; } + public global::System.Guid? AddToAnnotationQueueId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_name")] - public global::G.AnyOf? AddToAnnotationQueueName { get; set; } + public string? AddToAnnotationQueueName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_id")] - public global::G.AnyOf? AddToDatasetId { get; set; } + public global::System.Guid? AddToDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_name")] - public global::G.AnyOf? AddToDatasetName { get; set; } + public string? AddToDatasetName { get; set; } /// /// Default Value: false @@ -117,7 +115,7 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("corrections_dataset_id")] - public global::G.AnyOf? CorrectionsDatasetId { get; set; } + public global::System.Guid? CorrectionsDatasetId { get; set; } /// /// Default Value: false @@ -129,31 +127,31 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("num_few_shot_examples")] - public global::G.AnyOf? NumFewShotExamples { get; set; } + public int? NumFewShotExamples { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::G.AnyOf, object>? Evaluators { get; set; } + public global::System.Collections.Generic.IList? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("code_evaluators")] - public global::G.AnyOf, object>? CodeEvaluators { get; set; } + public global::System.Collections.Generic.IList? CodeEvaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::G.AnyOf, object>? Alerts { get; set; } + public global::System.Collections.Generic.IList? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf, object> Webhooks { get; set; } = default!; + public global::System.Collections.Generic.IList? Webhooks { get; set; } = default!; /// /// Default Value: false @@ -177,7 +175,7 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("backfill_from")] - public global::G.AnyOf? BackfillFrom { get; set; } + public global::System.DateTime? BackfillFrom { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs index 91091f646f..949d7f272d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesWebhookSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class RunRulesWebhookSchema /// /// [global::Newtonsoft.Json.JsonProperty("headers")] - public global::G.AnyOf, object>? Headers { get; set; } + public global::System.Collections.Generic.Dictionary? Headers { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchema.g.verified.cs index 411fdeb5b2..e1241d1923 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +43,19 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +67,67 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -159,31 +157,31 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +205,31 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// @@ -249,37 +247,37 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_queued_at")] - public global::G.AnyOf? LastQueuedAt { get; set; } + public global::System.DateTime? LastQueuedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("in_dataset")] - public global::G.AnyOf? InDataset { get; set; } + public bool? InDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("share_token")] - public global::G.AnyOf? ShareToken { get; set; } + public global::System.Guid? ShareToken { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_first_received_at")] - public global::G.AnyOf? TraceFirstReceivedAt { get; set; } + public global::System.DateTime? TraceFirstReceivedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("ttl_seconds")] - public global::G.AnyOf? TtlSeconds { get; set; } + public int? TtlSeconds { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonView.g.verified.cs index 25ca67e7ac..b66469523a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonView.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchemaComparisonView.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +43,19 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +67,67 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -141,7 +139,7 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::G.AnyOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// @@ -159,43 +157,43 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// @@ -207,13 +205,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("app_path")] - public global::G.AnyOf? AppPath { get; set; } + public string? AppPath { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs new file mode 100644 index 0000000000..aed20339a7 --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunSchemaComparisonViewEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunSchemaComparisonViewEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::Newtonsoft.Json.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs deleted file mode 100644 index ac4c649e52..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.RunSchemaComparisonViewEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class RunSchemaComparisonViewEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::Newtonsoft.Json.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEvent.g.verified.cs new file mode 100644 index 0000000000..714b2dcd3a --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunSchemaEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunSchemaEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::Newtonsoft.Json.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs index 0e8adf57d4..6955045e3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchemaWithAnnotationQueueInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +43,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +67,67 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -159,31 +157,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +205,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// @@ -249,37 +247,37 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("last_queued_at")] - public global::G.AnyOf? LastQueuedAt { get; set; } + public global::System.DateTime? LastQueuedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("in_dataset")] - public global::G.AnyOf? InDataset { get; set; } + public bool? InDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("share_token")] - public global::G.AnyOf? ShareToken { get; set; } + public global::System.Guid? ShareToken { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_first_received_at")] - public global::G.AnyOf? TraceFirstReceivedAt { get; set; } + public global::System.DateTime? TraceFirstReceivedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("ttl_seconds")] - public global::G.AnyOf? TtlSeconds { get; set; } + public int? TtlSeconds { get; set; } /// /// Default Value: false @@ -297,19 +295,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("added_at")] - public global::G.AnyOf? AddedAt { get; set; } + public global::System.DateTime? AddedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("effective_added_at")] - public global::G.AnyOf? EffectiveAddedAt { get; set; } + public global::System.DateTime? EffectiveAddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs similarity index 83% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs index 50c8a39355..4e63f872b5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.cs +//HintName: G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunSchemaWithAnnotationQueueInfoEventsVariant1Item + public sealed partial class RunSchemaWithAnnotationQueueInfoEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStats.g.verified.cs index f2c958f195..64cb33b4af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStats.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunStats.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,97 +19,97 @@ public sealed partial class RunStats /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("median_tokens")] - public global::G.AnyOf? MedianTokens { get; set; } + public int? MedianTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacet.g.verified.cs new file mode 100644 index 0000000000..bf8b3bb7cb --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStatsRunFacet.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunStatsRunFacet.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunStatsRunFacet + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::Newtonsoft.Json.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunnableConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunnableConfig.g.verified.cs index 12a4b7ddf9..81df48f71c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunnableConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunnableConfig.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class RunnableConfig /// /// [global::Newtonsoft.Json.JsonProperty("callbacks")] - public global::G.AnyOf, global::G.RunnableConfigCallbacks, object>? Callbacks { get; set; } + public global::G.AnyOf, global::G.RunnableConfigCallbacks>? Callbacks { get; set; } /// /// @@ -39,7 +39,7 @@ public sealed partial class RunnableConfig /// /// [global::Newtonsoft.Json.JsonProperty("max_concurrency")] - public global::G.AnyOf? MaxConcurrency { get; set; } + public int? MaxConcurrency { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class RunnableConfig /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs index 45e6bd8d15..b026338387 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOEmailVerificationStatusResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,7 +13,7 @@ public sealed partial class SSOEmailVerificationStatusResponse /// /// [global::Newtonsoft.Json.JsonProperty("email_confirmed_at")] - public global::G.AnyOf? EmailConfirmedAt { get; set; } + public global::System.DateTime? EmailConfirmedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOProvider.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOProvider.g.verified.cs index 56918b769b..683c72dbea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOProvider.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOProvider.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOProvider.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,13 +43,13 @@ public sealed partial class SSOProvider /// /// [global::Newtonsoft.Json.JsonProperty("metadata_url")] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata_xml")] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsCreate.g.verified.cs index 189f63246e..97e9c158a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOSettingsCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,13 +25,13 @@ public sealed partial class SSOSettingsCreate /// /// [global::Newtonsoft.Json.JsonProperty("metadata_xml")] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata_url")] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsUpdate.g.verified.cs index 9a528a9243..6565daf3eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SSOSettingsUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOSettingsUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,25 +13,25 @@ public sealed partial class SSOSettingsUpdate /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_role_id")] - public global::G.AnyOf? DefaultWorkspaceRoleId { get; set; } + public global::System.Guid? DefaultWorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_ids")] - public global::G.AnyOf, object>? DefaultWorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? DefaultWorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata_url")] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata_xml")] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchDatasetRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchDatasetRequest.g.verified.cs index d5ede5462d..cfcd4983b5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchDatasetRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchDatasetRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SearchDatasetRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class SearchDatasetRequest /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchedFewShotExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchedFewShotExample.g.verified.cs index 9cd60a8ad8..2d5c388e84 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchedFewShotExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchedFewShotExample.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SearchedFewShotExample.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,7 +31,7 @@ public sealed partial class SearchedFewShotExample /// /// [global::Newtonsoft.Json.JsonProperty("debug_info")] - public global::G.AnyOf? DebugInfo { get; set; } + public object? DebugInfo { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SecretUpsert.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SecretUpsert.g.verified.cs index bfd0bb717f..74d68f2be9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SecretUpsert.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SecretUpsert.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SecretUpsert.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class SecretUpsert /// /// [global::Newtonsoft.Json.JsonProperty("value", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf Value { get; set; } = default!; + public string? Value { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccount.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccount.g.verified.cs index 9d5871dcec..b07d2ea7ef 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccount.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccount.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccount.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,7 +43,7 @@ public sealed partial class ServiceAccount /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::System.Guid? DefaultWorkspaceId { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs index cf9cb129e8..9d15386793 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccountCreateResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,7 +43,7 @@ public sealed partial class ServiceAccountCreateResponse /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::System.Guid? DefaultWorkspaceId { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs index 2ffc6d9abd..8e99d21504 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccountDeleteResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,7 +43,7 @@ public sealed partial class ServiceAccountDeleteResponse /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::System.Guid? DefaultWorkspaceId { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SingleCustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SingleCustomChartResponse.g.verified.cs index bf60cccbfe..5eef426387 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SingleCustomChartResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SingleCustomChartResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SingleCustomChartResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -33,13 +31,13 @@ public sealed partial class SingleCustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -63,7 +61,7 @@ public sealed partial class SingleCustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs index 55203dbc45..843df01b4c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessBillingInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -18,10 +16,10 @@ public sealed partial class StripeBusinessBillingInfo public string Name { get; set; } = default!; /// - /// + /// Stripe customer address. /// [global::Newtonsoft.Json.JsonProperty("address")] - public global::G.AnyOf? Address { get; set; } + public global::G.StripeCustomerAddress? Address { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs index 2b61f271f4..1713931737 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessInfoInput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,22 +10,22 @@ namespace G public sealed partial class StripeBusinessInfoInput { /// - /// + /// Stripe customer billing information. /// [global::Newtonsoft.Json.JsonProperty("company_info")] - public global::G.AnyOf? CompanyInfo { get; set; } + public global::G.StripeBusinessBillingInfo? CompanyInfo { get; set; } /// - /// + /// Stripe tax ID. /// [global::Newtonsoft.Json.JsonProperty("tax_id")] - public global::G.AnyOf? TaxId { get; set; } + public global::G.StripeTaxId? TaxId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("invoice_email")] - public global::G.AnyOf? InvoiceEmail { get; set; } + public string? InvoiceEmail { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs index a7b8eb7fc2..2257ef6d83 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessInfoOutput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,22 +10,22 @@ namespace G public sealed partial class StripeBusinessInfoOutput { /// - /// + /// Stripe customer billing information. /// [global::Newtonsoft.Json.JsonProperty("company_info")] - public global::G.AnyOf? CompanyInfo { get; set; } + public global::G.StripeBusinessBillingInfo? CompanyInfo { get; set; } /// - /// + /// Stripe tax ID. /// [global::Newtonsoft.Json.JsonProperty("tax_id")] - public global::G.AnyOf? TaxId { get; set; } + public global::G.StripeTaxId? TaxId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("invoice_email")] - public global::G.AnyOf? InvoiceEmail { get; set; } + public string? InvoiceEmail { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeCustomerAddress.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeCustomerAddress.g.verified.cs index 03da8f8abf..bcc2702b51 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeCustomerAddress.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeCustomerAddress.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeCustomerAddress.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::Newtonsoft.Json.JsonProperty("line2")] - public global::G.AnyOf? Line2 { get; set; } + public string? Line2 { get; set; } /// /// @@ -33,7 +31,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::Newtonsoft.Json.JsonProperty("state")] - public global::G.AnyOf? State { get; set; } + public string? State { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs index 19f673a58d..0e18d5949f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripePaymentMethodInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,31 +13,31 @@ public sealed partial class StripePaymentMethodInfo /// /// [global::Newtonsoft.Json.JsonProperty("brand")] - public global::G.AnyOf? Brand { get; set; } + public string? Brand { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last4")] - public global::G.AnyOf? Last4 { get; set; } + public string? Last4 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("exp_month")] - public global::G.AnyOf? ExpMonth { get; set; } + public int? ExpMonth { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("exp_year")] - public global::G.AnyOf? ExpYear { get; set; } + public int? ExpYear { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TTLSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TTLSettings.g.verified.cs index 02113450b7..a8d520581a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TTLSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TTLSettings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TTLSettings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class TTLSettings /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_trace_tier", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.TraceTier3 DefaultTraceTier { get; set; } = default!; + public global::G.TraceTier DefaultTraceTier { get; set; } = default!; /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKey.g.verified.cs index e01dd1eaed..74a7fc0ba8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKey.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKey.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagKey /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyCreate.g.verified.cs index 14b5222ef9..0cb5076f56 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagKeyCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyUpdate.g.verified.cs index 4539efbf65..4d91364586 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class TagKeyUpdate /// /// [global::Newtonsoft.Json.JsonProperty("key")] - public global::G.AnyOf? Key { get; set; } + public string? Key { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValues.g.verified.cs index 8d947b9091..58f90046a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValues.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyWithValues.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagKeyWithValues /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs index 6fd5611ca8..6acb90b22e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyWithValuesAndTaggings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagKeyWithValuesAndTaggings /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValue.g.verified.cs index 9e1d7544b7..c7fabf52a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValue.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValue.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagValue /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueCreate.g.verified.cs index c7ef8ce728..f0bfd0d302 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagValueCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueUpdate.g.verified.cs index e7c4bbca73..0f768ca743 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class TagValueUpdate /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::G.AnyOf? Value { get; set; } + public string? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueWithTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueWithTaggings.g.verified.cs index e41add3121..06129d228a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueWithTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TagValueWithTaggings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueWithTaggings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TagValueWithTaggings /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantCreate.g.verified.cs index 7f0df264a1..8db928b3ec 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TenantCreate /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -33,7 +31,7 @@ public sealed partial class TenantCreate /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantForUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantForUser.g.verified.cs index 3d570d8228..ef9dd8c1e1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantForUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantForUser.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantForUser.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,7 +19,7 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -45,7 +43,7 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Default Value: false @@ -57,19 +55,19 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("permissions")] - public global::G.AnyOf, object>? Permissions { get; set; } + public global::System.Collections.Generic.IList? Permissions { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareDatasetToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareDatasetToken.g.verified.cs index dc497f7176..d062a7ad9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareDatasetToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareDatasetToken.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantShareDatasetToken.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,7 +37,7 @@ public sealed partial class TenantShareDatasetToken /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareRunToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareRunToken.g.verified.cs index c4e2adfe1c..92c2af3aaf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareRunToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareRunToken.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantShareRunToken.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,25 +37,25 @@ public sealed partial class TenantShareRunToken /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::G.AnyOf? RunType { get; set; } + public string? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::G.AnyOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs index 53ff1fcb75..c0e0e253f0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantUsageLimitInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class TenantUsageLimitInfo /// /// [global::Newtonsoft.Json.JsonProperty("usage_limit_type")] - public global::G.AnyOf? UsageLimitType { get; set; } + public global::G.TenantUsageLimitType? UsageLimitType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_limit")] - public global::G.AnyOf? TenantLimit { get; set; } + public int? TenantLimit { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier.g.verified.cs similarity index 69% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier3.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier.g.verified.cs index 1352cca6b8..c9bcb0c946 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TraceTier.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.TraceTier3.g.cs +//HintName: G.Models.TraceTier.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// /// [global::System.Runtime.Serialization.DataContract] - public enum TraceTier3 + public enum TraceTier { /// /// @@ -25,29 +25,29 @@ public enum TraceTier3 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class TraceTier3Extensions + public static class TraceTierExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this TraceTier3 value) + public static string ToValueString(this TraceTier value) { return value switch { - TraceTier3.Longlived => "longlived", - TraceTier3.Shortlived => "shortlived", + TraceTier.Longlived => "longlived", + TraceTier.Shortlived => "shortlived", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static TraceTier3? ToEnum(string value) + public static TraceTier? ToEnum(string value) { return value switch { - "longlived" => TraceTier3.Longlived, - "shortlived" => TraceTier3.Shortlived, + "longlived" => TraceTier.Longlived, + "shortlived" => TraceTier.Shortlived, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSession.g.verified.cs index 43c440fadd..e1e97e07de 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSession.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSession.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -39,25 +37,25 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// @@ -69,67 +67,67 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("run_count")] - public global::G.AnyOf? RunCount { get; set; } + public int? RunCount { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// @@ -141,49 +139,49 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time_live")] - public global::G.AnyOf? LastRunStartTimeLive { get; set; } + public global::System.DateTime? LastRunStartTimeLive { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_feedback_stats")] - public global::G.AnyOf? SessionFeedbackStats { get; set; } + public object? SessionFeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("test_run_number")] - public global::G.AnyOf? TestRunNumber { get; set; } + public int? TestRunNumber { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionCreate.g.verified.cs index e0e05efe76..035507da31 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class TracerSessionCreate /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -39,31 +37,31 @@ public sealed partial class TracerSessionCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacet.g.verified.cs new file mode 100644 index 0000000000..1fa8a72b48 --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacet.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.TracerSessionRunFacet.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class TracerSessionRunFacet + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::Newtonsoft.Json.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs deleted file mode 100644 index 875d63df19..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.TracerSessionRunFacetsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class TracerSessionRunFacetsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::Newtonsoft.Json.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionUpdate.g.verified.cs index 105d9f0733..8001e6b2fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,37 +13,37 @@ public sealed partial class TracerSessionUpdate /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs index c668daee2a..93f7936fbf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionWithoutVirtualFields.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -39,25 +37,25 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::G.AnyOf? TraceTier { get; set; } + public global::G.TraceTier? TraceTier { get; set; } /// /// @@ -75,7 +73,7 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time_live")] - public global::G.AnyOf? LastRunStartTimeLive { get; set; } + public global::System.DateTime? LastRunStartTimeLive { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TriggerRulesRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TriggerRulesRequest.g.verified.cs index a55ab319d6..d319a87523 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TriggerRulesRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TriggerRulesRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TriggerRulesRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class TriggerRulesRequest /// /// [global::Newtonsoft.Json.JsonProperty("rule_ids")] - public global::G.AnyOf, object>? RuleIds { get; set; } + public global::System.Collections.Generic.IList? RuleIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs index becad256f2..9e62ba077d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpdateFeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,13 +19,13 @@ public sealed partial class UpdateFeedbackConfigSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } + public bool? IsLowerScoreBetter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRepoRequest.g.verified.cs index 7c2d900467..1951b06383 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpdateRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,31 +13,31 @@ public sealed partial class UpdateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_public")] - public global::G.AnyOf? IsPublic { get; set; } + public bool? IsPublic { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_archived")] - public global::G.AnyOf? IsArchived { get; set; } + public bool? IsArchived { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequest.g.verified.cs index b21af48834..d83c6d2c34 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequest.g.verified.cs @@ -15,85 +15,85 @@ public sealed partial class UpdateRunRequest /// /// [global::Newtonsoft.Json.JsonProperty("trace_id")] - public global::G.OneOf? TraceId { get; set; } + public global::System.Guid? TraceId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::G.OneOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::G.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs new file mode 100644 index 0000000000..7da6b6f45b --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.UpdateRunRequestEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class UpdateRunRequestEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::Newtonsoft.Json.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs deleted file mode 100644 index c66964cf79..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.UpdateRunRequestEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class UpdateRunRequestEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::Newtonsoft.Json.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs index 8c2879afb6..d5b12d40c1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpsertTTLSettingsRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,13 +13,13 @@ public sealed partial class UpsertTTLSettingsRequest /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_trace_tier", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.TraceTier3 DefaultTraceTier { get; set; } = default!; + public global::G.TraceTier DefaultTraceTier { get; set; } = default!; /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertUsageLimit.g.verified.cs index 05de9e4779..fe71712ab5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertUsageLimit.g.verified.cs @@ -13,7 +13,7 @@ public sealed partial class UpsertUsageLimit /// Type of usage limit. /// [global::Newtonsoft.Json.JsonProperty("limit_type", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.UsageLimitType2 LimitType { get; set; } = default!; + public global::G.UsageLimitType LimitType { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimit.g.verified.cs index 84d900b85f..5ae8b2910e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimit.g.verified.cs @@ -13,7 +13,7 @@ public sealed partial class UsageLimit /// Type of usage limit. /// [global::Newtonsoft.Json.JsonProperty("limit_type", Required = global::Newtonsoft.Json.Required.Always)] - public global::G.UsageLimitType2 LimitType { get; set; } = default!; + public global::G.UsageLimitType LimitType { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType.g.verified.cs similarity index 66% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType.g.verified.cs index 3734254090..8908092264 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UsageLimitType.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.UsageLimitType2.g.cs +//HintName: G.Models.UsageLimitType.g.cs #nullable enable @@ -8,7 +8,7 @@ namespace G /// Type of usage limit. /// [global::System.Runtime.Serialization.DataContract] - public enum UsageLimitType2 + public enum UsageLimitType { /// /// @@ -25,29 +25,29 @@ public enum UsageLimitType2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class UsageLimitType2Extensions + public static class UsageLimitTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this UsageLimitType2 value) + public static string ToValueString(this UsageLimitType value) { return value switch { - UsageLimitType2.MonthlyTraces => "monthly_traces", - UsageLimitType2.MonthlyLonglivedTraces => "monthly_longlived_traces", + UsageLimitType.MonthlyTraces => "monthly_traces", + UsageLimitType.MonthlyLonglivedTraces => "monthly_longlived_traces", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static UsageLimitType2? ToEnum(string value) + public static UsageLimitType? ToEnum(string value) { return value switch { - "monthly_traces" => UsageLimitType2.MonthlyTraces, - "monthly_longlived_traces" => UsageLimitType2.MonthlyLonglivedTraces, + "monthly_traces" => UsageLimitType.MonthlyTraces, + "monthly_longlived_traces" => UsageLimitType.MonthlyLonglivedTraces, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UserWithPassword.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UserWithPassword.g.verified.cs index edc2e1182e..3b7b40213d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UserWithPassword.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UserWithPassword.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UserWithPassword.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -45,19 +43,19 @@ public sealed partial class UserWithPassword /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.WorkspaceCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.WorkspaceCreate.g.verified.cs index 7676e96708..580e721b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.WorkspaceCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.WorkspaceCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.WorkspaceCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -27,7 +25,7 @@ public sealed partial class WorkspaceCreate /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs index 7e18666ef0..7c146b1cd1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs @@ -132,11 +132,11 @@ partial void ProcessAddMemberToCurrentOrgResponseContent( public async global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool? readOnly = false, - global::G.AnyOf? roleId = default, - global::G.AnyOf, object>? workspaceIds = default, - global::G.AnyOf? workspaceRoleId = default, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + global::System.Guid? roleId = default, + global::System.Collections.Generic.IList? workspaceIds = default, + global::System.Guid? workspaceRoleId = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PendingIdentityCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs index 55f4359dbc..ca44370070 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs @@ -130,8 +130,8 @@ partial void ProcessCreateSsoSettingsResponseContent( public async global::System.Threading.Tasks.Task CreateSsoSettingsAsync( global::System.Guid defaultWorkspaceRoleId, global::System.Collections.Generic.IList defaultWorkspaceIds, - global::G.AnyOf? metadataXml = default, - global::G.AnyOf? metadataUrl = default, + string? metadataXml = default, + string? metadataUrl = default, global::System.Collections.Generic.Dictionary? attributeMapping = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.GetDashboard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.GetDashboard.g.verified.cs index 98cb1e9da2..ebba5bb671 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.GetDashboard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.GetDashboard.g.verified.cs @@ -9,12 +9,12 @@ public partial class OrgsClient partial void PrepareGetDashboardArguments( global::System.Net.Http.HttpClient httpClient, ref global::G.OrganizationDashboardType type, - ref global::G.AnyOf colorScheme); + ref global::G.OrganizationDashboardColorScheme colorScheme); partial void PrepareGetDashboardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme); + global::G.OrganizationDashboardColorScheme colorScheme); partial void ProcessGetDashboardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,12 +30,14 @@ partial void ProcessGetDashboardResponseContent( /// /// Enum for acceptable types of dashboards. /// - /// + /// + /// Enum for acceptable color schemes of dashboards. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme, + global::G.OrganizationDashboardColorScheme colorScheme, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -52,12 +54,18 @@ partial void ProcessGetDashboardResponseContent( global::G.OrganizationDashboardType.Credits => "credits", _ => throw new global::System.NotImplementedException("Enum value not implemented."), }; + var colorSchemeValue = colorScheme switch + { + global::G.OrganizationDashboardColorScheme.Light => "light", + global::G.OrganizationDashboardColorScheme.Dark => "dark", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: "/api/v1/orgs/current/dashboard", baseUri: _httpClient.BaseAddress); __pathBuilder .AddRequiredParameter("type", typeValue.ToString()) - .AddRequiredParameter("color_scheme", colorScheme.ToString() ?? string.Empty) + .AddRequiredParameter("color_scheme", colorSchemeValue.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs index 27b16aef15..bfa8d589bd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs @@ -118,8 +118,12 @@ partial void ProcessSetCompanyInfoResponseContent( /// /// Set Company Info /// - /// - /// + /// + /// Stripe customer billing information. + /// + /// + /// Stripe tax ID. + /// /// /// /// Default Value: false @@ -127,9 +131,9 @@ partial void ProcessSetCompanyInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::G.AnyOf? companyInfo = default, - global::G.AnyOf? taxId = default, - global::G.AnyOf? invoiceEmail = default, + global::G.StripeBusinessBillingInfo? companyInfo = default, + global::G.StripeTaxId? taxId = default, + string? invoiceEmail = default, bool? isBusiness = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs index 53c958b5e7..e04249f196 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs @@ -134,9 +134,9 @@ partial void ProcessUpdateCurrentOrgMemberResponseContent( /// public async global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, - global::G.AnyOf? roleId = default, + string? password = default, + string? fullName = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OrgIdentityPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs index a1186a0eb6..de4c54e974 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs @@ -122,7 +122,7 @@ partial void ProcessUpdateCurrentOrganizationInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentOrganizationInfoAsync( - global::G.AnyOf? displayName = default, + string? displayName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OrganizationUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs index 95f7e7c085..a11881345a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessUpdateCurrentUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BasicAuthUserPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs index ee1e32c8bb..1d88b043e5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs @@ -135,10 +135,10 @@ partial void ProcessUpdateSsoSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdateSsoSettingsAsync( global::System.Guid id, - global::G.AnyOf? defaultWorkspaceRoleId = default, - global::G.AnyOf, object>? defaultWorkspaceIds = default, - global::G.AnyOf? metadataUrl = default, - global::G.AnyOf? metadataXml = default, + global::System.Guid? defaultWorkspaceRoleId = default, + global::System.Collections.Generic.IList? defaultWorkspaceIds = default, + string? metadataUrl = default, + string? metadataXml = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.SSOSettingsUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs index d41cb54f67..a95e32dbfc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs @@ -126,8 +126,8 @@ partial void ProcessUpsertTtlSettingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index 091837ddd5..290c18b663 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs @@ -126,7 +126,7 @@ partial void ProcessCreatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PlaygroundSettingsCreateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs index d39045b41e..48a3867bae 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessUpdatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PlaygroundSettingsUpdateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.CountSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.CountSharedExamples.g.verified.cs index e5f0cbceb7..1f53bee25b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.CountSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.CountSharedExamples.g.verified.cs @@ -9,18 +9,18 @@ public partial class PublicClient partial void PrepareCountSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf? filter); + ref string? metadata, + ref string? filter); partial void PrepareCountSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf? filter); + string? metadata, + string? filter); partial void ProcessCountSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,10 +46,10 @@ partial void ProcessCountSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task CountSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? filter = default, + string? metadata = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -57,7 +57,7 @@ partial void ProcessCountSharedExamplesResponseContent( PrepareCountSharedExamplesArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, filter: ref filter); @@ -66,10 +66,10 @@ partial void ProcessCountSharedExamplesResponseContent( path: $"/api/v1/public/{shareToken}/examples/count", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs index a4265c690d..621b2ff940 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs @@ -114,7 +114,9 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -126,7 +128,9 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -141,23 +145,23 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs index 9a5ee03ac5..0251a28895 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs @@ -116,7 +116,7 @@ partial void ProcessQuerySharedRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryParamsForPublicRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs index 314cc12ec1..da170dc87a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs @@ -9,8 +9,8 @@ public partial class PublicClient partial void PrepareReadSharedComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, + ref string? name, + ref string? nameContains, ref int? offset, ref int? limit, ref global::G.SortByComparativeExperimentColumn? sortBy, @@ -19,8 +19,8 @@ partial void PrepareReadSharedComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, + string? name, + string? nameContains, int? offset, int? limit, global::G.SortByComparativeExperimentColumn? sortBy, @@ -57,8 +57,8 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, @@ -87,8 +87,8 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( path: $"/api/v1/public/{shareToken}/datasets/comparative", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortByValue?.ToString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs index 2a81da0ca8..22f3b0230f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs index 56ebb0152e..f57d1569a1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs @@ -9,30 +9,30 @@ public partial class PublicClient partial void PrepareReadSharedDatasetFeedbackArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level); partial void PrepareReadSharedDatasetFeedbackRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level); partial void ProcessReadSharedDatasetFeedbackResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -60,21 +60,23 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -82,31 +84,36 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( PrepareReadSharedDatasetFeedbackArguments( httpClient: _httpClient, shareToken: ref shareToken, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level); + var levelValue = level switch + { + global::G.FeedbackLevel.Run => "run", + global::G.FeedbackLevel.Session => "session", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: $"/api/v1/public/{shareToken}/datasets/feedback", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", levelValue?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs index 2f18c540a3..72549f9d3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs @@ -9,32 +9,32 @@ public partial class PublicClient partial void PrepareReadSharedDatasetTracerSessionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? datasetVersion, + global::System.Collections.Generic.IList? id, + ref string? name, + ref string? nameContains, + ref string? datasetVersion, ref global::G.SessionSortableColumns? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf? sortByFeedbackKey, + ref string? sortByFeedbackKey, ref int? offset, ref int? limit, ref bool? facets, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadSharedDatasetTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? datasetVersion, + global::System.Collections.Generic.IList? id, + string? name, + string? nameContains, + string? datasetVersion, global::G.SessionSortableColumns? sortBy, bool? sortByDesc, - global::G.AnyOf? sortByFeedbackKey, + string? sortByFeedbackKey, int? offset, int? limit, bool? facets, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadSharedDatasetTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -72,17 +72,17 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? sortByFeedbackKey = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -90,7 +90,7 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( PrepareReadSharedDatasetTracerSessionsArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, name: ref name, nameContains: ref nameContains, datasetVersion: ref datasetVersion, @@ -117,13 +117,13 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( path: $"/api/v1/public/{shareToken}/datasets/sessions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("dataset_version", datasetVersion) .AddOptionalParameter("sort_by", sortByValue?.ToString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) + .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("facets", facets?.ToString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs index 3844b61cef..2b3062dd15 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs @@ -129,10 +129,10 @@ partial void ProcessReadSharedDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryFeedbackDelta diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs index 79eb708461..8c0e9df8f4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs @@ -9,24 +9,24 @@ public partial class PublicClient partial void PrepareReadSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, + ref string? metadata, ref int? offset, ref int? limit, global::System.Collections.Generic.IList? select, - ref global::G.AnyOf? filter); + ref string? filter); partial void PrepareReadSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, + string? metadata, int? offset, int? limit, global::System.Collections.Generic.IList? select, - global::G.AnyOf? filter); + string? filter); partial void ProcessReadSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -61,13 +61,13 @@ partial void ProcessReadSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -75,7 +75,7 @@ partial void ProcessReadSharedExamplesResponseContent( PrepareReadSharedExamplesArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, offset: ref offset, @@ -87,12 +87,12 @@ partial void ProcessReadSharedExamplesResponseContent( path: $"/api/v1/public/{shareToken}/examples", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs index c88b82b725..87370bfe1d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs @@ -9,30 +9,30 @@ public partial class PublicClient partial void PrepareReadSharedFeedbacksArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level); partial void PrepareReadSharedFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level); partial void ProcessReadSharedFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -59,21 +59,23 @@ partial void ProcessReadSharedFeedbacksResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -81,31 +83,36 @@ partial void ProcessReadSharedFeedbacksResponseContent( PrepareReadSharedFeedbacksArguments( httpClient: _httpClient, shareToken: ref shareToken, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level); + var levelValue = level switch + { + global::G.FeedbackLevel.Run => "run", + global::G.FeedbackLevel.Session => "session", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: $"/api/v1/public/{shareToken}/feedbacks", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", levelValue?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs index 4d3f99eea5..a53e5dc2ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs @@ -114,7 +114,9 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -126,27 +128,29 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.CreateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.CreateRepo.g.verified.cs index 40575b98bc..b5ec176f7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.CreateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.CreateRepo.g.verified.cs @@ -130,9 +130,9 @@ partial void ProcessCreateRepoResponseContent( public async global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ForkRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ForkRepo.g.verified.cs index 76d36e0846..d73a05d86a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ForkRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ForkRepo.g.verified.cs @@ -145,10 +145,10 @@ partial void ProcessForkRepoResponseContent( string owner, string repo, string repoHandle, - global::G.AnyOf? readme = default, - global::G.AnyOf? description = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, + string? readme = default, + string? description = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ForkRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepoTags.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepoTags.g.verified.cs index 5b21eef51d..fd82692bc2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepoTags.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepoTags.g.verified.cs @@ -10,33 +10,33 @@ partial void PrepareListRepoTagsArguments( global::System.Net.Http.HttpClient httpClient, ref int? limit, ref int? offset, - ref global::G.AnyOf? tenantHandle, - ref global::G.AnyOf? tenantId, - ref global::G.AnyOf? query, - ref global::G.AnyOf? hasCommits, - ref global::G.AnyOf, object>? tags, - ref global::G.AnyOf? isArchived, - ref global::G.AnyOf? isPublic, - ref global::G.AnyOf? upstreamRepoOwner, - ref global::G.AnyOf? upstreamRepoHandle, - ref global::G.AnyOf? matchPrefix, - ref global::G.AnyOf, object>? tagValueId); + ref string? tenantHandle, + ref global::System.Guid? tenantId, + ref string? query, + ref bool? hasCommits, + global::System.Collections.Generic.IList? tags, + ref global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived, + ref global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic, + ref string? upstreamRepoOwner, + ref string? upstreamRepoHandle, + ref bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId); partial void PrepareListRepoTagsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int? limit, int? offset, - global::G.AnyOf? tenantHandle, - global::G.AnyOf? tenantId, - global::G.AnyOf? query, - global::G.AnyOf? hasCommits, - global::G.AnyOf, object>? tags, - global::G.AnyOf? isArchived, - global::G.AnyOf? isPublic, - global::G.AnyOf? upstreamRepoOwner, - global::G.AnyOf? upstreamRepoHandle, - global::G.AnyOf? matchPrefix, - global::G.AnyOf, object>? tagValueId); + string? tenantHandle, + global::System.Guid? tenantId, + string? query, + bool? hasCommits, + global::System.Collections.Generic.IList? tags, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic, + string? upstreamRepoOwner, + string? upstreamRepoHandle, + bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId); partial void ProcessListRepoTagsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -74,17 +74,17 @@ partial void ProcessListRepoTagsResponseContent( public async global::System.Threading.Tasks.Task ListRepoTagsAsync( int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -97,31 +97,44 @@ partial void ProcessListRepoTagsResponseContent( tenantId: ref tenantId, query: ref query, hasCommits: ref hasCommits, - tags: ref tags, + tags: tags, isArchived: ref isArchived, isPublic: ref isPublic, upstreamRepoOwner: ref upstreamRepoOwner, upstreamRepoHandle: ref upstreamRepoHandle, matchPrefix: ref matchPrefix, - tagValueId: ref tagValueId); + tagValueId: tagValueId); + var isArchivedValue = isArchived switch + { + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived.True => "true", + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived.Allow => "allow", + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived.False => "false", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; + var isPublicValue = isPublic switch + { + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic.True => "true", + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic.False => "false", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: "/api/v1/repos/tags", baseUri: _httpClient.BaseAddress); __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("tenant_handle", tenantHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("tenant_id", tenantId?.ToString() ?? string.Empty) - .AddOptionalParameter("query", query?.ToString() ?? string.Empty) - .AddOptionalParameter("has_commits", hasCommits?.ToString() ?? string.Empty) - .AddOptionalParameter("tags", tags?.ToString() ?? string.Empty) - .AddOptionalParameter("is_archived", isArchived?.ToString() ?? string.Empty) - .AddOptionalParameter("is_public", isPublic?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("match_prefix", matchPrefix?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tenant_handle", tenantHandle) + .AddOptionalParameter("tenant_id", tenantId?.ToString()) + .AddOptionalParameter("query", query) + .AddOptionalParameter("has_commits", hasCommits?.ToString()) + .AddOptionalParameter("tags", tags, delimiter: ",", explode: true) + .AddOptionalParameter("is_archived", isArchivedValue?.ToString()) + .AddOptionalParameter("is_public", isPublicValue?.ToString()) + .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner) + .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle) + .AddOptionalParameter("match_prefix", matchPrefix?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepos.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepos.g.verified.cs index fb5ff3bbc6..888e059b39 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepos.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.ListRepos.g.verified.cs @@ -11,38 +11,38 @@ partial void PrepareListReposArguments( ref bool? withLatestManifest, ref int? limit, ref int? offset, - ref global::G.AnyOf? tenantHandle, - ref global::G.AnyOf? tenantId, - ref global::G.AnyOf? query, - ref global::G.AnyOf? hasCommits, - ref global::G.AnyOf, object>? tags, - ref global::G.AnyOf? isArchived, - ref global::G.AnyOf? isPublic, - ref global::G.AnyOf? upstreamRepoOwner, - ref global::G.AnyOf? upstreamRepoHandle, - ref global::G.AnyOf? matchPrefix, - ref global::G.AnyOf, object>? tagValueId, - ref global::G.AnyOf? sortField, - ref global::G.AnyOf? sortDirection); + ref string? tenantHandle, + ref global::System.Guid? tenantId, + ref string? query, + ref bool? hasCommits, + global::System.Collections.Generic.IList? tags, + ref global::G.ListReposApiV1ReposGetIsArchived? isArchived, + ref global::G.ListReposApiV1ReposGetIsPublic? isPublic, + ref string? upstreamRepoOwner, + ref string? upstreamRepoHandle, + ref bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId, + ref string? sortField, + ref global::G.AnyOf? sortDirection); partial void PrepareListReposRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, bool? withLatestManifest, int? limit, int? offset, - global::G.AnyOf? tenantHandle, - global::G.AnyOf? tenantId, - global::G.AnyOf? query, - global::G.AnyOf? hasCommits, - global::G.AnyOf, object>? tags, - global::G.AnyOf? isArchived, - global::G.AnyOf? isPublic, - global::G.AnyOf? upstreamRepoOwner, - global::G.AnyOf? upstreamRepoHandle, - global::G.AnyOf? matchPrefix, - global::G.AnyOf, object>? tagValueId, - global::G.AnyOf? sortField, - global::G.AnyOf? sortDirection); + string? tenantHandle, + global::System.Guid? tenantId, + string? query, + bool? hasCommits, + global::System.Collections.Generic.IList? tags, + global::G.ListReposApiV1ReposGetIsArchived? isArchived, + global::G.ListReposApiV1ReposGetIsPublic? isPublic, + string? upstreamRepoOwner, + string? upstreamRepoHandle, + bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId, + string? sortField, + global::G.AnyOf? sortDirection); partial void ProcessListReposResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -86,19 +86,19 @@ partial void ProcessListReposResponseContent( bool? withLatestManifest = false, int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, - global::G.AnyOf? sortField = default, - global::G.AnyOf? sortDirection = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListReposApiV1ReposGetIsArchived? isArchived = default, + global::G.ListReposApiV1ReposGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, + string? sortField = default, + global::G.AnyOf? sortDirection = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -112,16 +112,29 @@ partial void ProcessListReposResponseContent( tenantId: ref tenantId, query: ref query, hasCommits: ref hasCommits, - tags: ref tags, + tags: tags, isArchived: ref isArchived, isPublic: ref isPublic, upstreamRepoOwner: ref upstreamRepoOwner, upstreamRepoHandle: ref upstreamRepoHandle, matchPrefix: ref matchPrefix, - tagValueId: ref tagValueId, + tagValueId: tagValueId, sortField: ref sortField, sortDirection: ref sortDirection); + var isArchivedValue = isArchived switch + { + global::G.ListReposApiV1ReposGetIsArchived.True => "true", + global::G.ListReposApiV1ReposGetIsArchived.Allow => "allow", + global::G.ListReposApiV1ReposGetIsArchived.False => "false", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; + var isPublicValue = isPublic switch + { + global::G.ListReposApiV1ReposGetIsPublic.True => "true", + global::G.ListReposApiV1ReposGetIsPublic.False => "false", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: "/api/v1/repos", baseUri: _httpClient.BaseAddress); @@ -129,18 +142,18 @@ partial void ProcessListReposResponseContent( .AddOptionalParameter("with_latest_manifest", withLatestManifest?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("tenant_handle", tenantHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("tenant_id", tenantId?.ToString() ?? string.Empty) - .AddOptionalParameter("query", query?.ToString() ?? string.Empty) - .AddOptionalParameter("has_commits", hasCommits?.ToString() ?? string.Empty) - .AddOptionalParameter("tags", tags?.ToString() ?? string.Empty) - .AddOptionalParameter("is_archived", isArchived?.ToString() ?? string.Empty) - .AddOptionalParameter("is_public", isPublic?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("match_prefix", matchPrefix?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_field", sortField?.ToString() ?? string.Empty) + .AddOptionalParameter("tenant_handle", tenantHandle) + .AddOptionalParameter("tenant_id", tenantId?.ToString()) + .AddOptionalParameter("query", query) + .AddOptionalParameter("has_commits", hasCommits?.ToString()) + .AddOptionalParameter("tags", tags, delimiter: ",", explode: true) + .AddOptionalParameter("is_archived", isArchivedValue?.ToString()) + .AddOptionalParameter("is_public", isPublicValue?.ToString()) + .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner) + .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle) + .AddOptionalParameter("match_prefix", matchPrefix?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("sort_field", sortField) .AddOptionalParameter("sort_direction", sortDirection?.ToString() ?? string.Empty) ; var __path = __pathBuilder.ToString(); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.OptimizePrompt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.OptimizePrompt.g.verified.cs index 94a4747bec..270c7bf003 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.OptimizePrompt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.OptimizePrompt.g.verified.cs @@ -130,7 +130,7 @@ partial void ProcessOptimizePromptResponseContent( string prompt, object metaprompt, global::System.Collections.Generic.IList examples, - global::G.AnyOf overallFeedback, + string? overallFeedback, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OptimizePromptRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.UpdateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.UpdateRepo.g.verified.cs index acf5805c7f..e0eeeec5bb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.UpdateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ReposClient.UpdateRepo.g.verified.cs @@ -144,11 +144,11 @@ partial void ProcessUpdateRepoResponseContent( public async global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? isArchived = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, + bool? isArchived = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRule.g.verified.cs index 9ce5ea792a..8acd3d7012 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRule.g.verified.cs @@ -152,23 +152,23 @@ partial void ProcessCreateRuleResponseContent( public async global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.RunRulesCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRun.g.verified.cs index 7cad9e8135..46e27df75c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.CreateRun.g.verified.cs @@ -145,24 +145,24 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::G.OneOf? inputs = default, - global::G.OneOf? startTime = default, - global::G.OneOf? endTime = default, - global::G.OneOf? extra = default, - global::G.OneOf? error = default, - global::G.OneOf? serialized = default, - global::G.OneOf? outputs = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? id = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, - global::G.OneOf? referenceExampleId = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, + object? inputs = default, + global::G.OneOf? startTime = default, + global::G.OneOf? endTime = default, + object? extra = default, + string? error = default, + object? serialized = default, + object? outputs = default, + global::System.Guid? parentRunId = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? id = default, + global::System.Guid? sessionId = default, + string? sessionName = default, + global::System.Guid? referenceExampleId = default, + object? inputAttachments = default, + object? outputAttachments = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRunRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.GroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.GroupRuns.g.verified.cs index 5d2041dd3a..1eef1bef22 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.GroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.GroupRuns.g.verified.cs @@ -8,12 +8,12 @@ public partial class RunClient { partial void PrepareGroupRunsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? accept, + ref string? accept, global::G.RunGroupRequest request); partial void PrepareGroupRunsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? accept, + string? accept, global::G.RunGroupRequest request); partial void ProcessGroupRunsResponse( global::System.Net.Http.HttpClient httpClient, @@ -34,7 +34,7 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::G.RunGroupRequest request, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { request = request ?? throw new global::System.ArgumentNullException(nameof(request)); @@ -148,11 +148,11 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::G.AnyOf? accept = default, + string? accept = default, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRuleLogs.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRuleLogs.g.verified.cs index 92404f7378..a2839428e5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRuleLogs.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRuleLogs.g.verified.cs @@ -11,16 +11,16 @@ partial void PrepareListRuleLogsArguments( ref global::System.Guid ruleId, ref int? limit, ref int? offset, - ref global::G.AnyOf? startTime, - ref global::G.AnyOf? endTime); + ref global::System.DateTime? startTime, + ref global::System.DateTime? endTime); partial void PrepareListRuleLogsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid ruleId, int? limit, int? offset, - global::G.AnyOf? startTime, - global::G.AnyOf? endTime); + global::System.DateTime? startTime, + global::System.DateTime? endTime); partial void ProcessListRuleLogsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -49,8 +49,8 @@ partial void ProcessListRuleLogsResponseContent( global::System.Guid ruleId, int? limit = 720, int? offset = 0, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -69,8 +69,8 @@ partial void ProcessListRuleLogsResponseContent( __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("start_time", startTime?.ToString() ?? string.Empty) - .AddOptionalParameter("end_time", endTime?.ToString() ?? string.Empty) + .AddOptionalParameter("start_time", startTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("end_time", endTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRules.g.verified.cs index a387e93331..0ae57dd00b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ListRules.g.verified.cs @@ -8,17 +8,17 @@ public partial class RunClient { partial void PrepareListRulesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? datasetId, - ref global::G.AnyOf? sessionId, - ref global::G.AnyOf? type, - ref global::G.AnyOf? nameContains); + ref global::System.Guid? datasetId, + ref global::System.Guid? sessionId, + ref global::G.ListRulesApiV1RunsRulesGetType? type, + ref string? nameContains); partial void PrepareListRulesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? datasetId, - global::G.AnyOf? sessionId, - global::G.AnyOf? type, - global::G.AnyOf? nameContains); + global::System.Guid? datasetId, + global::System.Guid? sessionId, + global::G.ListRulesApiV1RunsRulesGetType? type, + string? nameContains); partial void ProcessListRulesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,10 +39,10 @@ partial void ProcessListRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListRulesAsync( - global::G.AnyOf? datasetId = default, - global::G.AnyOf? sessionId = default, - global::G.AnyOf? type = default, - global::G.AnyOf? nameContains = default, + global::System.Guid? datasetId = default, + global::System.Guid? sessionId = default, + global::G.ListRulesApiV1RunsRulesGetType? type = default, + string? nameContains = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -54,14 +54,20 @@ partial void ProcessListRulesResponseContent( type: ref type, nameContains: ref nameContains); + var typeValue = type switch + { + global::G.ListRulesApiV1RunsRulesGetType.Session => "session", + global::G.ListRulesApiV1RunsRulesGetType.Dataset => "dataset", + _ => throw new global::System.NotImplementedException("Enum value not implemented."), + }; var __pathBuilder = new PathBuilder( path: "/api/v1/runs/rules", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("dataset_id", datasetId?.ToString() ?? string.Empty) - .AddOptionalParameter("session_id", sessionId?.ToString() ?? string.Empty) - .AddOptionalParameter("type", type?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("dataset_id", datasetId?.ToString()) + .AddOptionalParameter("session_id", sessionId?.ToString()) + .AddOptionalParameter("type", typeValue?.ToString()) + .AddOptionalParameter("name_contains", nameContains) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.QueryRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.QueryRuns.g.verified.cs index 35f65ea956..d0e9182b64 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.QueryRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.QueryRuns.g.verified.cs @@ -121,7 +121,9 @@ partial void ProcessQueryRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -133,7 +135,9 @@ partial void ProcessQueryRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -147,23 +151,23 @@ partial void ProcessQueryRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task QueryRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ReadRunShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ReadRunShareState.g.verified.cs index 452cbb3718..70d4807541 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ReadRunShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.ReadRunShareState.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessReadRunShareStateResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ReadRunShareStateAsync( + public async global::System.Threading.Tasks.Task ReadRunShareStateAsync( global::System.Guid runId, global::System.Threading.CancellationToken cancellationToken = default) { @@ -104,7 +104,7 @@ partial void ProcessReadRunShareStateResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject?>(__content, JsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject(__content, JsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsGroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsGroupRuns.g.verified.cs index b4aa811280..8fcab69cb9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsGroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsGroupRuns.g.verified.cs @@ -136,9 +136,9 @@ partial void ProcessStatsGroupRunsResponseContent( public async global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsRuns.g.verified.cs index 244d7ba6b9..a8f5ce545d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.StatsRuns.g.verified.cs @@ -123,7 +123,9 @@ partial void ProcessStatsRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -135,26 +137,28 @@ partial void ProcessStatsRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.TriggerRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.TriggerRules.g.verified.cs index bc52e83c03..f24395ed9b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.TriggerRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.TriggerRules.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessTriggerRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task TriggerRulesAsync( - global::G.AnyOf, object>? ruleIds = default, - global::G.AnyOf? datasetId = default, + global::System.Collections.Generic.IList? ruleIds = default, + global::System.Guid? datasetId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TriggerRulesRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRule.g.verified.cs index 226cd64dee..872473cd2a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRule.g.verified.cs @@ -160,23 +160,23 @@ partial void ProcessUpdateRuleResponseContent( global::System.Guid ruleId, string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.RunRulesCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRun.g.verified.cs index bf274efdf1..c93c53fd08 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.UpdateRun.g.verified.cs @@ -145,20 +145,20 @@ partial void ProcessUpdateRunResponseContent( /// public async global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf? endTime = default, - global::G.OneOf? error = default, - global::G.OneOf? inputs = default, - global::G.OneOf? outputs = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? extra = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? parentRunId = default, + global::G.OneOf? endTime = default, + string? error = default, + object? inputs = default, + object? outputs = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + object? extra = default, + object? inputAttachments = default, + object? outputAttachments = default, + global::System.Guid? sessionId = default, + string? sessionName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateRunRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TenantClient.CreateTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TenantClient.CreateTenant.g.verified.cs index a9a58439f6..d0cbd6466e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TenantClient.CreateTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TenantClient.CreateTenant.g.verified.cs @@ -132,8 +132,8 @@ partial void ProcessCreateTenantResponseContent( public async global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? organizationId = default, - global::G.AnyOf? tenantHandle = default, + global::System.Guid? organizationId = default, + string? tenantHandle = default, bool? isPersonal = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs index c055adcded..e2228792de 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs @@ -137,10 +137,10 @@ partial void ProcessCreateFilterViewResponseContent( public async global::System.Threading.Tasks.Task CreateFilterViewAsync( global::System.Guid sessionId, string displayName, - global::G.AnyOf? filterString = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, - global::G.AnyOf? description = default, + string? filterString = default, + string? traceFilterString = default, + string? treeFilterString = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterViewCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs index d57df1bbe1..9bf80b9d26 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs @@ -148,14 +148,14 @@ partial void ProcessCreateTracerSessionResponseContent( public async global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool? upsert = false, global::System.DateTime? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, + global::System.DateTime? endTime = default, + object? extra = default, string? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? referenceDatasetId = default, - global::G.AnyOf? traceTier = default, - global::G.AnyOf? id = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.Guid? referenceDatasetId = default, + global::G.TraceTier? traceTier = default, + global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs index 85c428294c..604357cae0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReadTracerSessionArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid sessionId, ref bool? includeStats, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadTracerSessionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, bool? includeStats, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadTracerSessionResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -40,7 +40,7 @@ partial void ProcessReadTracerSessionResponseContent( public async global::System.Threading.Tasks.Task ReadTracerSessionAsync( global::System.Guid sessionId, bool? includeStats = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs index 6bbd686a1d..253af3ecbe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs @@ -8,39 +8,39 @@ public partial class TracerSessionsClient { partial void PrepareReadTracerSessionsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? referenceFree, - ref global::G.AnyOf, object>? referenceDataset, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? datasetVersion, + ref bool? referenceFree, + global::System.Collections.Generic.IList? referenceDataset, + global::System.Collections.Generic.IList? id, + ref string? name, + ref string? nameContains, + ref string? datasetVersion, ref global::G.SessionSortableColumns? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf? sortByFeedbackKey, + ref string? metadata, + ref string? sortByFeedbackKey, ref int? offset, ref int? limit, - ref global::G.AnyOf, object>? tagValueId, + global::System.Collections.Generic.IList? tagValueId, ref bool? facets, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? referenceFree, - global::G.AnyOf, object>? referenceDataset, - global::G.AnyOf, object>? id, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? datasetVersion, + bool? referenceFree, + global::System.Collections.Generic.IList? referenceDataset, + global::System.Collections.Generic.IList? id, + string? name, + string? nameContains, + string? datasetVersion, global::G.SessionSortableColumns? sortBy, bool? sortByDesc, - global::G.AnyOf? metadata, - global::G.AnyOf? sortByFeedbackKey, + string? metadata, + string? sortByFeedbackKey, int? offset, int? limit, - global::G.AnyOf, object>? tagValueId, + global::System.Collections.Generic.IList? tagValueId, bool? facets, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -80,21 +80,21 @@ partial void ProcessReadTracerSessionsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::G.AnyOf? referenceFree = default, - global::G.AnyOf, object>? referenceDataset = default, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + bool? referenceFree = default, + global::System.Collections.Generic.IList? referenceDataset = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? metadata = default, - global::G.AnyOf? sortByFeedbackKey = default, + string? metadata = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -102,8 +102,8 @@ partial void ProcessReadTracerSessionsResponseContent( PrepareReadTracerSessionsArguments( httpClient: _httpClient, referenceFree: ref referenceFree, - referenceDataset: ref referenceDataset, - id: ref id, + referenceDataset: referenceDataset, + id: id, name: ref name, nameContains: ref nameContains, datasetVersion: ref datasetVersion, @@ -113,7 +113,7 @@ partial void ProcessReadTracerSessionsResponseContent( sortByFeedbackKey: ref sortByFeedbackKey, offset: ref offset, limit: ref limit, - tagValueId: ref tagValueId, + tagValueId: tagValueId, facets: ref facets, accept: ref accept); @@ -132,19 +132,19 @@ partial void ProcessReadTracerSessionsResponseContent( path: "/api/v1/sessions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("reference_free", referenceFree?.ToString() ?? string.Empty) - .AddOptionalParameter("reference_dataset", referenceDataset?.ToString() ?? string.Empty) - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) + .AddOptionalParameter("reference_free", referenceFree?.ToString()) + .AddOptionalParameter("reference_dataset", referenceDataset, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("dataset_version", datasetVersion) .AddOptionalParameter("sort_by", sortByValue?.ToString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("facets", facets?.ToString()) ; var __path = __pathBuilder.ToString(); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs index 0d0b972157..f6c14ed434 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs @@ -9,16 +9,16 @@ public partial class TracerSessionsClient partial void PrepareReadTracerSessionsRunsMetadataArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid sessionId, - ref global::G.AnyOf, object>? metadataKeys, - ref global::G.AnyOf? startTime, + global::System.Collections.Generic.IList? metadataKeys, + ref global::System.DateTime? startTime, ref int? k, ref bool? rootRunsOnly); partial void PrepareReadTracerSessionsRunsMetadataRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys, - global::G.AnyOf? startTime, + global::System.Collections.Generic.IList? metadataKeys, + global::System.DateTime? startTime, int? k, bool? rootRunsOnly); partial void ProcessReadTracerSessionsRunsMetadataResponse( @@ -47,8 +47,8 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( /// public async global::System.Threading.Tasks.Task>> ReadTracerSessionsRunsMetadataAsync( global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys = default, - global::G.AnyOf? startTime = default, + global::System.Collections.Generic.IList? metadataKeys = default, + global::System.DateTime? startTime = default, int? k = 10, bool? rootRunsOnly = false, global::System.Threading.CancellationToken cancellationToken = default) @@ -58,7 +58,7 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( PrepareReadTracerSessionsRunsMetadataArguments( httpClient: _httpClient, sessionId: ref sessionId, - metadataKeys: ref metadataKeys, + metadataKeys: metadataKeys, startTime: ref startTime, k: ref k, rootRunsOnly: ref rootRunsOnly); @@ -67,8 +67,8 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( path: $"/api/v1/sessions/{sessionId}/metadata", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("metadata_keys", metadataKeys?.ToString() ?? string.Empty) - .AddOptionalParameter("start_time", startTime?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata_keys", metadataKeys, delimiter: ",", explode: true) + .AddOptionalParameter("start_time", startTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) .AddOptionalParameter("k", k?.ToString()) .AddOptionalParameter("root_runs_only", rootRunsOnly?.ToString()) ; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs index 6c42cf8d19..ee4588bda2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs @@ -144,11 +144,11 @@ partial void ProcessUpdateFilterViewResponseContent( public async global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::G.AnyOf? filterString = default, - global::G.AnyOf? displayName = default, - global::G.AnyOf? description = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, + string? filterString = default, + string? displayName = default, + string? description = default, + string? traceFilterString = default, + string? treeFilterString = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterViewUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs index f06654094a..3567bdb17a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessUpdateTracerSessionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, - global::G.AnyOf? traceTier = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.DateTime? endTime = default, + object? extra = default, + global::G.TraceTier? traceTier = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs index 49019e7631..d430b06ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs @@ -126,8 +126,8 @@ partial void ProcessUpsertTtlSettingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs index cfaa27121b..bf584fbdd6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessUpsertUsageLimitResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertUsageLimitAsync( - global::G.UsageLimitType2 limitType, + global::G.UsageLimitType limitType, int limitValue, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs index 0f3abdbec1..376ce1eec9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs @@ -127,8 +127,8 @@ partial void ProcessAddMemberToCurrentWorkspaceResponseContent( /// public async global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::G.AnyOf? readOnly = default, - global::G.AnyOf? roleId = default, + bool? readOnly = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs index 65a5abf8cf..79c107a3da 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs @@ -124,7 +124,7 @@ partial void ProcessCreateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagKeyCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs index 8d2b3d2118..d03e59906a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessCreateTagValueResponseContent( public async global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagValueCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs index db7d67c287..0f670801ed 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateWorkspaceResponseContent( public async global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? tenantHandle = default, + string? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.WorkspaceCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs index 6ce8e288a2..83acdd4f61 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs @@ -8,11 +8,11 @@ public partial class WorkspacesClient { partial void PrepareGetCurrentWorkspaceStatsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareGetCurrentWorkspaceStatsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessGetCurrentWorkspaceStatsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,20 +29,20 @@ partial void ProcessGetCurrentWorkspaceStatsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareGetCurrentWorkspaceStatsArguments( httpClient: _httpClient, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/workspaces/current/stats", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs index 1f5c66c208..3fae5b30ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs @@ -8,11 +8,11 @@ public partial class WorkspacesClient { partial void PrepareListTaggingsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? tagValueId); + ref global::System.Guid? tagValueId); partial void PrepareListTaggingsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? tagValueId); + global::System.Guid? tagValueId); partial void ProcessListTaggingsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessListTaggingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListTaggingsAsync( - global::G.AnyOf? tagValueId = default, + global::System.Guid? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -42,7 +42,7 @@ partial void ProcessListTaggingsResponseContent( path: "/api/v1/workspaces/current/taggings", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs index adc0066bca..45160dd96e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessPatchCurrentWorkspaceMemberResponseContent( public async global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::G.AnyOf? readOnly = default, + bool? readOnly = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs index 7f971c0f86..6b7fffd92c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs @@ -131,8 +131,8 @@ partial void ProcessUpdateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::G.AnyOf? key = default, - global::G.AnyOf? description = default, + string? key = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagKeyUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs index f576315ba2..3e73033d2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs @@ -139,8 +139,8 @@ partial void ProcessUpdateTagValueResponseContent( public async global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::G.AnyOf? value = default, - global::G.AnyOf? description = default, + string? value = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagValueUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.3.g.verified.cs deleted file mode 100644 index 9635fabd2e..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.3.g.verified.cs +++ /dev/null @@ -1,265 +0,0 @@ -//HintName: OneOf.3.g.cs -using System.Linq; - -#nullable enable - -namespace G -{ - /// - /// - /// - public readonly partial struct OneOf : global::System.IEquatable> - { - /// - /// - /// -#if NET6_0_OR_GREATER - public T1? Value1 { get; init; } -#else - public T1? Value1 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))] -#endif - public bool IsValue1 => Value1 != null; - - /// - /// - /// - public static implicit operator OneOf(T1 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T1?(OneOf @this) => @this.Value1; - - /// - /// - /// - public OneOf(T1? value) - { - Value1 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T2? Value2 { get; init; } -#else - public T2? Value2 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))] -#endif - public bool IsValue2 => Value2 != null; - - /// - /// - /// - public static implicit operator OneOf(T2 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T2?(OneOf @this) => @this.Value2; - - /// - /// - /// - public OneOf(T2? value) - { - Value2 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T3? Value3 { get; init; } -#else - public T3? Value3 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))] -#endif - public bool IsValue3 => Value3 != null; - - /// - /// - /// - public static implicit operator OneOf(T3 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T3?(OneOf @this) => @this.Value3; - - /// - /// - /// - public OneOf(T3? value) - { - Value3 = value; - } - - /// - /// - /// - public OneOf( - T1? value1, - T2? value2, - T3? value3 - ) - { - Value1 = value1; - Value2 = value2; - Value3 = value3; - } - - /// - /// - /// - public object? Object => - Value3 as object ?? - Value2 as object ?? - Value1 as object - ; - - /// - /// - /// - public bool Validate() - { - return IsValue1 && !IsValue2 && !IsValue3 || !IsValue1 && IsValue2 && !IsValue3 || !IsValue1 && !IsValue2 && IsValue3; - } - - /// - /// - /// - public TResult? Match( - global::System.Func? value1 = null, - global::System.Func? value2 = null, - global::System.Func? value3 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1 && value1 != null) - { - return value1(Value1!); - } - else if (IsValue2 && value2 != null) - { - return value2(Value2!); - } - else if (IsValue3 && value3 != null) - { - return value3(Value3!); - } - - return default(TResult); - } - - /// - /// - /// - public void Match( - global::System.Action? value1 = null, - global::System.Action? value2 = null, - global::System.Action? value3 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - else if (IsValue3) - { - value3?.Invoke(Value3!); - } - } - - /// - /// - /// - public override int GetHashCode() - { - var fields = new object?[] - { - Value1, - typeof(T1), - Value2, - typeof(T2), - Value3, - typeof(T3), - }; - const int offset = unchecked((int)2166136261); - const int prime = 16777619; - static int HashCodeAggregator(int hashCode, object? value) => value == null - ? (hashCode ^ 0) * prime - : (hashCode ^ value.GetHashCode()) * prime; - return fields.Aggregate(offset, HashCodeAggregator); - } - - /// - /// - /// - public bool Equals(OneOf other) - { - return - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3) - ; - } - - /// - /// - /// - public static bool operator ==(OneOf obj1, OneOf obj2) - { - return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2); - } - - /// - /// - /// - public static bool operator !=(OneOf obj1, OneOf obj2) - { - return !(obj1 == obj2); - } - - /// - /// - /// - public override bool Equals(object? obj) - { - return obj is OneOf o && Equals(o); - } - } -} diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.6.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.6.g.verified.cs deleted file mode 100644 index a7f7535190..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.6.g.verified.cs +++ /dev/null @@ -1,418 +0,0 @@ -//HintName: AnyOf.6.g.cs -using System.Linq; - -#nullable enable - -namespace G -{ - /// - /// - /// - public readonly partial struct AnyOf : global::System.IEquatable> - { - /// - /// - /// -#if NET6_0_OR_GREATER - public T1? Value1 { get; init; } -#else - public T1? Value1 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))] -#endif - public bool IsValue1 => Value1 != null; - - /// - /// - /// - public static implicit operator AnyOf(T1 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T1?(AnyOf @this) => @this.Value1; - - /// - /// - /// - public AnyOf(T1? value) - { - Value1 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T2? Value2 { get; init; } -#else - public T2? Value2 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))] -#endif - public bool IsValue2 => Value2 != null; - - /// - /// - /// - public static implicit operator AnyOf(T2 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T2?(AnyOf @this) => @this.Value2; - - /// - /// - /// - public AnyOf(T2? value) - { - Value2 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T3? Value3 { get; init; } -#else - public T3? Value3 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))] -#endif - public bool IsValue3 => Value3 != null; - - /// - /// - /// - public static implicit operator AnyOf(T3 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T3?(AnyOf @this) => @this.Value3; - - /// - /// - /// - public AnyOf(T3? value) - { - Value3 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T4? Value4 { get; init; } -#else - public T4? Value4 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value4))] -#endif - public bool IsValue4 => Value4 != null; - - /// - /// - /// - public static implicit operator AnyOf(T4 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T4?(AnyOf @this) => @this.Value4; - - /// - /// - /// - public AnyOf(T4? value) - { - Value4 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T5? Value5 { get; init; } -#else - public T5? Value5 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value5))] -#endif - public bool IsValue5 => Value5 != null; - - /// - /// - /// - public static implicit operator AnyOf(T5 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T5?(AnyOf @this) => @this.Value5; - - /// - /// - /// - public AnyOf(T5? value) - { - Value5 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T6? Value6 { get; init; } -#else - public T6? Value6 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value6))] -#endif - public bool IsValue6 => Value6 != null; - - /// - /// - /// - public static implicit operator AnyOf(T6 value) => new AnyOf(value); - - /// - /// - /// - public static implicit operator T6?(AnyOf @this) => @this.Value6; - - /// - /// - /// - public AnyOf(T6? value) - { - Value6 = value; - } - - /// - /// - /// - public AnyOf( - T1? value1, - T2? value2, - T3? value3, - T4? value4, - T5? value5, - T6? value6 - ) - { - Value1 = value1; - Value2 = value2; - Value3 = value3; - Value4 = value4; - Value5 = value5; - Value6 = value6; - } - - /// - /// - /// - public object? Object => - Value6 as object ?? - Value5 as object ?? - Value4 as object ?? - Value3 as object ?? - Value2 as object ?? - Value1 as object - ; - - /// - /// - /// - public bool Validate() - { - return IsValue1 || IsValue2 || IsValue3 || IsValue4 || IsValue5 || IsValue6; - } - - /// - /// - /// - public TResult? Match( - global::System.Func? value1 = null, - global::System.Func? value2 = null, - global::System.Func? value3 = null, - global::System.Func? value4 = null, - global::System.Func? value5 = null, - global::System.Func? value6 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1 && value1 != null) - { - return value1(Value1!); - } - else if (IsValue2 && value2 != null) - { - return value2(Value2!); - } - else if (IsValue3 && value3 != null) - { - return value3(Value3!); - } - else if (IsValue4 && value4 != null) - { - return value4(Value4!); - } - else if (IsValue5 && value5 != null) - { - return value5(Value5!); - } - else if (IsValue6 && value6 != null) - { - return value6(Value6!); - } - - return default(TResult); - } - - /// - /// - /// - public void Match( - global::System.Action? value1 = null, - global::System.Action? value2 = null, - global::System.Action? value3 = null, - global::System.Action? value4 = null, - global::System.Action? value5 = null, - global::System.Action? value6 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - else if (IsValue3) - { - value3?.Invoke(Value3!); - } - else if (IsValue4) - { - value4?.Invoke(Value4!); - } - else if (IsValue5) - { - value5?.Invoke(Value5!); - } - else if (IsValue6) - { - value6?.Invoke(Value6!); - } - } - - /// - /// - /// - public override int GetHashCode() - { - var fields = new object?[] - { - Value1, - typeof(T1), - Value2, - typeof(T2), - Value3, - typeof(T3), - Value4, - typeof(T4), - Value5, - typeof(T5), - Value6, - typeof(T6), - }; - const int offset = unchecked((int)2166136261); - const int prime = 16777619; - static int HashCodeAggregator(int hashCode, object? value) => value == null - ? (hashCode ^ 0) * prime - : (hashCode ^ value.GetHashCode()) * prime; - return fields.Aggregate(offset, HashCodeAggregator); - } - - /// - /// - /// - public bool Equals(AnyOf other) - { - return - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value4, other.Value4) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value5, other.Value5) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value6, other.Value6) - ; - } - - /// - /// - /// - public static bool operator ==(AnyOf obj1, AnyOf obj2) - { - return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2); - } - - /// - /// - /// - public static bool operator !=(AnyOf obj1, AnyOf obj2) - { - return !(obj1 == obj2); - } - - /// - /// - /// - public override bool Equals(object? obj) - { - return obj is AnyOf o && Equals(o); - } - } -} diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs index 499b7f9460..6347270ce3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs @@ -137,13 +137,13 @@ partial void ProcessCreateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? updatedAt = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, - global::G.AnyOf? enableReservations = default, - global::G.AnyOf? reservationMinutes = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, + bool? enableReservations = true, + int? reservationMinutes = 1, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs index d1412e4b36..792917479c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs @@ -131,8 +131,8 @@ partial void ProcessCreateIdentityAnnotationQueueRunStatusResponseContent( /// public async global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::G.AnyOf? status = default, - global::G.AnyOf? overrideAddedAt = default, + string? status = default, + global::System.DateTime? overrideAddedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityAnnotationQueueRunStatusCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs index 73c49c4421..1a8bf5567c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.GetAnnotationQueues.g.verified.cs @@ -8,21 +8,21 @@ public partial class AnnotationQueuesClient { partial void PrepareGetAnnotationQueuesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? ids, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, + global::System.Collections.Generic.IList? ids, + ref string? name, + ref string? nameContains, ref int? offset, ref int? limit, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareGetAnnotationQueuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? ids, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, + global::System.Collections.Generic.IList? ids, + string? name, + string? nameContains, int? offset, int? limit, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessGetAnnotationQueuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -48,35 +48,35 @@ partial void ProcessGetAnnotationQueuesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + global::System.Collections.Generic.IList? ids = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareGetAnnotationQueuesArguments( httpClient: _httpClient, - ids: ref ids, + ids: ids, name: ref name, nameContains: ref nameContains, offset: ref offset, limit: ref limit, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/annotation-queues", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("ids", ids?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("ids", ids, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs index c64fcc74e5..336a9e3b0d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs @@ -139,12 +139,12 @@ partial void ProcessUpdateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, bool? enableReservations = true, - global::G.AnyOf? reservationMinutes = default, + int? reservationMinutes = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.AnnotationQueueUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs index cba23fcd5d..810904b6fb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.AnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs @@ -139,8 +139,8 @@ partial void ProcessUpdateRunInAnnotationQueueResponseContent( public async global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::G.AnyOf? lastReviewedTime = default, - global::G.AnyOf? addedAt = default, + global::System.DateTime? lastReviewedTime = default, + global::System.DateTime? addedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.AnnotationQueueRunUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Api.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Api.g.verified.cs index 9da97b7721..beae44d7bc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Api.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Api.g.verified.cs @@ -73,8 +73,8 @@ public sealed partial class Api : global::G.IApi, global::System.IDisposable new global::G.JsonConverters.ExampleListOrderNullableJsonConverter(), new global::G.JsonConverters.ExampleSelectJsonConverter(), new global::G.JsonConverters.ExampleSelectNullableJsonConverter(), - new global::G.JsonConverters.TraceTier3JsonConverter(), - new global::G.JsonConverters.TraceTier3NullableJsonConverter(), + new global::G.JsonConverters.TraceTierJsonConverter(), + new global::G.JsonConverters.TraceTierNullableJsonConverter(), new global::G.JsonConverters.FeedbackLevelJsonConverter(), new global::G.JsonConverters.FeedbackLevelNullableJsonConverter(), new global::G.JsonConverters.OAuthProviderJsonConverter(), @@ -111,33 +111,31 @@ public sealed partial class Api : global::G.IApi, global::System.IDisposable new global::G.JsonConverters.TenantShareRunTokenTypeNullableJsonConverter(), new global::G.JsonConverters.TenantUsageLimitTypeJsonConverter(), new global::G.JsonConverters.TenantUsageLimitTypeNullableJsonConverter(), - new global::G.JsonConverters.UsageLimitType2JsonConverter(), - new global::G.JsonConverters.UsageLimitType2NullableJsonConverter(), + new global::G.JsonConverters.UsageLimitTypeJsonConverter(), + new global::G.JsonConverters.UsageLimitTypeNullableJsonConverter(), new global::G.JsonConverters.CreateRunRequestRunTypeJsonConverter(), new global::G.JsonConverters.CreateRunRequestRunTypeNullableJsonConverter(), new global::G.JsonConverters.BatchIngestRunsRequestPostItemRunTypeJsonConverter(), new global::G.JsonConverters.BatchIngestRunsRequestPostItemRunTypeNullableJsonConverter(), - new global::G.JsonConverters.ListRulesApiV1RunsRulesGetType2JsonConverter(), - new global::G.JsonConverters.ListRulesApiV1RunsRulesGetType2NullableJsonConverter(), - new global::G.JsonConverters.ListReposApiV1ReposGetIsArchived2JsonConverter(), - new global::G.JsonConverters.ListReposApiV1ReposGetIsArchived2NullableJsonConverter(), - new global::G.JsonConverters.ListReposApiV1ReposGetIsPublic2JsonConverter(), - new global::G.JsonConverters.ListReposApiV1ReposGetIsPublic2NullableJsonConverter(), + new global::G.JsonConverters.ListRulesApiV1RunsRulesGetTypeJsonConverter(), + new global::G.JsonConverters.ListRulesApiV1RunsRulesGetTypeNullableJsonConverter(), + new global::G.JsonConverters.ListReposApiV1ReposGetIsArchivedJsonConverter(), + new global::G.JsonConverters.ListReposApiV1ReposGetIsArchivedNullableJsonConverter(), + new global::G.JsonConverters.ListReposApiV1ReposGetIsPublicJsonConverter(), + new global::G.JsonConverters.ListReposApiV1ReposGetIsPublicNullableJsonConverter(), new global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant1JsonConverter(), new global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant1NullableJsonConverter(), new global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant2JsonConverter(), new global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant2NullableJsonConverter(), - new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter(), - new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverter(), - new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter(), - new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter(), + new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedJsonConverter(), + new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullableJsonConverter(), + new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicJsonConverter(), + new global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullableJsonConverter(), new global::G.JsonConverters.AnyOfJsonConverterFactory2(), new global::G.JsonConverters.AnyOfJsonConverterFactory3(), - new global::G.JsonConverters.AnyOfJsonConverterFactory4(), - new global::G.JsonConverters.AnyOfJsonConverterFactory6(), new global::G.JsonConverters.AnyOfJsonConverterFactory5(), + new global::G.JsonConverters.AnyOfJsonConverterFactory4(), new global::G.JsonConverters.OneOfJsonConverterFactory2(), - new global::G.JsonConverters.OneOfJsonConverterFactory3(), } }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateChart.g.verified.cs index cc14134969..7458f26b5e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateChart.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessCreateChartResponseContent( string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, - global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + string? description = default, + int? index = default, + global::System.Guid? sectionId = default, + object? metadata = default, + global::G.CustomChartSeriesFilters? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateSection.g.verified.cs index 45e6155f7c..7f73e77eaf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.CreateSection.g.verified.cs @@ -127,8 +127,8 @@ partial void ProcessCreateSectionResponseContent( /// public async global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, + string? description = default, + int? index = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsSectionCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadCharts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadCharts.g.verified.cs index 55bab53f4d..a2cf0167e2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadCharts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadCharts.g.verified.cs @@ -135,10 +135,10 @@ partial void ProcessReadChartsResponseContent( public async global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSections.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSections.g.verified.cs index a934acdbd4..7b057e49c0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSections.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSections.g.verified.cs @@ -10,21 +10,21 @@ partial void PrepareReadSectionsArguments( global::System.Net.Http.HttpClient httpClient, ref int? limit, ref int? offset, - ref global::G.AnyOf? titleContains, - ref global::G.AnyOf, object>? ids, - ref global::G.AnyOf? sortBy, - ref global::G.AnyOf? sortByDesc, - ref global::G.AnyOf, object>? tagValueId); + ref string? titleContains, + global::System.Collections.Generic.IList? ids, + ref string? sortBy, + ref bool? sortByDesc, + global::System.Collections.Generic.IList? tagValueId); partial void PrepareReadSectionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int? limit, int? offset, - global::G.AnyOf? titleContains, - global::G.AnyOf, object>? ids, - global::G.AnyOf? sortBy, - global::G.AnyOf? sortByDesc, - global::G.AnyOf, object>? tagValueId); + string? titleContains, + global::System.Collections.Generic.IList? ids, + string? sortBy, + bool? sortByDesc, + global::System.Collections.Generic.IList? tagValueId); partial void ProcessReadSectionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -58,11 +58,11 @@ partial void ProcessReadSectionsResponseContent( public async global::System.Threading.Tasks.Task> ReadSectionsAsync( int? limit = 100, int? offset = 0, - global::G.AnyOf? titleContains = default, - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? sortBy = default, - global::G.AnyOf? sortByDesc = default, - global::G.AnyOf, object>? tagValueId = default, + string? titleContains = default, + global::System.Collections.Generic.IList? ids = default, + string? sortBy = "created_at", + bool? sortByDesc = true, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -72,10 +72,10 @@ partial void ProcessReadSectionsResponseContent( limit: ref limit, offset: ref offset, titleContains: ref titleContains, - ids: ref ids, + ids: ids, sortBy: ref sortBy, sortByDesc: ref sortByDesc, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/charts/section", @@ -83,11 +83,11 @@ partial void ProcessReadSectionsResponseContent( __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("title_contains", titleContains?.ToString() ?? string.Empty) - .AddOptionalParameter("ids", ids?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("title_contains", titleContains) + .AddOptionalParameter("ids", ids, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("sort_by", sortBy) + .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs index 262fb951d0..784c750ef7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleChart.g.verified.cs @@ -143,10 +143,10 @@ partial void ProcessReadSingleChartResponseContent( global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs index 5573ce1f98..1ba11da6fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.ReadSingleSection.g.verified.cs @@ -141,7 +141,7 @@ partial void ProcessReadSingleSectionResponseContent( global::System.Guid sectionId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateChart.g.verified.cs index 70c3ca4d9c..0c41edb97a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateChart.g.verified.cs @@ -140,13 +140,13 @@ partial void ProcessUpdateChartResponseContent( public async global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::G.AnyOf? chartType = default, global::G.AnyOf, global::G.Missing>? series = default, global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateSection.g.verified.cs index a7f935d0c6..8a461f2519 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateSection.g.verified.cs @@ -135,7 +135,7 @@ partial void ProcessUpdateSectionResponseContent( public async global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.CreateCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.CreateCommit.g.verified.cs index e6aa688fc3..17d7b087d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.CreateCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.CreateCommit.g.verified.cs @@ -143,8 +143,8 @@ partial void ProcessCreateCommitResponseContent( string owner, string repo, object manifest, - global::G.AnyOf? parentCommit = default, - global::G.AnyOf, object>? exampleRunIds = default, + string? parentCommit = default, + global::System.Collections.Generic.IList? exampleRunIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRepoCommitRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.GetCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.GetCommit.g.verified.cs index 6c5086b8b5..553501302d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.GetCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.CommitsClient.GetCommit.g.verified.cs @@ -13,7 +13,7 @@ partial void PrepareGetCommitArguments( ref string commit, ref bool? getExamples, ref bool? isView, - ref global::G.AnyOf? includeModel); + ref bool? includeModel); partial void PrepareGetCommitRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, @@ -22,7 +22,7 @@ partial void PrepareGetCommitRequest( string commit, bool? getExamples, bool? isView, - global::G.AnyOf? includeModel); + bool? includeModel); partial void ProcessGetCommitResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -56,7 +56,7 @@ partial void ProcessGetCommitResponseContent( string commit, bool? getExamples = false, bool? isView = false, - global::G.AnyOf? includeModel = default, + bool? includeModel = false, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -76,7 +76,7 @@ partial void ProcessGetCommitResponseContent( __pathBuilder .AddOptionalParameter("get_examples", getExamples?.ToString()) .AddOptionalParameter("is_view", isView?.ToString()) - .AddOptionalParameter("include_model", includeModel?.ToString() ?? string.Empty) + .AddOptionalParameter("include_model", includeModel?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CloneDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CloneDataset.g.verified.cs index 73148083ea..48b7b7e037 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CloneDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CloneDataset.g.verified.cs @@ -122,7 +122,9 @@ partial void ProcessCloneDatasetResponseContent( /// /// /// - /// + /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. + /// /// /// Default Value: [] /// @@ -131,7 +133,7 @@ partial void ProcessCloneDatasetResponseContent( public async global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::G.AnyOf?, object>? asOf = default, + object? asOf = default, global::System.Collections.Generic.IList? examples = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs index 43a8182181..ab505dce55 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateComparativeExperiment.g.verified.cs @@ -134,11 +134,11 @@ partial void ProcessCreateComparativeExperimentResponseContent( global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, + string? name = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? extra = default, + object? extra = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ComparativeExperimentCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateDataset.g.verified.cs index f38403b5b9..c626be1c43 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.CreateDataset.g.verified.cs @@ -137,13 +137,13 @@ partial void ProcessCreateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf? externallyManaged = default, - global::G.AnyOf? id = default, - global::G.AnyOf? extra = default, + object? inputsSchemaDefinition = default, + object? outputsSchemaDefinition = default, + bool? externallyManaged = false, + global::System.Guid? id = default, + object? extra = default, global::G.DataType? dataType = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs index f12cea666b..55f1eeb8e3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DatasetHandler.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessDatasetHandlerResponseContent( global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs index b00128b2eb..ef903aa4ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetCsv.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetCsvArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetCsvRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetCsvResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetCsvResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetCsvAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetCsvResponseContent( path: $"/api/v1/datasets/{datasetId}/csv", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs index d5dec3801d..f9cf9dc3e8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenai.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetOpenaiArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetOpenaiRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetOpenaiResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetOpenaiResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetOpenaiAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetOpenaiResponseContent( path: $"/api/v1/datasets/{datasetId}/openai", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs index a865c694f4..a8bbd16840 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareDownloadDatasetOpenaiFtArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf); + ref global::System.DateTime? asOf); partial void PrepareDownloadDatasetOpenaiFtRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf); + global::System.DateTime? asOf); partial void ProcessDownloadDatasetOpenaiFtResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessDownloadDatasetOpenaiFtResponseContent( /// public async global::System.Threading.Tasks.Task DownloadDatasetOpenaiFtAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +50,7 @@ partial void ProcessDownloadDatasetOpenaiFtResponseContent( path: $"/api/v1/datasets/{datasetId}/openai_ft", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Generate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Generate.g.verified.cs index a97d2c91bf..67bf0476a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Generate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Generate.g.verified.cs @@ -134,7 +134,7 @@ partial void ProcessGenerateResponseContent( public async global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::G.AnyOf, object>? exampleIds = default, + global::System.Collections.Generic.IList? exampleIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.GenerateSyntheticExamplesBody diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs index 7b37b08d74..e35ad1da9a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersion.g.verified.cs @@ -9,14 +9,14 @@ public partial class DatasetsClient partial void PrepareGetDatasetVersionArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? asOf, - ref global::G.AnyOf? tag); + ref global::System.DateTime? asOf, + ref string? tag); partial void PrepareGetDatasetVersionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? asOf, - global::G.AnyOf? tag); + global::System.DateTime? asOf, + string? tag); partial void ProcessGetDatasetVersionResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,8 +37,8 @@ partial void ProcessGetDatasetVersionResponseContent( /// public async global::System.Threading.Tasks.Task GetDatasetVersionAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, - global::G.AnyOf? tag = default, + global::System.DateTime? asOf = default, + string? tag = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -53,8 +53,8 @@ partial void ProcessGetDatasetVersionResponseContent( path: $"/api/v1/datasets/{datasetId}/version", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("tag", tag?.ToString() ?? string.Empty) + .AddOptionalParameter("as_of", asOf?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("tag", tag) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs index 03fc19e1c4..34b735edbd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetVersions.g.verified.cs @@ -9,16 +9,16 @@ public partial class DatasetsClient partial void PrepareGetDatasetVersionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? search, - ref global::G.AnyOf? example, + ref string? search, + ref global::System.Guid? example, ref int? limit, ref int? offset); partial void PrepareGetDatasetVersionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? search, - global::G.AnyOf? example, + string? search, + global::System.Guid? example, int? limit, int? offset); partial void ProcessGetDatasetVersionsResponse( @@ -47,8 +47,8 @@ partial void ProcessGetDatasetVersionsResponseContent( /// public async global::System.Threading.Tasks.Task> GetDatasetVersionsAsync( global::System.Guid datasetId, - global::G.AnyOf? search = default, - global::G.AnyOf? example = default, + string? search = default, + global::System.Guid? example = default, int? limit = 100, int? offset = 0, global::System.Threading.CancellationToken cancellationToken = default) @@ -67,8 +67,8 @@ partial void ProcessGetDatasetVersionsResponseContent( path: $"/api/v1/datasets/{datasetId}/versions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("search", search?.ToString() ?? string.Empty) - .AddOptionalParameter("example", example?.ToString() ?? string.Empty) + .AddOptionalParameter("search", search) + .AddOptionalParameter("example", example?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) ; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Index.g.verified.cs index 0869dda323..efda0b8931 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Index.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Index.g.verified.cs @@ -134,7 +134,7 @@ partial void ProcessIndexResponseContent( /// public async global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::G.AnyOf? tag = default, + string? tag = "latest", global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetIndexRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs index 5260a9feda..6f43a82738 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadComparativeExperiments.g.verified.cs @@ -9,9 +9,9 @@ public partial class DatasetsClient partial void PrepareReadComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf, object>? id, + ref string? name, + ref string? nameContains, + global::System.Collections.Generic.IList? id, ref int? offset, ref int? limit, ref global::G.SortByComparativeExperimentColumn? sortBy, @@ -20,9 +20,9 @@ partial void PrepareReadComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf, object>? id, + string? name, + string? nameContains, + global::System.Collections.Generic.IList? id, int? offset, int? limit, global::G.SortByComparativeExperimentColumn? sortBy, @@ -60,9 +60,9 @@ partial void ProcessReadComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf, object>? id = default, + string? name = default, + string? nameContains = default, + global::System.Collections.Generic.IList? id = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, @@ -76,7 +76,7 @@ partial void ProcessReadComparativeExperimentsResponseContent( datasetId: ref datasetId, name: ref name, nameContains: ref nameContains, - id: ref id, + id: id, offset: ref offset, limit: ref limit, sortBy: ref sortBy, @@ -86,9 +86,9 @@ partial void ProcessReadComparativeExperimentsResponseContent( path: $"/api/v1/datasets/{datasetId}/comparative", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortBy?.ToValueString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs index 5ea8de741e..84e58fa952 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasetShareState.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessReadDatasetShareStateResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ReadDatasetShareStateAsync( + public async global::System.Threading.Tasks.Task ReadDatasetShareStateAsync( global::System.Guid datasetId, global::System.Threading.CancellationToken cancellationToken = default) { @@ -104,7 +104,7 @@ partial void ProcessReadDatasetShareStateResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize?>(__content, JsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize(__content, JsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs index b83e8ae99a..5afc204069 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDatasets.g.verified.cs @@ -8,29 +8,29 @@ public partial class DatasetsClient { partial void PrepareReadDatasetsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf, global::G.DataType?, object>? dataType, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? metadata, + global::System.Collections.Generic.IList? id, + ref global::G.AnyOf, global::G.DataType?>? dataType, + ref string? name, + ref string? nameContains, + ref string? metadata, ref int? offset, ref int? limit, ref global::G.SortByDatasetColumn? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareReadDatasetsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, - global::G.AnyOf, global::G.DataType?, object>? dataType, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? metadata, + global::System.Collections.Generic.IList? id, + global::G.AnyOf, global::G.DataType?>? dataType, + string? name, + string? nameContains, + string? metadata, int? offset, int? limit, global::G.SortByDatasetColumn? sortBy, bool? sortByDesc, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessReadDatasetsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,23 +65,23 @@ partial void ProcessReadDatasetsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf, global::G.DataType?, object>? dataType = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? metadata = default, + global::System.Collections.Generic.IList? id = default, + global::G.AnyOf, global::G.DataType?>? dataType = default, + string? name = default, + string? nameContains = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::G.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadDatasetsArguments( httpClient: _httpClient, - id: ref id, + id: id, dataType: ref dataType, name: ref name, nameContains: ref nameContains, @@ -90,22 +90,22 @@ partial void ProcessReadDatasetsResponseContent( limit: ref limit, sortBy: ref sortBy, sortByDesc: ref sortByDesc, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/datasets", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("data_type", dataType?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("metadata", metadata) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortBy?.ToValueString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDelta.g.verified.cs index 850572f44d..602da55d1e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadDelta.g.verified.cs @@ -145,10 +145,10 @@ partial void ProcessReadDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryFeedbackDelta diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs index 2635136fba..16abe508ae 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.ReadExamplesWithRuns.g.verified.cs @@ -141,8 +141,8 @@ partial void ProcessReadExamplesWithRunsResponseContent( public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Search.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Search.g.verified.cs index 6a6af0cc0c..3aec384b73 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Search.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Search.g.verified.cs @@ -142,7 +142,7 @@ partial void ProcessSearchResponseContent( object inputs, int? limit = 5, bool? debug = false, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.SearchDatasetRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs index d8cb927422..e00861e1f3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.StreamDatasetHandler.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessStreamDatasetHandlerResponseContent( global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs index 86f635569c..89b0b58e86 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf, object>? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::System.Collections.Generic.Dictionary? patchExamples = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs index 68ab81297d..140f3ed7fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadCsvDataset.g.verified.cs @@ -81,7 +81,7 @@ partial void ProcessUploadCsvDatasetResponseContent( if (request.Name != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent(request.Name?.Value1?.ToString() ?? request.Name?.Value2?.ToString() ?? string.Empty), + content: new global::System.Net.Http.StringContent($"{request.Name}"), name: "name"); } if (request.DataType != default) @@ -99,7 +99,7 @@ partial void ProcessUploadCsvDatasetResponseContent( if (request.Description != default) { __httpRequestContent.Add( - content: new global::System.Net.Http.StringContent(request.Description?.Value1?.ToString() ?? request.Description?.Value2?.ToString() ?? string.Empty), + content: new global::System.Net.Http.StringContent($"{request.Description}"), name: "description"); } httpRequest.Content = __httpRequestContent; @@ -170,10 +170,10 @@ partial void ProcessUploadCsvDatasetResponseContent( byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::G.AnyOf? name = default, + string? name = default, global::G.DataType? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyUploadCsvDatasetApiV1DatasetsUploadPost diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs index 4247d455ab..a4f0294d23 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UploadExperiment.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessUploadExperimentResponseContent( global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::G.AnyOf? experimentDescription = default, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? datasetName = default, - global::G.AnyOf? datasetDescription = default, - global::G.AnyOf, object>? summaryExperimentScores = default, - global::G.AnyOf? experimentMetadata = default, + string? experimentDescription = default, + global::System.Guid? datasetId = default, + string? datasetName = default, + string? datasetDescription = default, + global::System.Collections.Generic.IList? summaryExperimentScores = default, + object? experimentMetadata = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ExperimentResultsUpload diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.EventsClient.CreateEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.EventsClient.CreateEvent.g.verified.cs index 03ece5ec9b..58f35f0793 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.EventsClient.CreateEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.EventsClient.CreateEvent.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateEventResponseContent( global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::G.AnyOf? commit = default, + string? commit = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateEventRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CountExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CountExamples.g.verified.cs index 1dc05ffb08..dc7013230d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CountExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CountExamples.g.verified.cs @@ -8,23 +8,23 @@ public partial class ExamplesClient { partial void PrepareCountExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf, object>? fullTextContains, - ref global::G.AnyOf, object>? splits, - ref global::G.AnyOf? dataset, - ref global::G.AnyOf? filter); + ref string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + ref global::System.Guid? dataset, + ref string? filter); partial void PrepareCountExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf, object>? fullTextContains, - global::G.AnyOf, object>? splits, - global::G.AnyOf? dataset, - global::G.AnyOf? filter); + string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + global::System.Guid? dataset, + string? filter); partial void ProcessCountExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -51,24 +51,24 @@ partial void ProcessCountExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CountExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, - global::G.AnyOf? filter = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareCountExamplesArguments( httpClient: _httpClient, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, - fullTextContains: ref fullTextContains, - splits: ref splits, + fullTextContains: fullTextContains, + splits: splits, dataset: ref dataset, filter: ref filter); @@ -76,13 +76,13 @@ partial void ProcessCountExamplesResponseContent( path: "/api/v1/examples/count", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("full_text_contains", fullTextContains?.ToString() ?? string.Empty) - .AddOptionalParameter("splits", splits?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset", dataset?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("full_text_contains", fullTextContains, delimiter: ",", explode: true) + .AddOptionalParameter("splits", splits, delimiter: ",", explode: true) + .AddOptionalParameter("dataset", dataset?.ToString()) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CreateExample.g.verified.cs index 3eb8dfb287..37bf7b26a4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CreateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CreateExample.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessCreateExampleResponseContent( /// public async global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::G.AnyOf? outputs = default, - global::G.AnyOf? sourceRunId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf, string, object>? split = default, - global::G.AnyOf? id = default, + object? outputs = default, + global::System.Guid? sourceRunId = default, + object? metadata = default, + object? inputs = default, + global::G.AnyOf, string>? split = default, + global::System.Guid? id = default, bool? useSourceRunIo = false, global::System.DateTime? createdAt = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExamples.g.verified.cs index 9777e013c8..6a328da2a0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExamples.g.verified.cs @@ -8,33 +8,33 @@ public partial class ExamplesClient { partial void PrepareReadExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf, object>? fullTextContains, - ref global::G.AnyOf, object>? splits, - ref global::G.AnyOf? dataset, + ref string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + ref global::System.Guid? dataset, ref int? offset, ref int? limit, ref global::G.ExampleListOrder? order, - ref global::G.AnyOf? randomSeed, + ref double? randomSeed, global::System.Collections.Generic.IList? select, - ref global::G.AnyOf? filter); + ref string? filter); partial void PrepareReadExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf, object>? fullTextContains, - global::G.AnyOf, object>? splits, - global::G.AnyOf? dataset, + string? metadata, + global::System.Collections.Generic.IList? fullTextContains, + global::System.Collections.Generic.IList? splits, + global::System.Guid? dataset, int? offset, int? limit, global::G.ExampleListOrder? order, - global::G.AnyOf? randomSeed, + double? randomSeed, global::System.Collections.Generic.IList? select, - global::G.AnyOf? filter); + string? filter); partial void ProcessReadExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -72,29 +72,29 @@ partial void ProcessReadExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, int? offset = 0, int? limit = 100, global::G.ExampleListOrder? order = default, - global::G.AnyOf? randomSeed = default, + double? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadExamplesArguments( httpClient: _httpClient, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, - fullTextContains: ref fullTextContains, - splits: ref splits, + fullTextContains: fullTextContains, + splits: splits, dataset: ref dataset, offset: ref offset, limit: ref limit, @@ -107,17 +107,17 @@ partial void ProcessReadExamplesResponseContent( path: "/api/v1/examples", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("full_text_contains", fullTextContains?.ToString() ?? string.Empty) - .AddOptionalParameter("splits", splits?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset", dataset?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("full_text_contains", fullTextContains, delimiter: ",", explode: true) + .AddOptionalParameter("splits", splits, delimiter: ",", explode: true) + .AddOptionalParameter("dataset", dataset?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("order", order?.ToValueString()) - .AddOptionalParameter("random_seed", randomSeed?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("random_seed", randomSeed?.ToString()) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.UpdateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.UpdateExample.g.verified.cs index 4c6623adf5..27330dcab0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.UpdateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.UpdateExample.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateExampleResponseContent( /// public async global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf? outputs = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, string, object>? split = default, + global::System.Guid? datasetId = default, + object? inputs = default, + object? outputs = default, + object? metadata = default, + global::G.AnyOf, string>? split = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ExampleUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs index 7fac509d38..1faa807f1b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedback.g.verified.cs @@ -140,17 +140,17 @@ partial void ProcessCreateFeedbackResponseContent( string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs index 85f80d7d2e..c219dc0f4f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs @@ -9,18 +9,18 @@ public partial class FeedbackClient partial void PrepareCreateFeedbackWithTokenGetArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid token, - ref global::G.AnyOf? score, - ref global::G.AnyOf? value, - ref global::G.AnyOf? comment, - ref global::G.AnyOf? correction); + ref global::G.AnyOf? score, + ref global::G.AnyOf? value, + ref string? comment, + ref string? correction); partial void PrepareCreateFeedbackWithTokenGetRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid token, - global::G.AnyOf? score, - global::G.AnyOf? value, - global::G.AnyOf? comment, - global::G.AnyOf? correction); + global::G.AnyOf? score, + global::G.AnyOf? value, + string? comment, + string? correction); partial void ProcessCreateFeedbackWithTokenGetResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,10 +43,10 @@ partial void ProcessCreateFeedbackWithTokenGetResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenGetAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + string? correction = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -65,8 +65,8 @@ partial void ProcessCreateFeedbackWithTokenGetResponseContent( __pathBuilder .AddOptionalParameter("score", score?.ToString() ?? string.Empty) .AddOptionalParameter("value", value?.ToString() ?? string.Empty) - .AddOptionalParameter("comment", comment?.ToString() ?? string.Empty) - .AddOptionalParameter("correction", correction?.ToString() ?? string.Empty) + .AddOptionalParameter("comment", comment) + .AddOptionalParameter("correction", correction) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs index 301d7b5d7b..a36efe7371 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs @@ -120,11 +120,11 @@ partial void ProcessCreateFeedbackWithTokenPostResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? metadata = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + object? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateWithTokenExtendedSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs index 8a46fd79b6..26e6747fcd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.EagerlyCreateFeedback.g.verified.cs @@ -144,17 +144,17 @@ partial void ProcessEagerlyCreateFeedbackResponseContent( string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs index 08a5a7ff2e..9f2b244987 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.ReadFeedbacks.g.verified.cs @@ -8,33 +8,33 @@ public partial class FeedbackClient { partial void PrepareReadFeedbacksArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level, - ref global::G.AnyOf? maxCreatedAt, - ref global::G.AnyOf? minCreatedAt); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level, + ref global::System.DateTime? maxCreatedAt, + ref global::System.DateTime? minCreatedAt); partial void PrepareReadFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level, - global::G.AnyOf? maxCreatedAt, - global::G.AnyOf? minCreatedAt); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level, + global::System.DateTime? maxCreatedAt, + global::System.DateTime? minCreatedAt); partial void ProcessReadFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -61,37 +61,39 @@ partial void ProcessReadFeedbacksResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, - global::G.AnyOf? maxCreatedAt = default, - global::G.AnyOf? minCreatedAt = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, + global::System.DateTime? maxCreatedAt = default, + global::System.DateTime? minCreatedAt = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareReadFeedbacksArguments( httpClient: _httpClient, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level, @@ -102,18 +104,17 @@ partial void ProcessReadFeedbacksResponseContent( path: "/api/v1/feedback", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) - .AddOptionalParameter("max_created_at", maxCreatedAt?.ToString() ?? string.Empty) - .AddOptionalParameter("min_created_at", minCreatedAt?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", level?.ToValueString()) + .AddOptionalParameter("max_created_at", maxCreatedAt?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("min_created_at", minCreatedAt?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs index b1b058fdfd..6e703bb257 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.UpdateFeedback.g.verified.cs @@ -136,11 +136,11 @@ partial void ProcessUpdateFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FeedbackUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs index 9586f80da1..c3cd353225 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateFeedbackConfigEndpointResponseContent( public async global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::G.AnyOf? isLowerScoreBetter = default, + bool? isLowerScoreBetter = false, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateFeedbackConfigSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs index c812bef06d..181a18477c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs @@ -8,11 +8,11 @@ public partial class FeedbackConfigsClient { partial void PrepareListFeedbackConfigsEndpointArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? key); + global::System.Collections.Generic.IList? key); partial void PrepareListFeedbackConfigsEndpointRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? key); + global::System.Collections.Generic.IList? key); partial void ProcessListFeedbackConfigsEndpointResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,20 +29,20 @@ partial void ProcessListFeedbackConfigsEndpointResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::G.AnyOf, object>? key = default, + global::System.Collections.Generic.IList? key = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareListFeedbackConfigsEndpointArguments( httpClient: _httpClient, - key: ref key); + key: key); var __pathBuilder = new PathBuilder( path: "/api/v1/feedback-configs", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs index 4c0c89dd51..4f2a5e3bfd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessUpdateFeedbackConfigEndpointResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::G.AnyOf? feedbackConfig = default, - global::G.AnyOf? isLowerScoreBetter = default, + global::G.FeedbackConfig? feedbackConfig = default, + bool? isLowerScoreBetter = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateFeedbackConfigSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs index cee65ce630..9338f1c2b3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateAnnotationQueue.g.verified.cs @@ -37,13 +37,13 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? updatedAt = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, - global::G.AnyOf? enableReservations = default, - global::G.AnyOf? reservationMinutes = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, + bool? enableReservations = true, + int? reservationMinutes = 1, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs index c3348cc9cc..63d26bf4e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.CreateIdentityAnnotationQueueRunStatus.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::G.AnyOf? status = default, - global::G.AnyOf? overrideAddedAt = default, + string? status = default, + global::System.DateTime? overrideAddedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs index 028947a43c..b8c541ba93 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.GetAnnotationQueues.g.verified.cs @@ -21,12 +21,12 @@ public partial interface IAnnotationQueuesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + global::System.Collections.Generic.IList? ids = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs index 2ea146e7d0..bf8db8019a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateAnnotationQueue.g.verified.cs @@ -35,12 +35,12 @@ public partial interface IAnnotationQueuesClient /// global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDataset = default, - global::G.AnyOf? numReviewersPerItem = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDataset = default, + int? numReviewersPerItem = 1, bool? enableReservations = true, - global::G.AnyOf? reservationMinutes = default, + int? reservationMinutes = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs index 91b12feebf..6bfd0e0fc4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IAnnotationQueuesClient.UpdateRunInAnnotationQueue.g.verified.cs @@ -31,8 +31,8 @@ public partial interface IAnnotationQueuesClient global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::G.AnyOf? lastReviewedTime = default, - global::G.AnyOf? addedAt = default, + global::System.DateTime? lastReviewedTime = default, + global::System.DateTime? addedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateChart.g.verified.cs index 4fe3dff973..1f64d37a72 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateChart.g.verified.cs @@ -36,11 +36,11 @@ public partial interface IChartsClient string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, - global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + string? description = default, + int? index = default, + global::System.Guid? sectionId = default, + object? metadata = default, + global::G.CustomChartSeriesFilters? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateSection.g.verified.cs index ea02ccf258..4fd4831296 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.CreateSection.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IChartsClient /// global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::G.AnyOf? description = default, - global::G.AnyOf? index = default, + string? description = default, + int? index = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadCharts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadCharts.g.verified.cs index 8af09fd3b1..2e0cf228ff 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadCharts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadCharts.g.verified.cs @@ -35,10 +35,10 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSections.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSections.g.verified.cs index 30250bb875..f735c142db 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSections.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSections.g.verified.cs @@ -29,11 +29,11 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task> ReadSectionsAsync( int? limit = 100, int? offset = 0, - global::G.AnyOf? titleContains = default, - global::G.AnyOf, object>? ids = default, - global::G.AnyOf? sortBy = default, - global::G.AnyOf? sortByDesc = default, - global::G.AnyOf, object>? tagValueId = default, + string? titleContains = default, + global::System.Collections.Generic.IList? ids = default, + string? sortBy = "created_at", + bool? sortByDesc = true, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs index ffdd6f38da..cb970b958a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleChart.g.verified.cs @@ -39,10 +39,10 @@ public partial interface IChartsClient global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, - global::G.AnyOf? afterIndex = default, - global::G.AnyOf, object>? tagValueId = default, + int? afterIndex = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs index cd4f613e94..97867c33a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.ReadSingleSection.g.verified.cs @@ -37,7 +37,7 @@ public partial interface IChartsClient global::System.Guid sectionId, global::System.DateTime startTime, string? timezone = "UTC", - global::G.AnyOf? endTime = default, + global::System.DateTime? endTime = default, global::G.TimedeltaInput? stride = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateChart.g.verified.cs index b65561df2b..a19bc5f98d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateChart.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateChart.g.verified.cs @@ -36,13 +36,13 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::G.AnyOf? chartType = default, global::G.AnyOf, global::G.Missing>? series = default, global::G.AnyOf? sectionId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? commonFilters = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? commonFilters = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateSection.g.verified.cs index c4280c14a3..af4be1b6a6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IChartsClient.UpdateSection.g.verified.cs @@ -31,7 +31,7 @@ public partial interface IChartsClient global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, global::G.AnyOf? title = default, - global::G.AnyOf? description = default, + global::G.AnyOf? description = default, global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.CreateCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.CreateCommit.g.verified.cs index 3fa5786bb1..9e4b7e9f1d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.CreateCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.CreateCommit.g.verified.cs @@ -35,8 +35,8 @@ public partial interface ICommitsClient string owner, string repo, object manifest, - global::G.AnyOf? parentCommit = default, - global::G.AnyOf, object>? exampleRunIds = default, + string? parentCommit = default, + global::System.Collections.Generic.IList? exampleRunIds = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.GetCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.GetCommit.g.verified.cs index e7aaf2b282..c51b4a0af5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.GetCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ICommitsClient.GetCommit.g.verified.cs @@ -29,7 +29,7 @@ public partial interface ICommitsClient string commit, bool? getExamples = false, bool? isView = false, - global::G.AnyOf? includeModel = default, + bool? includeModel = false, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs index 3057e00815..41610c6ef7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CloneDataset.g.verified.cs @@ -22,7 +22,9 @@ public partial interface IDatasetsClient /// /// /// - /// + /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. + /// /// /// Default Value: [] /// @@ -31,7 +33,7 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::G.AnyOf?, object>? asOf = default, + object? asOf = default, global::System.Collections.Generic.IList? examples = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs index 67d5368e71..188e9fa373 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateComparativeExperiment.g.verified.cs @@ -34,11 +34,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, + string? name = default, + string? description = default, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? extra = default, + object? extra = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs index 1b382aad37..bb1dd6df16 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.CreateDataset.g.verified.cs @@ -37,13 +37,13 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::G.AnyOf? description = default, + string? description = default, global::System.DateTime? createdAt = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf? externallyManaged = default, - global::G.AnyOf? id = default, - global::G.AnyOf? extra = default, + object? inputsSchemaDefinition = default, + object? outputsSchemaDefinition = default, + bool? externallyManaged = false, + global::System.Guid? id = default, + object? extra = default, global::G.DataType? dataType = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs index 0c86be3382..da73408168 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DatasetHandler.g.verified.cs @@ -39,11 +39,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs index 94d94dc275..1238978800 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetCsv.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetCsvAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs index dae60292c3..ddaafaf61f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenai.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetOpenaiAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs index 70d3ff7194..4732fed471 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.DownloadDatasetOpenaiFt.g.verified.cs @@ -17,7 +17,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task DownloadDatasetOpenaiFtAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, + global::System.DateTime? asOf = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Generate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Generate.g.verified.cs index 91b382dd38..16397f3b2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Generate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Generate.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::G.AnyOf, object>? exampleIds = default, + global::System.Collections.Generic.IList? exampleIds = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs index b5435cd86f..b9dfc8f41d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersion.g.verified.cs @@ -16,8 +16,8 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task GetDatasetVersionAsync( global::System.Guid datasetId, - global::G.AnyOf? asOf = default, - global::G.AnyOf? tag = default, + global::System.DateTime? asOf = default, + string? tag = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs index a6c78e7bcd..d2a3f131c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.GetDatasetVersions.g.verified.cs @@ -22,8 +22,8 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task> GetDatasetVersionsAsync( global::System.Guid datasetId, - global::G.AnyOf? search = default, - global::G.AnyOf? example = default, + string? search = default, + global::System.Guid? example = default, int? limit = 100, int? offset = 0, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Index.g.verified.cs index a8c69c726f..25570f0139 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Index.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Index.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::G.AnyOf? tag = default, + string? tag = "latest", global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs index 84e39004cd..2afe63768b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadComparativeExperiments.g.verified.cs @@ -29,9 +29,9 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf, object>? id = default, + string? name = default, + string? nameContains = default, + global::System.Collections.Generic.IList? id = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs index 6229ae5a18..0ee5bcb7d7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasetShareState.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IDatasetsClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> ReadDatasetShareStateAsync( + global::System.Threading.Tasks.Task ReadDatasetShareStateAsync( global::System.Guid datasetId, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs index 7b1d92c770..c9c41f2884 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDatasets.g.verified.cs @@ -30,16 +30,16 @@ public partial interface IDatasetsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf, global::G.DataType?, object>? dataType = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? metadata = default, + global::System.Collections.Generic.IList? id = default, + global::G.AnyOf, global::G.DataType?>? dataType = default, + string? name = default, + string? nameContains = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::G.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs index e1d97049a7..55c43ea450 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadDelta.g.verified.cs @@ -41,10 +41,10 @@ public partial interface IDatasetsClient global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs index d25f767630..be38a0e023 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.ReadExamplesWithRuns.g.verified.cs @@ -37,8 +37,8 @@ public partial interface IDatasetsClient global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Search.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Search.g.verified.cs index a1acc61941..f23dff8d97 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Search.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.Search.g.verified.cs @@ -38,7 +38,7 @@ public partial interface IDatasetsClient object inputs, int? limit = 5, bool? debug = false, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs index 770cf7f331..600d6573c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.StreamDatasetHandler.g.verified.cs @@ -39,11 +39,11 @@ public partial interface IDatasetsClient global::System.Collections.Generic.Dictionary secrets, global::G.RunnableConfig options, global::System.Guid datasetId, - global::G.AnyOf? runId = default, - global::G.AnyOf? repoId = default, - global::G.AnyOf, object>? tools = default, - global::G.AnyOf? toolChoice = default, - global::G.AnyOf? projectName = default, + string? runId = default, + string? repoId = default, + global::System.Collections.Generic.IList? tools = default, + string? toolChoice = default, + string? projectName = default, int? repetitions = 1, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs index d6122b2c3b..ae79224d91 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UpdateDataset.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IDatasetsClient /// global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? inputsSchemaDefinition = default, - global::G.AnyOf? outputsSchemaDefinition = default, - global::G.AnyOf, object>? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::System.Collections.Generic.Dictionary? patchExamples = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs index ca10fad57b..260c4c542d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadCsvDataset.g.verified.cs @@ -37,10 +37,10 @@ public partial interface IDatasetsClient byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::G.AnyOf? name = default, + string? name = default, global::G.DataType? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs index 1077690b7e..b50c710632 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IDatasetsClient.UploadExperiment.g.verified.cs @@ -37,12 +37,12 @@ public partial interface IDatasetsClient global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::G.AnyOf? experimentDescription = default, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? datasetName = default, - global::G.AnyOf? datasetDescription = default, - global::G.AnyOf, object>? summaryExperimentScores = default, - global::G.AnyOf? experimentMetadata = default, + string? experimentDescription = default, + global::System.Guid? datasetId = default, + string? datasetName = default, + string? datasetDescription = default, + global::System.Collections.Generic.IList? summaryExperimentScores = default, + object? experimentMetadata = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IEventsClient.CreateEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IEventsClient.CreateEvent.g.verified.cs index e05cadfa36..ba3ebb4062 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IEventsClient.CreateEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IEventsClient.CreateEvent.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IEventsClient global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::G.AnyOf? commit = default, + string? commit = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CountExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CountExamples.g.verified.cs index dff77f8c25..1b06d227af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CountExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CountExamples.g.verified.cs @@ -22,13 +22,13 @@ public partial interface IExamplesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CountExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, - global::G.AnyOf? filter = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CreateExample.g.verified.cs index 8d81eddc6c..c5483e0d47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CreateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.CreateExample.g.verified.cs @@ -37,12 +37,12 @@ public partial interface IExamplesClient /// global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::G.AnyOf? outputs = default, - global::G.AnyOf? sourceRunId = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf, string, object>? split = default, - global::G.AnyOf? id = default, + object? outputs = default, + global::System.Guid? sourceRunId = default, + object? metadata = default, + object? inputs = default, + global::G.AnyOf, string>? split = default, + global::System.Guid? id = default, bool? useSourceRunIo = false, global::System.DateTime? createdAt = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.ReadExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.ReadExamples.g.verified.cs index fdd9932427..b503f2f2f1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.ReadExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.ReadExamples.g.verified.cs @@ -33,18 +33,18 @@ public partial interface IExamplesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, object>? fullTextContains = default, - global::G.AnyOf, object>? splits = default, - global::G.AnyOf? dataset = default, + string? metadata = default, + global::System.Collections.Generic.IList? fullTextContains = default, + global::System.Collections.Generic.IList? splits = default, + global::System.Guid? dataset = default, int? offset = 0, int? limit = 100, global::G.ExampleListOrder? order = default, - global::G.AnyOf? randomSeed = default, + double? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.UpdateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.UpdateExample.g.verified.cs index ffae84a137..1e1d2c5aeb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.UpdateExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IExamplesClient.UpdateExample.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IExamplesClient /// global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? inputs = default, - global::G.AnyOf? outputs = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf, string, object>? split = default, + global::System.Guid? datasetId = default, + object? inputs = default, + object? outputs = default, + object? metadata = default, + global::G.AnyOf, string>? split = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs index e6f1bfc3f9..cab3c890e0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedback.g.verified.cs @@ -40,17 +40,17 @@ public partial interface IFeedbackClient string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs index 1218ef7685..fb5dcca202 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenGet.g.verified.cs @@ -18,10 +18,10 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task CreateFeedbackWithTokenGetAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + string? correction = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs index 1038a61f25..32224871b9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.CreateFeedbackWithTokenPost.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? metadata = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + object? metadata = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs index e820f28191..87dd8c8b6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.EagerlyCreateFeedback.g.verified.cs @@ -44,17 +44,17 @@ public partial interface IFeedbackClient string key, global::System.DateTime? createdAt = default, global::System.DateTime? modifiedAt = default, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackGroupId = default, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf? runId = default, - global::G.AnyOf? sessionId = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::System.Guid? feedbackGroupId = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Guid? runId = default, + global::System.Guid? sessionId = default, global::System.Guid? id = default, - global::G.AnyOf? feedbackSource = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs index e415d4020c..661b2c8dc2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.ReadFeedbacks.g.verified.cs @@ -22,24 +22,26 @@ public partial interface IFeedbackClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, - global::G.AnyOf? maxCreatedAt = default, - global::G.AnyOf? minCreatedAt = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, + global::System.DateTime? maxCreatedAt = default, + global::System.DateTime? minCreatedAt = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs index c1353c2c1d..d8f46fb9fd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackClient.UpdateFeedback.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IFeedbackClient /// global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::G.AnyOf? score = default, - global::G.AnyOf? value = default, - global::G.AnyOf? comment = default, - global::G.AnyOf? correction = default, - global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + string? comment = default, + global::G.AnyOf? correction = default, + global::G.FeedbackConfig? feedbackConfig = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs index 615d4d3008..4320bc926a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.CreateFeedbackConfigEndpoint.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IFeedbackConfigsClient global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::G.AnyOf? isLowerScoreBetter = default, + bool? isLowerScoreBetter = false, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs index 175719ab9c..f22b825fcf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.ListFeedbackConfigsEndpoint.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IFeedbackConfigsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::G.AnyOf, object>? key = default, + global::System.Collections.Generic.IList? key = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs index 809a00905c..7fa5998570 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IFeedbackConfigsClient.UpdateFeedbackConfigEndpoint.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IFeedbackConfigsClient /// global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::G.AnyOf? feedbackConfig = default, - global::G.AnyOf? isLowerScoreBetter = default, + global::G.FeedbackConfig? feedbackConfig = default, + bool? isLowerScoreBetter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs index 5904a3ac90..7d55c335eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.CreateNewModelPrice.g.verified.cs @@ -34,9 +34,9 @@ public partial interface IModelPriceMapClient string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs index c0f02e060d..a687c4abc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IModelPriceMapClient.UpdateModelPrice.g.verified.cs @@ -38,9 +38,9 @@ public partial interface IModelPriceMapClient string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs index 308f5ff8e0..0a12b78b1e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.AddMemberToCurrentOrg.g.verified.cs @@ -32,11 +32,11 @@ public partial interface IOrgsClient global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool? readOnly = false, - global::G.AnyOf? roleId = default, - global::G.AnyOf, object>? workspaceIds = default, - global::G.AnyOf? workspaceRoleId = default, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + global::System.Guid? roleId = default, + global::System.Collections.Generic.IList? workspaceIds = default, + global::System.Guid? workspaceRoleId = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs index d05086d6f2..2ada2b6ffb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.CreateSsoSettings.g.verified.cs @@ -30,8 +30,8 @@ public partial interface IOrgsClient global::System.Threading.Tasks.Task CreateSsoSettingsAsync( global::System.Guid defaultWorkspaceRoleId, global::System.Collections.Generic.IList defaultWorkspaceIds, - global::G.AnyOf? metadataXml = default, - global::G.AnyOf? metadataUrl = default, + string? metadataXml = default, + string? metadataUrl = default, global::System.Collections.Generic.Dictionary? attributeMapping = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.GetDashboard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.GetDashboard.g.verified.cs index ca514faedb..7375809199 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.GetDashboard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.GetDashboard.g.verified.cs @@ -11,12 +11,14 @@ public partial interface IOrgsClient /// /// Enum for acceptable types of dashboards. /// - /// + /// + /// Enum for acceptable color schemes of dashboards. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme, + global::G.OrganizationDashboardColorScheme colorScheme, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs index 3eb28f15c1..98c6802dfd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.SetCompanyInfo.g.verified.cs @@ -18,8 +18,12 @@ public partial interface IOrgsClient /// /// Set Company Info /// - /// - /// + /// + /// Stripe customer billing information. + /// + /// + /// Stripe tax ID. + /// /// /// /// Default Value: false @@ -27,9 +31,9 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::G.AnyOf? companyInfo = default, - global::G.AnyOf? taxId = default, - global::G.AnyOf? invoiceEmail = default, + global::G.StripeBusinessBillingInfo? companyInfo = default, + global::G.StripeTaxId? taxId = default, + string? invoiceEmail = default, bool? isBusiness = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs index 53f74ab13e..a65661fe3f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrgMember.g.verified.cs @@ -30,9 +30,9 @@ public partial interface IOrgsClient /// global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, - global::G.AnyOf? roleId = default, + string? password = default, + string? fullName = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs index 9579118f9d..f394f04a7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs @@ -22,7 +22,7 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpdateCurrentOrganizationInfoAsync( - global::G.AnyOf? displayName = default, + string? displayName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs index a662f88d82..0add533302 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateCurrentUser.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs index bc935fa93a..25632ed0bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpdateSsoSettings.g.verified.cs @@ -31,10 +31,10 @@ public partial interface IOrgsClient /// global::System.Threading.Tasks.Task UpdateSsoSettingsAsync( global::System.Guid id, - global::G.AnyOf? defaultWorkspaceRoleId = default, - global::G.AnyOf, object>? defaultWorkspaceIds = default, - global::G.AnyOf? metadataUrl = default, - global::G.AnyOf? metadataXml = default, + global::System.Guid? defaultWorkspaceRoleId = default, + global::System.Collections.Generic.IList? defaultWorkspaceIds = default, + string? metadataUrl = default, + string? metadataXml = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs index 81c3da8079..6f24d121e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IOrgsClient.UpsertTtlSettings.g.verified.cs @@ -26,8 +26,8 @@ public partial interface IOrgsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index 7f275b2bc3..92dd553407 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs @@ -26,7 +26,7 @@ public partial interface IPlaygroundSettingsClient /// global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs index 8ed32552f1..6b184c68ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IPlaygroundSettingsClient /// global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs index 8c0c384c6d..f7922163e8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.CountSharedExamples.g.verified.cs @@ -21,10 +21,10 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task CountSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? filter = default, + string? metadata = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs index 2ccffb67c9..caba126cb2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedDatasetRuns.g.verified.cs @@ -26,7 +26,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -38,7 +40,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -53,23 +57,23 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs index b897ec33d1..6edcb535c2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.QuerySharedRuns.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs index da11739866..fe6dff3a5d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedComparativeExperiments.g.verified.cs @@ -28,8 +28,8 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs index b5d80df263..e3fc056b9c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs @@ -37,8 +37,8 @@ public partial interface IPublicClient global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs index 66619aa7c5..3da583707e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetFeedback.g.verified.cs @@ -23,21 +23,23 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs index 84c3ee7f98..5e1169d5ab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDatasetTracerSessions.g.verified.cs @@ -33,17 +33,17 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? sortByFeedbackKey = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs index 31d57bb41f..365fb59604 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedDelta.g.verified.cs @@ -41,10 +41,10 @@ public partial interface IPublicClient global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs index 8c301b629e..e0012b57f0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedExamples.g.verified.cs @@ -30,13 +30,13 @@ public partial interface IPublicClient /// global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs index 06ae3543a2..153dfef1c4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.ReadSharedFeedbacks.g.verified.cs @@ -22,21 +22,23 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs index d8c53c06af..526c8df078 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IPublicClient.StatsSharedDatasetRuns.g.verified.cs @@ -26,7 +26,9 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -38,27 +40,29 @@ public partial interface IPublicClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.CreateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.CreateRepo.g.verified.cs index fc14d7b4ae..498741d753 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.CreateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.CreateRepo.g.verified.cs @@ -30,9 +30,9 @@ public partial interface IReposClient global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ForkRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ForkRepo.g.verified.cs index 813f62a14b..3caf352823 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ForkRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ForkRepo.g.verified.cs @@ -37,10 +37,10 @@ public partial interface IReposClient string owner, string repo, string repoHandle, - global::G.AnyOf? readme = default, - global::G.AnyOf? description = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, + string? readme = default, + string? description = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepoTags.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepoTags.g.verified.cs index 7891046f1e..a376768218 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepoTags.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepoTags.g.verified.cs @@ -33,17 +33,17 @@ public partial interface IReposClient global::System.Threading.Tasks.Task ListRepoTagsAsync( int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepos.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepos.g.verified.cs index 7a9c0a024f..ae47ad2e30 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepos.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.ListRepos.g.verified.cs @@ -39,19 +39,19 @@ public partial interface IReposClient bool? withLatestManifest = false, int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, - global::G.AnyOf? sortField = default, - global::G.AnyOf? sortDirection = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListReposApiV1ReposGetIsArchived? isArchived = default, + global::G.ListReposApiV1ReposGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, + string? sortField = default, + global::G.AnyOf? sortDirection = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.OptimizePrompt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.OptimizePrompt.g.verified.cs index 9876a4527d..89ddf1aa8b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.OptimizePrompt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.OptimizePrompt.g.verified.cs @@ -30,7 +30,7 @@ public partial interface IReposClient string prompt, object metaprompt, global::System.Collections.Generic.IList examples, - global::G.AnyOf overallFeedback, + string? overallFeedback, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.UpdateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.UpdateRepo.g.verified.cs index 08fc0f03de..21d6790ec9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.UpdateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IReposClient.UpdateRepo.g.verified.cs @@ -36,11 +36,11 @@ public partial interface IReposClient global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? isArchived = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, + bool? isArchived = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRule.g.verified.cs index c5febf3896..029310c0f2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRule.g.verified.cs @@ -52,23 +52,23 @@ public partial interface IRunClient global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRun.g.verified.cs index cc0f99fd2b..f271f9ef93 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.CreateRun.g.verified.cs @@ -45,24 +45,24 @@ public partial interface IRunClient global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::G.OneOf? inputs = default, - global::G.OneOf? startTime = default, - global::G.OneOf? endTime = default, - global::G.OneOf? extra = default, - global::G.OneOf? error = default, - global::G.OneOf? serialized = default, - global::G.OneOf? outputs = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? id = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, - global::G.OneOf? referenceExampleId = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, + object? inputs = default, + global::G.OneOf? startTime = default, + global::G.OneOf? endTime = default, + object? extra = default, + string? error = default, + object? serialized = default, + object? outputs = default, + global::System.Guid? parentRunId = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? id = default, + global::System.Guid? sessionId = default, + string? sessionName = default, + global::System.Guid? referenceExampleId = default, + object? inputAttachments = default, + object? outputAttachments = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.GroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.GroupRuns.g.verified.cs index 1a7e7486f5..c6240acf38 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.GroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.GroupRuns.g.verified.cs @@ -15,7 +15,7 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task GroupRunsAsync( global::G.RunGroupRequest request, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); /// @@ -38,11 +38,11 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::G.AnyOf? accept = default, + string? accept = default, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRuleLogs.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRuleLogs.g.verified.cs index badeb37007..72dc8172c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRuleLogs.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRuleLogs.g.verified.cs @@ -24,8 +24,8 @@ public partial interface IRunClient global::System.Guid ruleId, int? limit = 720, int? offset = 0, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRules.g.verified.cs index 0b87775725..518dc0311c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ListRules.g.verified.cs @@ -16,10 +16,10 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListRulesAsync( - global::G.AnyOf? datasetId = default, - global::G.AnyOf? sessionId = default, - global::G.AnyOf? type = default, - global::G.AnyOf? nameContains = default, + global::System.Guid? datasetId = default, + global::System.Guid? sessionId = default, + global::G.ListRulesApiV1RunsRulesGetType? type = default, + string? nameContains = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.QueryRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.QueryRuns.g.verified.cs index 569517a839..916c518716 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.QueryRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.QueryRuns.g.verified.cs @@ -21,7 +21,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -33,7 +35,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -47,23 +51,23 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task QueryRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ReadRunShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ReadRunShareState.g.verified.cs index d6dee0d664..070cf8efba 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ReadRunShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.ReadRunShareState.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IRunClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> ReadRunShareStateAsync( + global::System.Threading.Tasks.Task ReadRunShareStateAsync( global::System.Guid runId, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs index 2e5c67b42e..af42e6ba2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsGroupRuns.g.verified.cs @@ -36,9 +36,9 @@ public partial interface IRunClient global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsRuns.g.verified.cs index 3b47c420d7..09d863bf47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.StatsRuns.g.verified.cs @@ -23,7 +23,9 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -35,26 +37,28 @@ public partial interface IRunClient /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task StatsRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.TriggerRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.TriggerRules.g.verified.cs index 5514e07d01..7542f69190 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.TriggerRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.TriggerRules.g.verified.cs @@ -25,8 +25,8 @@ public partial interface IRunClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task TriggerRulesAsync( - global::G.AnyOf, object>? ruleIds = default, - global::G.AnyOf? datasetId = default, + global::System.Collections.Generic.IList? ruleIds = default, + global::System.Guid? datasetId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRule.g.verified.cs index f14f1824ad..ef9eef2a4c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRule.g.verified.cs @@ -56,23 +56,23 @@ public partial interface IRunClient global::System.Guid ruleId, string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRun.g.verified.cs index ecfd604309..56fe009f24 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IRunClient.UpdateRun.g.verified.cs @@ -41,20 +41,20 @@ public partial interface IRunClient /// global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf? endTime = default, - global::G.OneOf? error = default, - global::G.OneOf? inputs = default, - global::G.OneOf? outputs = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? extra = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? parentRunId = default, + global::G.OneOf? endTime = default, + string? error = default, + object? inputs = default, + object? outputs = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + object? extra = default, + object? inputAttachments = default, + object? outputAttachments = default, + global::System.Guid? sessionId = default, + string? sessionName = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITenantClient.CreateTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITenantClient.CreateTenant.g.verified.cs index 406750cc5f..db2bf7c471 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITenantClient.CreateTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITenantClient.CreateTenant.g.verified.cs @@ -32,8 +32,8 @@ public partial interface ITenantClient global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? organizationId = default, - global::G.AnyOf? tenantHandle = default, + global::System.Guid? organizationId = default, + string? tenantHandle = default, bool? isPersonal = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs index 8780247b9a..d1aa426c46 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateFilterView.g.verified.cs @@ -33,10 +33,10 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task CreateFilterViewAsync( global::System.Guid sessionId, string displayName, - global::G.AnyOf? filterString = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, - global::G.AnyOf? description = default, + string? filterString = default, + string? traceFilterString = default, + string? treeFilterString = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs index 94c6ccc119..7ad457b993 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.CreateTracerSession.g.verified.cs @@ -41,14 +41,14 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool? upsert = false, global::System.DateTime? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, + global::System.DateTime? endTime = default, + object? extra = default, string? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? referenceDatasetId = default, - global::G.AnyOf? traceTier = default, - global::G.AnyOf? id = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.Guid? referenceDatasetId = default, + global::G.TraceTier? traceTier = default, + global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs index bfde5e3d81..21bd1a7154 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSession.g.verified.cs @@ -19,7 +19,7 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task ReadTracerSessionAsync( global::System.Guid sessionId, bool? includeStats = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs index eb77037fa5..27fde8000d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessions.g.verified.cs @@ -35,21 +35,21 @@ public partial interface ITracerSessionsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::G.AnyOf? referenceFree = default, - global::G.AnyOf, object>? referenceDataset = default, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + bool? referenceFree = default, + global::System.Collections.Generic.IList? referenceDataset = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? metadata = default, - global::G.AnyOf? sortByFeedbackKey = default, + string? metadata = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs index e830500ecd..9f2e90f0e7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs @@ -22,8 +22,8 @@ public partial interface ITracerSessionsClient /// global::System.Threading.Tasks.Task>> ReadTracerSessionsRunsMetadataAsync( global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys = default, - global::G.AnyOf? startTime = default, + global::System.Collections.Generic.IList? metadataKeys = default, + global::System.DateTime? startTime = default, int? k = 10, bool? rootRunsOnly = false, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs index b6f6cf8402..d49b5ee44d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateFilterView.g.verified.cs @@ -36,11 +36,11 @@ public partial interface ITracerSessionsClient global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::G.AnyOf? filterString = default, - global::G.AnyOf? displayName = default, - global::G.AnyOf? description = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, + string? filterString = default, + string? displayName = default, + string? description = default, + string? traceFilterString = default, + string? treeFilterString = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs index 660f3fe2b6..35ce662bdf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITracerSessionsClient.UpdateTracerSession.g.verified.cs @@ -33,12 +33,12 @@ public partial interface ITracerSessionsClient /// global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, - global::G.AnyOf? traceTier = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.DateTime? endTime = default, + object? extra = default, + global::G.TraceTier? traceTier = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs index e2dfb2f76a..44b2eab966 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ITtlSettingsClient.UpsertTtlSettings.g.verified.cs @@ -26,8 +26,8 @@ public partial interface ITtlSettingsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs index e558338725..aec0067b90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IUsageLimitsClient.UpsertUsageLimit.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IUsageLimitsClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task UpsertUsageLimitAsync( - global::G.UsageLimitType2 limitType, + global::G.UsageLimitType limitType, int limitValue, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs index 4aaaa3a9b0..4bce5d25c7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::G.AnyOf? readOnly = default, - global::G.AnyOf? roleId = default, + bool? readOnly = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs index b4d73a21ba..37d206b2f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagKey.g.verified.cs @@ -24,7 +24,7 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs index 0422d83408..c57bc564b2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateTagValue.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs index 30c01c5232..0e1e9c0312 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.CreateWorkspace.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? tenantHandle = default, + string? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs index 9d041c3c4c..4000984606 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IWorkspacesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs index 0f560ff71b..ea6078ea3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.ListTaggings.g.verified.cs @@ -12,7 +12,7 @@ public partial interface IWorkspacesClient /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> ListTaggingsAsync( - global::G.AnyOf? tagValueId = default, + global::System.Guid? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs index 78401a5ac4..cd130abe47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs @@ -28,7 +28,7 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::G.AnyOf? readOnly = default, + bool? readOnly = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs index 5def66eeef..88a15411ed 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagKey.g.verified.cs @@ -27,8 +27,8 @@ public partial interface IWorkspacesClient /// global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::G.AnyOf? key = default, - global::G.AnyOf? description = default, + string? key = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs index 0a35812079..4eb3bb6ed7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.IWorkspacesClient.UpdateTagValue.g.verified.cs @@ -31,8 +31,8 @@ public partial interface IWorkspacesClient global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::G.AnyOf? value = default, - global::G.AnyOf? description = default, + string? value = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs index 3c3992770b..e589a03b12 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs @@ -134,9 +134,9 @@ partial void ProcessCreateNewModelPriceResponseContent( string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ModelPriceMapCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs index 49ac3f5815..756b4abe8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.UpdateModelPrice.g.verified.cs @@ -142,9 +142,9 @@ partial void ProcessUpdateModelPriceResponseContent( string matchPattern, global::G.AnyOf promptCost, global::G.AnyOf completionCost, - global::G.AnyOf? startTime = default, + global::System.DateTime? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::G.AnyOf? provider = default, + string? provider = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ModelPriceMapUpdateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIFeedbackSource.g.verified.cs index 4ffed59c10..d8605386a6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,8 +19,7 @@ public sealed partial class APIFeedbackSource /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyCreateResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyCreateResponse.g.verified.cs index e4cf46c7e7..fe5727c7a1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyCreateResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyCreateResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIKeyCreateResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class APIKeyCreateResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// @@ -49,8 +46,7 @@ public sealed partial class APIKeyCreateResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_used_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastUsedAt { get; set; } + public global::System.DateTime? LastUsedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyGetResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyGetResponse.g.verified.cs index 2661d1e183..084b0e8960 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyGetResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.APIKeyGetResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.APIKeyGetResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class APIKeyGetResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// @@ -49,8 +46,7 @@ public sealed partial class APIKeyGetResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_used_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastUsedAt { get; set; } + public global::System.DateTime? LastUsedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs index 37cdb80299..71e14b31e2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -41,29 +38,25 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs index 5ee5d86ccb..74ab5cb7c2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class AnnotationQueueRunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs index 3e3b098fb3..6786ca31f9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueRunUpdateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueRunUpdateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class AnnotationQueueRunUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("added_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddedAt { get; set; } + public global::System.DateTime? AddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchema.g.verified.cs index 5623f4c9a1..17e499dd67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class AnnotationQueueSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -41,29 +38,25 @@ public sealed partial class AnnotationQueueSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs index 1ced498fd0..11dcc3d080 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueSchemaWithSize.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueSchemaWithSize.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -41,29 +38,25 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EnableReservations { get; set; } = true; + public bool? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReservationMinutes { get; set; } = 1; + public int? ReservationMinutes { get; set; } = 1; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs index 414f7a0881..3b38ffd0d3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AnnotationQueueUpdateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AnnotationQueueUpdateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,29 +13,25 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDataset { get; set; } + public global::System.Guid? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; + public int? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true @@ -49,8 +43,7 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReservationMinutes { get; set; } + public int? ReservationMinutes { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppFeedbackSource.g.verified.cs index 68a604fc75..69a6bc5304 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,8 +19,7 @@ public sealed partial class AppFeedbackSource /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs index 41412b9d8d..243579b219 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppHubCrudTenantsTenant.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppHubCrudTenantsTenant.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class AppHubCrudTenantsTenant /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppSchemasTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppSchemasTenant.g.verified.cs index a21b03cf9d..8d3b3dd10e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppSchemasTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AppSchemasTenant.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AppSchemasTenant.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class AppSchemasTenant /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -50,8 +47,7 @@ public sealed partial class AppSchemasTenant /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs index 398c1ad9a9..1222939e76 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.AutoEvalFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.AutoEvalFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,8 +19,7 @@ public sealed partial class AutoEvalFeedbackSource /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs index 8578137b48..49baf5a000 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthMemberCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BasicAuthMemberCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -36,43 +32,37 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthUserPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthUserPatch.g.verified.cs index 19a0263ec3..8afd01b231 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthUserPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BasicAuthUserPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BasicAuthUserPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class BasicAuthUserPatch /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs index f5f657e941..618b8401eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItem.g.verified.cs @@ -29,8 +29,7 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// @@ -44,57 +43,49 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs similarity index 84% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs index 8ca5c358a0..4f79e94f22 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPatchItemEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.BatchIngestRunsRequestPatchItemEventsVariant1Item.g.cs +//HintName: G.Models.BatchIngestRunsRequestPatchItemEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class BatchIngestRunsRequestPatchItemEventsVariant1Item + public sealed partial class BatchIngestRunsRequestPatchItemEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs index 7a2f352181..b6bce042ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItem.g.verified.cs @@ -44,57 +44,50 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory3))] - public global::G.OneOf? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// @@ -121,36 +114,31 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs similarity index 84% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs index edd3e01acd..be1c10a785 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BatchIngestRunsRequestPostItemEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.BatchIngestRunsRequestPostItemEventsVariant1Item.g.cs +//HintName: G.Models.BatchIngestRunsRequestPostItemEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class BatchIngestRunsRequestPostItemEventsVariant1Item + public sealed partial class BatchIngestRunsRequestPostItemEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs index 2dec1e3336..b7e59c5d58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -26,11 +24,10 @@ public sealed partial class BodyCloneDatasetApiV1DatasetsClonePost public required global::System.Guid SourceDatasetId { get; set; } /// - /// + /// Only modifications made on or before this time are included. If None, the latest version of the dataset is used. /// [global::System.Text.Json.Serialization.JsonPropertyName("as_of")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf?, object>? AsOf { get; set; } + public object? AsOf { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs index 110677ad3d..9c2e0c2c18 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyParamsForRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyParamsForRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,120 +13,105 @@ public sealed partial class BodyParamsForRunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Trace { get; set; } + public global::System.Guid? Trace { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRun { get; set; } + public global::System.Guid? ParentRun { get; set; } /// - /// + /// Enum for run types. /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunType { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.RunTypeEnumJsonConverter))] + public global::G.RunTypeEnum? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ReferenceExample { get; set; } + public global::System.Collections.Generic.IList? ReferenceExample { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("execution_order")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExecutionOrder { get; set; } + public int? ExecutionOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public bool? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("query")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Query { get; set; } + public string? Query { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_root")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsRoot { get; set; } + public bool? IsRoot { get; set; } /// - /// + /// Enum for run data source types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_source_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DataSourceType { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.RunsFilterDataSourceTypeEnumJsonConverter))] + public global::G.RunsFilterDataSourceTypeEnum? DataSourceType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("cursor")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Cursor { get; set; } + public string? Cursor { get; set; } /// /// Default Value: 100 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs index 2d75b12085..befda6bf77 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Enum for dataset data types. @@ -56,8 +53,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExport.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExport.g.verified.cs index c4defb8afd..d97692f706 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExport.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExport.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExport.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -93,9 +91,8 @@ public sealed partial class BulkExport /// /// [global::System.Text.Json.Serialization.JsonPropertyName("finished_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf FinishedAt { get; set; } + public required global::System.DateTime? FinishedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs index ddf5b98b64..bbcf220423 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportDestinationS3Config.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExportDestinationS3Config.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,23 +20,20 @@ public sealed partial class BulkExportDestinationS3Config /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prefix")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf Prefix { get; set; } + public required string? Prefix { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("region")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Region { get; set; } + public string? Region { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("endpoint_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndpointUrl { get; set; } + public string? EndpointUrl { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportRun.g.verified.cs index 4464907ce3..6e149e3120 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BulkExportRun.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.BulkExportRun.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,8 +48,7 @@ public sealed partial class BulkExportRun /// /// [global::System.Text.Json.Serialization.JsonPropertyName("errors")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Errors { get; set; } + public object? Errors { get; set; } /// /// @@ -71,9 +68,8 @@ public sealed partial class BulkExportRun /// /// [global::System.Text.Json.Serialization.JsonPropertyName("finished_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf FinishedAt { get; set; } + public required global::System.DateTime? FinishedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Comment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Comment.g.verified.cs index 43a645b20b..d28859fa82 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Comment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Comment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Comment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class Comment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment_by")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CommentBy { get; set; } + public global::System.Guid? CommentBy { get; set; } /// /// @@ -36,8 +33,7 @@ public sealed partial class Comment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentId { get; set; } + public global::System.Guid? ParentId { get; set; } /// /// @@ -64,8 +60,7 @@ public sealed partial class Comment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment_by_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CommentByName { get; set; } + public string? CommentByName { get; set; } /// /// @@ -85,8 +80,7 @@ public sealed partial class Comment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("liked_by_auth_user")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LikedByAuthUser { get; set; } + public bool? LikedByAuthUser { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitManifestResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitManifestResponse.g.verified.cs index b90d540556..aa30d8d49e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitManifestResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitManifestResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CommitManifestResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class CommitManifestResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("examples")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Examples { get; set; } + public global::System.Collections.Generic.IList? Examples { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitWithLookups.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitWithLookups.g.verified.cs index a5a5f85ab5..fdce78369b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitWithLookups.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CommitWithLookups.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CommitWithLookups.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class CommitWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentId { get; set; } + public global::System.Guid? ParentId { get; set; } /// /// @@ -85,8 +82,7 @@ public sealed partial class CommitWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_commit_hash")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentCommitHash { get; set; } + public string? ParentCommitHash { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperiment.g.verified.cs index c78331a374..0f8dd5aa75 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperiment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperiment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class ComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -64,8 +60,7 @@ public sealed partial class ComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -78,8 +73,7 @@ public sealed partial class ComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentBase.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentBase.g.verified.cs index 4d28884c94..4942899e3f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentBase.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentBase.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperimentBase.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class ComparativeExperimentBase /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -64,8 +60,7 @@ public sealed partial class ComparativeExperimentBase /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs index 3ead0d806c..5d93bfa840 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ComparativeExperimentCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ComparativeExperimentCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,15 +26,13 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -61,8 +57,7 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateEventRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateEventRequest.g.verified.cs index 3cb44ad054..7a850a0d66 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateEventRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateEventRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateEventRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -37,8 +35,7 @@ public sealed partial class CreateEventRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("commit")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Commit { get; set; } + public string? Commit { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs index 0586074534..0535f5b719 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateFeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateFeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class CreateFeedbackConfigSchema /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } = false; + public bool? IsLowerScoreBetter { get; set; } = false; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs index 7bc2b939c0..67b90a07bb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoCommitRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateRepoCommitRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CreateRepoCommitRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_commit")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentCommit { get; set; } + public string? ParentCommit { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("example_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ExampleRunIds { get; set; } + public global::System.Collections.Generic.IList? ExampleRunIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoRequest.g.verified.cs index 58468bb880..d4e0469c9b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CreateRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CreateRepoRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// @@ -43,8 +39,7 @@ public sealed partial class CreateRepoRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs index 32ebc8bffe..e42ab88aca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs @@ -22,8 +22,7 @@ public sealed partial class CreateRunRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// @@ -37,120 +36,105 @@ public sealed partial class CreateRunRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory3))] - public global::G.OneOf? StartTime { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] + public global::G.OneOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory3))] - public global::G.OneOf? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? TraceId { get; set; } + public global::System.Guid? TraceId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEvent.g.verified.cs similarity index 80% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEvent.g.verified.cs index 60def473af..c3424a7f5d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunSchemaEventsVariant1Item.g.cs +//HintName: G.Models.CreateRunRequestEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunSchemaEventsVariant1Item + public sealed partial class CreateRunRequestEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs deleted file mode 100644 index bb571dedf2..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CreateRunRequestEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.CreateRunRequestEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class CreateRunRequestEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::System.Text.Json.Serialization.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreate.g.verified.cs index d5e3660411..5df5108e7b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CustomChartCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// Enum for custom chart types. @@ -51,22 +47,19 @@ public sealed partial class CustomChartCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("section_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SectionId { get; set; } + public global::System.Guid? SectionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs index 23936903aa..a9ef467b27 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartCreatePreview.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class CustomChartCreatePreview /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs index 56fc0c6436..0d39647d1c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class CustomChartResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -58,16 +55,14 @@ public sealed partial class CustomChartResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("series")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf, object> Series { get; set; } + public required global::System.Collections.Generic.IList? Series { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeries.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeries.g.verified.cs index cde95d9b02..0a6fd8ef21 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeries.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeries.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeries.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class CustomChartSeries /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -37,8 +34,7 @@ public sealed partial class CustomChartSeries /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs index f0d9574ee7..c0016ad9c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -37,8 +34,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs index 0a276af52b..a608574f35 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesFilters.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesFilters.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,29 +13,25 @@ public sealed partial class CustomChartSeriesFilters /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs index 09089f52a2..634762d95f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartSeriesUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartSeriesUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filters { get; set; } + public global::G.CustomChartSeriesFilters? Filters { get; set; } /// /// Metrics you can chart. @@ -37,15 +34,13 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackKey { get; set; } + public string? FeedbackKey { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartUpdate.g.verified.cs index 79d2927d4a..10595cdcd4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartUpdate.g.verified.cs @@ -22,8 +22,8 @@ public sealed partial class CustomChartUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Description { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Description { get; set; } /// /// @@ -57,15 +57,15 @@ public sealed partial class CustomChartUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Metadata { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? CommonFilters { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs index fea399c926..7d02685e05 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs @@ -29,9 +29,9 @@ public sealed partial class CustomChartsDataPoint /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf Value { get; set; } + public required global::G.AnyOf? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequest.g.verified.cs index 1b44e6f1cf..551d5e7f83 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,8 +26,7 @@ public sealed partial class CustomChartsRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Timedelta input. @@ -41,15 +38,13 @@ public sealed partial class CustomChartsRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("after_index")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AfterIndex { get; set; } + public int? AfterIndex { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tag_value_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? TagValueId { get; set; } + public global::System.Collections.Generic.IList? TagValueId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequestBase.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequestBase.g.verified.cs index 5023099784..fdf712b86e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequestBase.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsRequestBase.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsRequestBase.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,8 +26,7 @@ public sealed partial class CustomChartsRequestBase /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Timedelta input. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSection.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSection.g.verified.cs index d9a9df45d6..086a8aa2cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSection.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSection.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSection.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CustomChartsSection /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs index 490ec7a048..015ba1a25f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSectionCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CustomChartsSectionCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs index 9360649b4e..36229939ee 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomChartsSectionResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Index { get; set; } + public int? Index { get; set; } /// /// @@ -43,22 +39,19 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("chart_count")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ChartCount { get; set; } + public int? ChartCount { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs index d8ae01b371..50c4a898a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsSectionUpdate.g.verified.cs @@ -22,8 +22,8 @@ public sealed partial class CustomChartsSectionUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Description { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs index cf185d6c62..ecbc987d0c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.CustomerVisiblePlanInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -30,8 +28,7 @@ public sealed partial class CustomerVisiblePlanInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ends_on")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndsOn { get; set; } + public global::System.DateTime? EndsOn { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Dataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Dataset.g.verified.cs index 7795e284d2..876d16d403 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Dataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Dataset.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Dataset.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class Dataset /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -35,29 +32,26 @@ public sealed partial class Dataset /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.DataTypeJsonConverter))] + public global::G.DataType? DataType { get; set; } /// /// @@ -98,8 +92,7 @@ public sealed partial class Dataset /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_session_start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastSessionStartTime { get; set; } + public global::System.DateTime? LastSessionStartTime { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetCreate.g.verified.cs index 3962932dd4..f3855c90cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class DatasetCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -35,36 +32,31 @@ public sealed partial class DatasetCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// Enum for dataset data types. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexInfo.g.verified.cs index f41e96448c..a3a668c0f3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetIndexInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class DatasetIndexInfo /// Default Value: latest /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tag { get; set; } = "latest"; + public string? Tag { get; set; } = "latest"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_updated_version")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastUpdatedVersion { get; set; } + public global::System.DateTime? LastUpdatedVersion { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexRequest.g.verified.cs index 8e3af0e934..668a2303a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetIndexRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class DatasetIndexRequest /// Default Value: latest /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tag { get; set; } = "latest"; + public string? Tag { get; set; } = "latest"; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetPublicSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetPublicSchema.g.verified.cs index c8a4ea9665..eb6ed37bca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetPublicSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetPublicSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetPublicSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -24,8 +22,7 @@ public sealed partial class DatasetPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -37,29 +34,26 @@ public sealed partial class DatasetPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.DataTypeJsonConverter))] + public global::G.DataType? DataType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs index 0e895c11d7..abd9fd4d58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetSchemaForUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetSchemaForUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class DatasetSchemaForUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -35,29 +32,26 @@ public sealed partial class DatasetSchemaForUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + public object? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + public object? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExternallyManaged { get; set; } = false; + public bool? ExternallyManaged { get; set; } = false; /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DataType { get; set; } = global::G.DataType.Kv; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.DataTypeJsonConverter))] + public global::G.DataType? DataType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetUpdate.g.verified.cs index 21d0ad399a..0b46dca465 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetUpdate.g.verified.cs @@ -15,36 +15,35 @@ public sealed partial class DatasetUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Name { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Description { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? InputsSchemaDefinition { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? OutputsSchemaDefinition { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("patch_examples")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? PatchExamples { get; set; } + public global::System.Collections.Generic.Dictionary? PatchExamples { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetVersion.g.verified.cs index ca6e699838..29a33abe1d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetVersion.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.DatasetVersion.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class DatasetVersion /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs index 5beacc9097..4633ea0a13 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.EvaluatorStructuredOutput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.EvaluatorStructuredOutput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,36 +13,31 @@ public sealed partial class EvaluatorStructuredOutput /// /// [global::System.Text.Json.Serialization.JsonPropertyName("hub_ref")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? HubRef { get; set; } + public string? HubRef { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf>, object>? Prompt { get; set; } + public global::System.Collections.Generic.IList>? Prompt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("template_format")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TemplateFormat { get; set; } + public string? TemplateFormat { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("schema")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Schema { get; set; } + public object? Schema { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("variable_mapping")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? VariableMapping { get; set; } + public global::System.Collections.Generic.Dictionary? VariableMapping { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Example.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Example.g.verified.cs index 9f795d98b8..a7bf48b57d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Example.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Example.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Example.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class Example /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,15 +26,13 @@ public sealed partial class Example /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -70,8 +65,7 @@ public sealed partial class Example /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleBulkCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleBulkCreate.g.verified.cs index bbd09930ca..5bc91bb76a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleBulkCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleBulkCreate.g.verified.cs @@ -15,8 +15,7 @@ public sealed partial class ExampleBulkCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,36 +28,32 @@ public sealed partial class ExampleBulkCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// Default Value: base /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf, string, object>? Split { get; set; } = "base"; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf, string>? Split { get; set; } = "base"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Default Value: false @@ -70,8 +65,7 @@ public sealed partial class ExampleBulkCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleCreate.g.verified.cs index 491ac4620b..ad86c80708 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleCreate.g.verified.cs @@ -15,8 +15,7 @@ public sealed partial class ExampleCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,36 +28,32 @@ public sealed partial class ExampleCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// Default Value: base /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf, string, object>? Split { get; set; } = "base"; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf, string>? Split { get; set; } = "base"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdate.g.verified.cs index ba183d4c67..5ebc1eab28 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdate.g.verified.cs @@ -15,36 +15,32 @@ public sealed partial class ExampleUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf, string, object>? Split { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf, string>? Split { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdateWithID.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdateWithID.g.verified.cs index 52571ba208..93da86f8f7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdateWithID.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleUpdateWithID.g.verified.cs @@ -15,36 +15,32 @@ public sealed partial class ExampleUpdateWithID /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf, string, object>? Split { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf, string>? Split { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRuns.g.verified.cs index 5f1f2b6125..e805c983fb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExampleWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class ExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,15 +26,13 @@ public sealed partial class ExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -70,8 +65,7 @@ public sealed partial class ExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRunsCH.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRunsCH.g.verified.cs index 83fc3afadf..ba847dd34a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRunsCH.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExampleWithRunsCH.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExampleWithRunsCH.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,15 +26,13 @@ public sealed partial class ExampleWithRunsCH /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -70,8 +65,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultRow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultRow.g.verified.cs index ffb392d9b9..9b3e3e1c91 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultRow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultRow.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExperimentResultRow.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class ExperimentResultRow /// /// [global::System.Text.Json.Serialization.JsonPropertyName("row_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RowId { get; set; } + public global::System.Guid? RowId { get; set; } /// /// @@ -29,22 +26,19 @@ public sealed partial class ExperimentResultRow /// /// [global::System.Text.Json.Serialization.JsonPropertyName("expected_outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExpectedOutputs { get; set; } + public object? ExpectedOutputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("actual_outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ActualOutputs { get; set; } + public object? ActualOutputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluation_scores")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? EvaluationScores { get; set; } + public global::System.Collections.Generic.IList? EvaluationScores { get; set; } /// /// @@ -64,22 +58,19 @@ public sealed partial class ExperimentResultRow /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunMetadata { get; set; } + public object? RunMetadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultsUpload.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultsUpload.g.verified.cs index 43a474fbc0..fb9247c642 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultsUpload.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ExperimentResultsUpload.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ExperimentResultsUpload.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,36 +20,31 @@ public sealed partial class ExperimentResultsUpload /// /// [global::System.Text.Json.Serialization.JsonPropertyName("experiment_description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExperimentDescription { get; set; } + public string? ExperimentDescription { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetDescription { get; set; } + public string? DatasetDescription { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("summary_experiment_scores")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? SummaryExperimentScores { get; set; } + public global::System.Collections.Generic.IList? SummaryExperimentScores { get; set; } /// /// @@ -78,8 +71,7 @@ public sealed partial class ExperimentResultsUpload /// /// [global::System.Text.Json.Serialization.JsonPropertyName("experiment_metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExperimentMetadata { get; set; } + public object? ExperimentMetadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCategory.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCategory.g.verified.cs index 2e3fa8b58b..31efbc7156 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCategory.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCategory.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackCategory.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class FeedbackCategory /// /// [global::System.Text.Json.Serialization.JsonPropertyName("label")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Label { get; set; } + public string? Label { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfig.g.verified.cs index 3f2d7136e7..f9b2dcf65a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfig.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackConfig.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,22 +21,19 @@ public sealed partial class FeedbackConfig /// /// [global::System.Text.Json.Serialization.JsonPropertyName("min")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Min { get; set; } + public double? Min { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("max")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Max { get; set; } + public double? Max { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("categories")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Categories { get; set; } + public global::System.Collections.Generic.IList? Categories { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfigSchema.g.verified.cs index 02282a3f5a..39388571d2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -43,8 +41,7 @@ public sealed partial class FeedbackConfigSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } + public bool? IsLowerScoreBetter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs index c0fbaf0d51..1ee4bbcbee 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateCoreSchema.g.verified.cs @@ -34,43 +34,40 @@ public sealed partial class FeedbackCreateCoreSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] - public global::G.AnyOf? Score { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory6))] - public global::G.AnyOf? Value { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Correction { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// @@ -82,15 +79,14 @@ public sealed partial class FeedbackCreateCoreSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] - public global::G.AnyOf? FeedbackSource { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateSchema.g.verified.cs index 58e181f790..5d205a4ff2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateSchema.g.verified.cs @@ -34,57 +34,52 @@ public sealed partial class FeedbackCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] - public global::G.AnyOf? Score { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory6))] - public global::G.AnyOf? Value { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Correction { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// @@ -96,15 +91,14 @@ public sealed partial class FeedbackCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] - public global::G.AnyOf? FeedbackSource { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs index 53731b0ded..5cd6f5efdd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackCreateWithTokenExtendedSchema.g.verified.cs @@ -15,36 +15,34 @@ public sealed partial class FeedbackCreateWithTokenExtendedSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] - public global::G.AnyOf? Score { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] - public global::G.AnyOf? Value { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Correction { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs index f565ed41a4..42c357388e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackIngestTokenCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FeedbackIngestTokenCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,18 +10,16 @@ namespace G public sealed partial class FeedbackIngestTokenCreateSchema { /// - /// + /// Timedelta input. /// [global::System.Text.Json.Serialization.JsonPropertyName("expires_in")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExpiresIn { get; set; } + public global::G.TimedeltaInput? ExpiresIn { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("expires_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExpiresAt { get; set; } + public global::System.DateTime? ExpiresAt { get; set; } /// /// @@ -43,8 +39,7 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSchema.g.verified.cs index 395621494a..2d48124f00 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSchema.g.verified.cs @@ -34,57 +34,52 @@ public sealed partial class FeedbackSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] - public global::G.AnyOf? Score { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory6))] - public global::G.AnyOf? Value { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Correction { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackGroupId { get; set; } + public global::System.Guid? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// @@ -94,11 +89,10 @@ public sealed partial class FeedbackSchema public required global::System.Guid Id { get; set; } /// - /// + /// The feedback source loaded from the database. /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackSource { get; set; } + public global::G.FeedbackSource3? FeedbackSource { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource3.g.verified.cs similarity index 55% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource4.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource3.g.verified.cs index 0b785775e6..e4b742f1da 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackSource3.g.verified.cs @@ -1,6 +1,4 @@ -//HintName: G.Models.FeedbackSource4.g.cs - -#pragma warning disable CS0618 // Type or member is obsolete +//HintName: G.Models.FeedbackSource3.g.cs #nullable enable @@ -9,28 +7,25 @@ namespace G /// /// The feedback source loaded from the database. /// - public sealed partial class FeedbackSource4 + public sealed partial class FeedbackSource3 { /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Type { get; set; } + public string? Type { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs index 329d931e74..2e14536453 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FeedbackUpdateSchema.g.verified.cs @@ -15,36 +15,34 @@ public sealed partial class FeedbackUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4))] - public global::G.AnyOf? Score { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory6))] - public global::G.AnyOf? Value { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5))] + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Comment { get; set; } + public string? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf? Correction { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs index 842bbd8bef..68a4e69f1e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterQueryParamsForRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterQueryParamsForRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,113 +13,99 @@ public sealed partial class FilterQueryParamsForRunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Trace { get; set; } + public global::System.Guid? Trace { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRun { get; set; } + public global::System.Guid? ParentRun { get; set; } /// - /// + /// Enum for run types. /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunType { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.RunTypeEnumJsonConverter))] + public global::G.RunTypeEnum? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Session { get; set; } + public global::System.Collections.Generic.IList? Session { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ReferenceExample { get; set; } + public global::System.Collections.Generic.IList? ReferenceExample { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("execution_order")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExecutionOrder { get; set; } + public int? ExecutionOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public bool? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("query")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Query { get; set; } + public string? Query { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_root")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsRoot { get; set; } + public bool? IsRoot { get; set; } /// - /// + /// Enum for run data source types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_source_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DataSourceType { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.RunsFilterDataSourceTypeEnumJsonConverter))] + public global::G.RunsFilterDataSourceTypeEnum? DataSourceType { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterView.g.verified.cs index 5318005647..26da91adfa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterView.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterView.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,22 +13,19 @@ public sealed partial class FilterView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// @@ -43,8 +38,7 @@ public sealed partial class FilterView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -57,8 +51,7 @@ public sealed partial class FilterView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewCreate.g.verified.cs index e03a1b5043..bc9084d1ba 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterViewCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,22 +13,19 @@ public sealed partial class FilterViewCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// @@ -43,8 +38,7 @@ public sealed partial class FilterViewCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewUpdate.g.verified.cs index b47ea725ba..b9ff2c9c6d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.FilterViewUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.FilterViewUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,36 +13,31 @@ public sealed partial class FilterViewUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FilterString { get; set; } + public string? FilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilterString { get; set; } + public string? TraceFilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter_string")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilterString { get; set; } + public string? TreeFilterString { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ForkRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ForkRepoRequest.g.verified.cs index 67dc243379..61ac5db26b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ForkRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ForkRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ForkRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,29 +20,25 @@ public sealed partial class ForkRepoRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_public")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsPublic { get; set; } + public bool? IsPublic { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs index 01d7ef4c20..c7ca7555ec 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.GenerateSyntheticExamplesBody.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.GenerateSyntheticExamplesBody.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class GenerateSyntheticExamplesBody /// /// [global::System.Text.Json.Serialization.JsonPropertyName("example_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ExampleIds { get; set; } + public global::System.Collections.Generic.IList? ExampleIds { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Identity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Identity.g.verified.cs index 37981fdbf3..f16dfcd2c0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Identity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Identity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Identity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class Identity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -50,8 +47,7 @@ public sealed partial class Identity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -64,15 +60,13 @@ public sealed partial class Identity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs index 717b2c45c4..142c19eaf1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityAnnotationQueueRunStatusCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class IdentityAnnotationQueueRunStatusCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("status")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Status { get; set; } + public string? Status { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("override_added_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OverrideAddedAt { get; set; } + public global::System.DateTime? OverrideAddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityCreate.g.verified.cs index 32838034d7..6802d3ac89 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class IdentityCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityPatch.g.verified.cs index fb4388f8f5..f3ac76da46 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.IdentityPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.IdentityPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class IdentityPatch /// /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReadOnly { get; set; } + public bool? ReadOnly { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.InfoGetResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.InfoGetResponse.g.verified.cs index deb0079fb4..3452c0dd76 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.InfoGetResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.InfoGetResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.InfoGetResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class InfoGetResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("license_expiration_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LicenseExpirationTime { get; set; } + public global::System.DateTime? LicenseExpirationTime { get; set; } /// /// Batch ingest config. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs index 8a1a64ffe9..c4e2d95c8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicDatasetRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListPublicDatasetRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,14 +21,13 @@ public sealed partial class ListPublicDatasetRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("cursors")] [global::System.Text.Json.Serialization.JsonRequired] - public required object Cursors { get; set; } + public required global::System.Collections.Generic.Dictionary Cursors { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicRunsResponse.g.verified.cs index 5252ffc6c0..704fa1c94c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListPublicRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListPublicRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,14 +21,13 @@ public sealed partial class ListPublicRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("cursors")] [global::System.Text.Json.Serialization.JsonRequired] - public required object Cursors { get; set; } + public required global::System.Collections.Generic.Dictionary Cursors { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs similarity index 66% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs index 2ad8960894..e57c5c2d6d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.cs +//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsArchived.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum ListRepoTagsApiV1ReposTagsGetIsArchived2 + public enum ListRepoTagsApiV1ReposTagsGetIsArchived { /// /// @@ -26,31 +26,31 @@ public enum ListRepoTagsApiV1ReposTagsGetIsArchived2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions + public static class ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsArchived2 value) + public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsArchived value) { return value switch { - ListRepoTagsApiV1ReposTagsGetIsArchived2.True => "true", - ListRepoTagsApiV1ReposTagsGetIsArchived2.Allow => "allow", - ListRepoTagsApiV1ReposTagsGetIsArchived2.False => "false", + ListRepoTagsApiV1ReposTagsGetIsArchived.True => "true", + ListRepoTagsApiV1ReposTagsGetIsArchived.Allow => "allow", + ListRepoTagsApiV1ReposTagsGetIsArchived.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRepoTagsApiV1ReposTagsGetIsArchived2? ToEnum(string value) + public static ListRepoTagsApiV1ReposTagsGetIsArchived? ToEnum(string value) { return value switch { - "true" => ListRepoTagsApiV1ReposTagsGetIsArchived2.True, - "allow" => ListRepoTagsApiV1ReposTagsGetIsArchived2.Allow, - "false" => ListRepoTagsApiV1ReposTagsGetIsArchived2.False, + "true" => ListRepoTagsApiV1ReposTagsGetIsArchived.True, + "allow" => ListRepoTagsApiV1ReposTagsGetIsArchived.Allow, + "false" => ListRepoTagsApiV1ReposTagsGetIsArchived.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs similarity index 64% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs index 8a1110e8e2..dba8617dbb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.cs +//HintName: G.Models.ListRepoTagsApiV1ReposTagsGetIsPublic.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum ListRepoTagsApiV1ReposTagsGetIsPublic2 + public enum ListRepoTagsApiV1ReposTagsGetIsPublic { /// /// @@ -22,29 +22,29 @@ public enum ListRepoTagsApiV1ReposTagsGetIsPublic2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions + public static class ListRepoTagsApiV1ReposTagsGetIsPublicExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsPublic2 value) + public static string ToValueString(this ListRepoTagsApiV1ReposTagsGetIsPublic value) { return value switch { - ListRepoTagsApiV1ReposTagsGetIsPublic2.True => "true", - ListRepoTagsApiV1ReposTagsGetIsPublic2.False => "false", + ListRepoTagsApiV1ReposTagsGetIsPublic.True => "true", + ListRepoTagsApiV1ReposTagsGetIsPublic.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRepoTagsApiV1ReposTagsGetIsPublic2? ToEnum(string value) + public static ListRepoTagsApiV1ReposTagsGetIsPublic? ToEnum(string value) { return value switch { - "true" => ListRepoTagsApiV1ReposTagsGetIsPublic2.True, - "false" => ListRepoTagsApiV1ReposTagsGetIsPublic2.False, + "true" => ListRepoTagsApiV1ReposTagsGetIsPublic.True, + "false" => ListRepoTagsApiV1ReposTagsGetIsPublic.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs similarity index 58% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs index 5a972d3bb3..d69e049ab1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsArchived.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListReposApiV1ReposGetIsArchived2.g.cs +//HintName: G.Models.ListReposApiV1ReposGetIsArchived.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum ListReposApiV1ReposGetIsArchived2 + public enum ListReposApiV1ReposGetIsArchived { /// /// @@ -26,31 +26,31 @@ public enum ListReposApiV1ReposGetIsArchived2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListReposApiV1ReposGetIsArchived2Extensions + public static class ListReposApiV1ReposGetIsArchivedExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListReposApiV1ReposGetIsArchived2 value) + public static string ToValueString(this ListReposApiV1ReposGetIsArchived value) { return value switch { - ListReposApiV1ReposGetIsArchived2.True => "true", - ListReposApiV1ReposGetIsArchived2.Allow => "allow", - ListReposApiV1ReposGetIsArchived2.False => "false", + ListReposApiV1ReposGetIsArchived.True => "true", + ListReposApiV1ReposGetIsArchived.Allow => "allow", + ListReposApiV1ReposGetIsArchived.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListReposApiV1ReposGetIsArchived2? ToEnum(string value) + public static ListReposApiV1ReposGetIsArchived? ToEnum(string value) { return value switch { - "true" => ListReposApiV1ReposGetIsArchived2.True, - "allow" => ListReposApiV1ReposGetIsArchived2.Allow, - "false" => ListReposApiV1ReposGetIsArchived2.False, + "true" => ListReposApiV1ReposGetIsArchived.True, + "allow" => ListReposApiV1ReposGetIsArchived.Allow, + "false" => ListReposApiV1ReposGetIsArchived.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs similarity index 62% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs index a54e7591db..8253332d13 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListReposApiV1ReposGetIsPublic.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListReposApiV1ReposGetIsPublic2.g.cs +//HintName: G.Models.ListReposApiV1ReposGetIsPublic.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum ListReposApiV1ReposGetIsPublic2 + public enum ListReposApiV1ReposGetIsPublic { /// /// @@ -22,29 +22,29 @@ public enum ListReposApiV1ReposGetIsPublic2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListReposApiV1ReposGetIsPublic2Extensions + public static class ListReposApiV1ReposGetIsPublicExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListReposApiV1ReposGetIsPublic2 value) + public static string ToValueString(this ListReposApiV1ReposGetIsPublic value) { return value switch { - ListReposApiV1ReposGetIsPublic2.True => "true", - ListReposApiV1ReposGetIsPublic2.False => "false", + ListReposApiV1ReposGetIsPublic.True => "true", + ListReposApiV1ReposGetIsPublic.False => "false", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListReposApiV1ReposGetIsPublic2? ToEnum(string value) + public static ListReposApiV1ReposGetIsPublic? ToEnum(string value) { return value switch { - "true" => ListReposApiV1ReposGetIsPublic2.True, - "false" => ListReposApiV1ReposGetIsPublic2.False, + "true" => ListReposApiV1ReposGetIsPublic.True, + "false" => ListReposApiV1ReposGetIsPublic.False, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs similarity index 61% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs index 354b768e0c..2ad5d17564 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRulesApiV1RunsRulesGetType.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.ListRulesApiV1RunsRulesGetType2.g.cs +//HintName: G.Models.ListRulesApiV1RunsRulesGetType.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum ListRulesApiV1RunsRulesGetType2 + public enum ListRulesApiV1RunsRulesGetType { /// /// @@ -22,29 +22,29 @@ public enum ListRulesApiV1RunsRulesGetType2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ListRulesApiV1RunsRulesGetType2Extensions + public static class ListRulesApiV1RunsRulesGetTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ListRulesApiV1RunsRulesGetType2 value) + public static string ToValueString(this ListRulesApiV1RunsRulesGetType value) { return value switch { - ListRulesApiV1RunsRulesGetType2.Session => "session", - ListRulesApiV1RunsRulesGetType2.Dataset => "dataset", + ListRulesApiV1RunsRulesGetType.Session => "session", + ListRulesApiV1RunsRulesGetType.Dataset => "dataset", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ListRulesApiV1RunsRulesGetType2? ToEnum(string value) + public static ListRulesApiV1RunsRulesGetType? ToEnum(string value) { return value switch { - "session" => ListRulesApiV1RunsRulesGetType2.Session, - "dataset" => ListRulesApiV1RunsRulesGetType2.Dataset, + "session" => ListRulesApiV1RunsRulesGetType.Session, + "dataset" => ListRulesApiV1RunsRulesGetType.Dataset, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRunsResponse.g.verified.cs index 03bf2b370c..071f36c2a4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRunsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRunsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ListRunsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,14 +21,13 @@ public sealed partial class ListRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("cursors")] [global::System.Text.Json.Serialization.JsonRequired] - public required object Cursors { get; set; } + public required global::System.Collections.Generic.Dictionary Cursors { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParsedQuery { get; set; } + public string? ParsedQuery { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MemberIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MemberIdentity.g.verified.cs index 4b0cd03d99..2f3321601d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MemberIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MemberIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MemberIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class MemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -50,8 +47,7 @@ public sealed partial class MemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -64,15 +60,13 @@ public sealed partial class MemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// @@ -85,22 +79,19 @@ public sealed partial class MemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelFeedbackSource.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelFeedbackSource.g.verified.cs index be15a9975d..e6f128d234 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelFeedbackSource.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelFeedbackSource.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ModelFeedbackSource.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,8 +19,7 @@ public sealed partial class ModelFeedbackSource /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs index 4891392260..8170668e0f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapCreateSchema.g.verified.cs @@ -22,8 +22,7 @@ public sealed partial class ModelPriceMapCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -58,8 +57,7 @@ public sealed partial class ModelPriceMapCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Provider { get; set; } + public string? Provider { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs index be1c9b43c0..e46a3204ef 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ModelPriceMapUpdateSchema.g.verified.cs @@ -22,8 +22,7 @@ public sealed partial class ModelPriceMapUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -58,8 +57,7 @@ public sealed partial class ModelPriceMapUpdateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Provider { get; set; } + public string? Provider { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorBlock.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorBlock.g.verified.cs index 7d5ad3e7df..eb1e5a5852 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorBlock.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorBlock.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MonitorBlock.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class MonitorBlock /// /// [global::System.Text.Json.Serialization.JsonPropertyName("subtitle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Subtitle { get; set; } + public string? Subtitle { get; set; } /// /// @@ -57,15 +54,13 @@ public sealed partial class MonitorBlock /// /// [global::System.Text.Json.Serialization.JsonPropertyName("click_target")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ClickTarget { get; set; } + public string? ClickTarget { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("toggleable_marks")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf>, object>? ToggleableMarks { get; set; } + public global::System.Collections.Generic.Dictionary>? ToggleableMarks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorGroupSpec.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorGroupSpec.g.verified.cs index db0d81aded..35ce6ba21d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorGroupSpec.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorGroupSpec.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.MonitorGroupSpec.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class MonitorGroupSpec /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tag { get; set; } + public string? Tag { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public global::G.MetadataKeyValue? Metadata { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptRequest.g.verified.cs index 74d0ba5814..08eb1fe889 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OptimizePromptRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,9 +34,8 @@ public sealed partial class OptimizePromptRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("overall_feedback")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf OverallFeedback { get; set; } + public required string? OverallFeedback { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptResponse.g.verified.cs index 96d7c4b481..6fadff467e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OptimizePromptResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OptimizePromptResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,9 +20,8 @@ public sealed partial class OptimizePromptResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf Error { get; set; } + public required string? Error { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgIdentityPatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgIdentityPatch.g.verified.cs index e506cf326a..e21ce7f005 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgIdentityPatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgIdentityPatch.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgIdentityPatch.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,22 +13,19 @@ public sealed partial class OrgIdentityPatch /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgMemberIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgMemberIdentity.g.verified.cs index 0dbebdfac6..9cee743c12 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgMemberIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgMemberIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgMemberIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// @@ -50,8 +47,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LsUserId { get; set; } + public global::System.Guid? LsUserId { get; set; } /// /// @@ -64,15 +60,13 @@ public sealed partial class OrgMemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// @@ -85,22 +79,19 @@ public sealed partial class OrgMemberIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgPendingIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgPendingIdentity.g.verified.cs index 63b5e5650e..4ba9ee53c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgPendingIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrgPendingIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrgPendingIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,36 +26,31 @@ public sealed partial class OrgPendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// @@ -77,22 +70,19 @@ public sealed partial class OrgPendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -105,8 +95,7 @@ public sealed partial class OrgPendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// Default Value: [] diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Organization.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Organization.g.verified.cs index d9bca85965..61cad71afc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Organization.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Organization.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Organization.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class Organization /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -57,15 +53,14 @@ public sealed partial class Organization /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.PaymentPlanTierJsonConverter))] + public global::G.PaymentPlanTier? Tier { get; set; } /// - /// + /// Stripe customer billing info. /// [global::System.Text.Json.Serialization.JsonPropertyName("payment_method")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PaymentMethod { get; set; } + public global::G.StripePaymentMethodInfo? PaymentMethod { get; set; } /// /// @@ -78,22 +73,19 @@ public sealed partial class Organization /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_of_billing_period")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndOfBillingPeriod { get; set; } + public global::System.DateTime? EndOfBillingPeriod { get; set; } /// - /// + /// Customer visible plan information. /// [global::System.Text.Json.Serialization.JsonPropertyName("current_plan")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CurrentPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? CurrentPlan { get; set; } /// - /// + /// Customer visible plan information. /// [global::System.Text.Json.Serialization.JsonPropertyName("upcoming_plan")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UpcomingPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? UpcomingPlan { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationBillingInfo.g.verified.cs index 64ee1a2741..d69d88f1cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationBillingInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationBillingInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationBillingInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class OrganizationBillingInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// @@ -57,36 +54,32 @@ public sealed partial class OrganizationBillingInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.PaymentPlanTierJsonConverter))] + public global::G.PaymentPlanTier? Tier { get; set; } /// - /// + /// Stripe customer billing info. /// [global::System.Text.Json.Serialization.JsonPropertyName("payment_method")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PaymentMethod { get; set; } + public global::G.StripePaymentMethodInfo? PaymentMethod { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_of_billing_period")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndOfBillingPeriod { get; set; } + public global::System.DateTime? EndOfBillingPeriod { get; set; } /// - /// + /// Customer visible plan information. /// [global::System.Text.Json.Serialization.JsonPropertyName("current_plan")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CurrentPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? CurrentPlan { get; set; } /// - /// + /// Customer visible plan information. /// [global::System.Text.Json.Serialization.JsonPropertyName("upcoming_plan")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UpcomingPlan { get; set; } + public global::G.CustomerVisiblePlanInfo? UpcomingPlan { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationConfig.g.verified.cs index a4c1b4ca09..fdc4240abb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationConfig.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationConfig.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -39,22 +37,19 @@ public sealed partial class OrganizationConfig /// /// [global::System.Text.Json.Serialization.JsonPropertyName("startup_plan_approval_date")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartupPlanApprovalDate { get; set; } + public string? StartupPlanApprovalDate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("partner_plan_approval_date")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PartnerPlanApprovalDate { get; set; } + public string? PartnerPlanApprovalDate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("premier_plan_approval_date")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PremierPlanApprovalDate { get; set; } + public string? PremierPlanApprovalDate { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationInfo.g.verified.cs index cf61baeb8d..2b7a55307e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class OrganizationInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -43,8 +39,8 @@ public sealed partial class OrganizationInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Tier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.PaymentPlanTierJsonConverter))] + public global::G.PaymentPlanTier? Tier { get; set; } /// /// Default Value: false @@ -74,8 +70,7 @@ public sealed partial class OrganizationInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("sso_login_slug")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SsoLoginSlug { get; set; } + public string? SsoLoginSlug { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs index 4ec02005a9..c53269663c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationPGSchemaSlim.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationPGSchemaSlim.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,22 +27,19 @@ public sealed partial class OrganizationPGSchemaSlim /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedAt { get; set; } + public global::System.DateTime? CreatedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_by_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CreatedByUserId { get; set; } + public global::System.Guid? CreatedByUserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// @@ -64,8 +59,7 @@ public sealed partial class OrganizationPGSchemaSlim /// /// [global::System.Text.Json.Serialization.JsonPropertyName("sso_login_slug")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SsoLoginSlug { get; set; } + public string? SsoLoginSlug { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationUpdate.g.verified.cs index 8551c1fd7c..bf59ec1bdd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.OrganizationUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.OrganizationUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class OrganizationUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DisplayName { get; set; } + public string? DisplayName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentity.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentity.g.verified.cs index 1e13e8e042..c04e8a1880 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentity.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentity.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PendingIdentity.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,36 +26,31 @@ public sealed partial class PendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// @@ -77,22 +70,19 @@ public sealed partial class PendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UserId { get; set; } + public global::System.Guid? UserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -105,8 +95,7 @@ public sealed partial class PendingIdentity /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentityCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentityCreate.g.verified.cs index 9a6a5fe404..63b15ac278 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentityCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PendingIdentityCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PendingIdentityCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,36 +26,31 @@ public sealed partial class PendingIdentityCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? WorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? WorkspaceRoleId { get; set; } + public global::System.Guid? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs index da6a192e5f..058be4eb1a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundRunOverDatasetRequestSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,29 +27,25 @@ public sealed partial class PlaygroundRunOverDatasetRequestSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunId { get; set; } + public string? RunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("repo_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RepoId { get; set; } + public string? RepoId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tools { get; set; } + public global::System.Collections.Generic.IList? Tools { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ToolChoice { get; set; } + public string? ToolChoice { get; set; } /// /// Configuration for a Runnable. @@ -64,8 +58,7 @@ public sealed partial class PlaygroundRunOverDatasetRequestSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("project_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ProjectName { get; set; } + public string? ProjectName { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs similarity index 93% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs index 118e67aa29..401741fc18 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item.g.cs +//HintName: G.Models.PlaygroundRunOverDatasetRequestSchemaTool.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item + public sealed partial class PlaygroundRunOverDatasetRequestSchemaTool { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs index 179fd9ef3b..91d7d4683f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsCreateRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class PlaygroundSettingsCreateRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs index 0afbd88a9c..d2b1514b16 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,8 +27,7 @@ public sealed partial class PlaygroundSettingsResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs index 27ce66d38c..f00ae31ba7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsUpdateRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PlaygroundSettingsUpdateRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class PlaygroundSettingsUpdateRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ProviderUserSlim.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ProviderUserSlim.g.verified.cs index 23c3b09c20..4257d6e67d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ProviderUserSlim.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ProviderUserSlim.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ProviderUserSlim.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,8 @@ public sealed partial class ProviderUserSlim /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Provider { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AuthProviderJsonConverter))] + public global::G.AuthProvider? Provider { get; set; } /// /// @@ -36,15 +34,13 @@ public sealed partial class ProviderUserSlim /// /// [global::System.Text.Json.Serialization.JsonPropertyName("saml_provider_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SamlProviderId { get; set; } + public global::System.Guid? SamlProviderId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider_user_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ProviderUserId { get; set; } + public global::System.Guid? ProviderUserId { get; set; } /// /// @@ -64,22 +60,19 @@ public sealed partial class ProviderUserSlim /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email_confirmed_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EmailConfirmedAt { get; set; } + public global::System.DateTime? EmailConfirmedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicComparativeExperiment.g.verified.cs index 16935b04de..9cd8908d12 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicComparativeExperiment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicComparativeExperiment.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PublicComparativeExperiment.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class PublicComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// @@ -50,8 +46,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -64,8 +59,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicExampleWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicExampleWithRuns.g.verified.cs index 0cad3d7676..6fe6287d40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicExampleWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicExampleWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.PublicExampleWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// @@ -29,15 +26,13 @@ public sealed partial class PublicExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SourceRunId { get; set; } + public global::System.Guid? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -70,8 +65,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ModifiedAt { get; set; } + public global::System.DateTime? ModifiedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs index 537cee3a44..bf2cc631f0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryExampleSchemaWithRuns.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryExampleSchemaWithRuns.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class QueryExampleSchemaWithRuns /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf>, object>? Filters { get; set; } + public global::System.Collections.Generic.Dictionary>? Filters { get; set; } /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryFeedbackDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryFeedbackDelta.g.verified.cs index 45cf1d6946..55f0448d8a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryFeedbackDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryFeedbackDelta.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryFeedbackDelta.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf>, object>? Filters { get; set; } + public global::System.Collections.Generic.Dictionary>? Filters { get; set; } /// /// Default Value: 0 @@ -55,8 +52,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ComparativeExperimentId { get; set; } + public global::System.Guid? ComparativeExperimentId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs index c785780e61..2dd773b021 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.QueryParamsForPublicRunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.QueryParamsForPublicRunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class QueryParamsForPublicRunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Id { get; set; } + public global::System.Collections.Generic.IList? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoExampleResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoExampleResponse.g.verified.cs index 35bf16bba6..52012e3cef 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoExampleResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoExampleResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RepoExampleResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,22 +20,19 @@ public sealed partial class RepoExampleResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoWithLookups.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoWithLookups.g.verified.cs index 90a5881a3d..5696beaac8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoWithLookups.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RepoWithLookups.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RepoWithLookups.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RepoWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// @@ -85,23 +81,20 @@ public sealed partial class RepoWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("original_repo_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OriginalRepoId { get; set; } + public global::System.Guid? OriginalRepoId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upstream_repo_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UpstreamRepoId { get; set; } + public global::System.Guid? UpstreamRepoId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("owner")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf Owner { get; set; } + public required string? Owner { get; set; } /// /// @@ -135,15 +128,13 @@ public sealed partial class RepoWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("liked_by_auth_user")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LikedByAuthUser { get; set; } + public bool? LikedByAuthUser { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_commit_hash")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastCommitHash { get; set; } + public string? LastCommitHash { get; set; } /// /// @@ -156,22 +147,19 @@ public sealed partial class RepoWithLookups /// /// [global::System.Text.Json.Serialization.JsonPropertyName("original_repo_full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OriginalRepoFullName { get; set; } + public string? OriginalRepoFullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upstream_repo_full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UpstreamRepoFullName { get; set; } + public string? UpstreamRepoFullName { get; set; } /// - /// + /// Response model for get_commit_manifest. /// [global::System.Text.Json.Serialization.JsonPropertyName("latest_commit_manifest")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatestCommitManifest { get; set; } + public global::G.CommitManifestResponse? LatestCommitManifest { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Role.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Role.g.verified.cs index 8eab2abeb2..24d7eae3ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Role.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Role.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.Role.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -43,8 +41,7 @@ public sealed partial class Role /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -57,8 +54,8 @@ public sealed partial class Role /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AccessScope { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AccessScopeJsonConverter))] + public global::G.AccessScope? AccessScope { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogActionResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogActionResponse.g.verified.cs index 21d71ab6a7..038c05fbb3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogActionResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogActionResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RuleLogActionResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -23,8 +21,7 @@ public sealed partial class RuleLogActionResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("payload")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Payload { get; set; } + public object? Payload { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogSchema.g.verified.cs index fcef4f8249..c70bfeba08 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RuleLogSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RuleLogSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,22 +27,19 @@ public sealed partial class RuleLogSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunType { get; set; } + public string? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunSessionId { get; set; } + public global::System.Guid? RunSessionId { get; set; } /// /// @@ -64,36 +59,31 @@ public sealed partial class RuleLogSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToAnnotationQueue { get; set; } + public global::G.RuleLogActionResponse? AddToAnnotationQueue { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToDataset { get; set; } + public global::G.RuleLogActionResponse? AddToDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Evaluators { get; set; } + public global::G.RuleLogActionResponse? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Alerts { get; set; } + public global::G.RuleLogActionResponse? Alerts { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Webhooks { get; set; } + public global::G.RuleLogActionResponse? Webhooks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupRequest.g.verified.cs index 7486ccbd30..4bc1581f81 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunGroupRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,22 +27,19 @@ public sealed partial class RunGroupRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StartTime { get; set; } + public global::System.DateTime? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStats.g.verified.cs index 0bac785a35..f4f826dab1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStats.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunGroupStats.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,113 +20,97 @@ public sealed partial class RunGroupStats /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("median_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MedianTokens { get; set; } + public int? MedianTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs index 7172859f0b..fa175ebd39 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacetsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacet.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunStatsRunFacetsVariant1Item.g.cs +//HintName: G.Models.RunGroupStatsRunFacet.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunStatsRunFacetsVariant1Item + public sealed partial class RunGroupStatsRunFacet { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs index 5936ba21e3..95facf44fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunPublicDatasetSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -50,22 +46,19 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -77,78 +70,67 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -182,36 +164,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -235,36 +212,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs index d9bdd16037..e8e587f11d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunPublicSchemaEventsVariant1Item.g.cs +//HintName: G.Models.RunPublicDatasetSchemaEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunPublicSchemaEventsVariant1Item + public sealed partial class RunPublicDatasetSchemaEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs deleted file mode 100644 index 7249e0b440..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.RunPublicDatasetSchemaEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class RunPublicDatasetSchemaEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::System.Text.Json.Serialization.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchema.g.verified.cs index d4fd0ec8d9..0bd7727916 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunPublicSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RunPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -50,22 +46,19 @@ public sealed partial class RunPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -77,78 +70,67 @@ public sealed partial class RunPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -182,36 +164,31 @@ public sealed partial class RunPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -235,36 +212,31 @@ public sealed partial class RunPublicSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs index 34a7c59eae..247137d9b3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunGroupStatsRunFacetsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunPublicSchemaEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunGroupStatsRunFacetsVariant1Item.g.cs +//HintName: G.Models.RunPublicSchemaEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunGroupStatsRunFacetsVariant1Item + public sealed partial class RunPublicSchemaEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesCreateSchema.g.verified.cs index 8e6b6b0781..576dc80238 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesCreateSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesCreateSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesCreateSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// Default Value: true @@ -35,8 +32,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// @@ -49,29 +45,25 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("backfill_from")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? BackfillFrom { get; set; } + public global::System.DateTime? BackfillFrom { get; set; } /// /// Default Value: false @@ -83,8 +75,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("num_few_shot_examples")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumFewShotExamples { get; set; } + public int? NumFewShotExamples { get; set; } /// /// Default Value: false @@ -96,15 +87,13 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToAnnotationQueueId { get; set; } + public global::System.Guid? AddToAnnotationQueueId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToDatasetId { get; set; } + public global::System.Guid? AddToDatasetId { get; set; } /// /// Default Value: false @@ -116,29 +105,25 @@ public sealed partial class RunRulesCreateSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Evaluators { get; set; } + public global::System.Collections.Generic.IList? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("code_evaluators")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? CodeEvaluators { get; set; } + public global::System.Collections.Generic.IList? CodeEvaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Alerts { get; set; } + public global::System.Collections.Generic.IList? Alerts { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Webhooks { get; set; } + public global::System.Collections.Generic.IList? Webhooks { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs index 627f84d9e1..d3c1891c76 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesPagerdutyAlertSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesPagerdutyAlertSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,11 +10,11 @@ namespace G public sealed partial class RunRulesPagerdutyAlertSchema { /// - /// Default Value: pagerduty + /// Enum for alert types. /// [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.RunRulesAlertTypeJsonConverter))] + public global::G.RunRulesAlertType? Type { get; set; } /// /// @@ -29,15 +27,14 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("summary")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Summary { get; set; } + public string? Summary { get; set; } /// - /// Default Value: warning + /// Enum for severity. /// [global::System.Text.Json.Serialization.JsonPropertyName("severity")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.PagerdutySeverityJsonConverter))] + public global::G.PagerdutySeverity? Severity { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesSchema.g.verified.cs index 248859c6ad..ac29d2646e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -35,29 +33,25 @@ public sealed partial class RunRulesSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// @@ -77,50 +71,43 @@ public sealed partial class RunRulesSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFilter { get; set; } + public string? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TreeFilter { get; set; } + public string? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToAnnotationQueueId { get; set; } + public global::System.Guid? AddToAnnotationQueueId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToAnnotationQueueName { get; set; } + public string? AddToAnnotationQueueName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToDatasetId { get; set; } + public global::System.Guid? AddToDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddToDatasetName { get; set; } + public string? AddToDatasetName { get; set; } /// /// Default Value: false @@ -132,8 +119,7 @@ public sealed partial class RunRulesSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("corrections_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CorrectionsDatasetId { get; set; } + public global::System.Guid? CorrectionsDatasetId { get; set; } /// /// Default Value: false @@ -145,37 +131,32 @@ public sealed partial class RunRulesSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("num_few_shot_examples")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? NumFewShotExamples { get; set; } + public int? NumFewShotExamples { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Evaluators { get; set; } + public global::System.Collections.Generic.IList? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("code_evaluators")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? CodeEvaluators { get; set; } + public global::System.Collections.Generic.IList? CodeEvaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Alerts { get; set; } + public global::System.Collections.Generic.IList? Alerts { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf, object> Webhooks { get; set; } + public required global::System.Collections.Generic.IList? Webhooks { get; set; } /// /// Default Value: false @@ -201,8 +182,7 @@ public sealed partial class RunRulesSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("backfill_from")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? BackfillFrom { get; set; } + public global::System.DateTime? BackfillFrom { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs index c9b61172bc..6ee622193e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesWebhookSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunRulesWebhookSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class RunRulesWebhookSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("headers")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Headers { get; set; } + public global::System.Collections.Generic.Dictionary? Headers { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchema.g.verified.cs index 45c39a20d3..2b73aca5e8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -50,22 +46,19 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -77,78 +70,67 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -182,36 +164,31 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -235,36 +212,31 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// @@ -284,43 +256,38 @@ public sealed partial class RunSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_queued_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastQueuedAt { get; set; } + public global::System.DateTime? LastQueuedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("in_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InDataset { get; set; } + public bool? InDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("share_token")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ShareToken { get; set; } + public global::System.Guid? ShareToken { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_first_received_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFirstReceivedAt { get; set; } + public global::System.DateTime? TraceFirstReceivedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ttl_seconds")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TtlSeconds { get; set; } + public int? TtlSeconds { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonView.g.verified.cs index d0a6257691..669e176a6d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonView.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchemaComparisonView.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -50,22 +46,19 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -77,78 +70,67 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -161,8 +143,7 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// @@ -182,50 +163,43 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// @@ -238,15 +212,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("app_path")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AppPath { get; set; } + public string? AppPath { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs new file mode 100644 index 0000000000..c96a312b5b --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunSchemaComparisonViewEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunSchemaComparisonViewEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs deleted file mode 100644 index 2de5186cb3..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaComparisonViewEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.RunSchemaComparisonViewEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class RunSchemaComparisonViewEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::System.Text.Json.Serialization.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEvent.g.verified.cs new file mode 100644 index 0000000000..5a2c7f1dfa --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunSchemaEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunSchemaEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs index 2006d1140c..b85ac4b566 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunSchemaWithAnnotationQueueInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsPreview { get; set; } + public string? InputsPreview { get; set; } /// /// Enum for run types. @@ -50,22 +46,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Error { get; set; } + public string? Error { get; set; } /// /// Default Value: 1 @@ -77,78 +70,67 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Serialized { get; set; } + public object? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsPreview { get; set; } + public string? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestId { get; set; } + public global::System.Guid? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ManifestS3Id { get; set; } + public global::System.Guid? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InputsS3Urls { get; set; } + public object? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OutputsS3Urls { get; set; } + public object? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? S3Urls { get; set; } + public object? S3Urls { get; set; } /// /// @@ -182,36 +164,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ChildRunIds { get; set; } + public global::System.Collections.Generic.IList? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? DirectChildRunIds { get; set; } + public global::System.Collections.Generic.IList? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? ParentRunIds { get; set; } + public global::System.Collections.Generic.IList? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? FeedbackStats { get; set; } + public global::System.Collections.Generic.Dictionary? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceExampleId { get; set; } + public global::System.Guid? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -235,36 +212,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PriceModelId { get; set; } + public global::System.Guid? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenTime { get; set; } + public global::System.DateTime? FirstTokenTime { get; set; } /// /// @@ -284,43 +256,38 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_queued_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastQueuedAt { get; set; } + public global::System.DateTime? LastQueuedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("in_dataset")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InDataset { get; set; } + public bool? InDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("share_token")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ShareToken { get; set; } + public global::System.Guid? ShareToken { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_first_received_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceFirstReceivedAt { get; set; } + public global::System.DateTime? TraceFirstReceivedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ttl_seconds")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TtlSeconds { get; set; } + public int? TtlSeconds { get; set; } /// /// Default Value: false @@ -339,22 +306,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastReviewedTime { get; set; } + public global::System.DateTime? LastReviewedTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("added_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AddedAt { get; set; } + public global::System.DateTime? AddedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("effective_added_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EffectiveAddedAt { get; set; } + public global::System.DateTime? EffectiveAddedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs similarity index 84% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs index c23d409ad3..970343c375 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.RunSchemaWithAnnotationQueueInfoEventsVariant1Item.g.cs +//HintName: G.Models.RunSchemaWithAnnotationQueueInfoEvent.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public sealed partial class RunSchemaWithAnnotationQueueInfoEventsVariant1Item + public sealed partial class RunSchemaWithAnnotationQueueInfoEvent { /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStats.g.verified.cs index 00abd33705..8dd5c0a771 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStats.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.RunStats.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,113 +20,97 @@ public sealed partial class RunStats /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("median_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MedianTokens { get; set; } + public int? MedianTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacet.g.verified.cs new file mode 100644 index 0000000000..8db7c912b7 --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStatsRunFacet.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.RunStatsRunFacet.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class RunStatsRunFacet + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunnableConfig.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunnableConfig.g.verified.cs index 6d5814195d..da3d7bea28 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunnableConfig.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunnableConfig.g.verified.cs @@ -27,8 +27,8 @@ public sealed partial class RunnableConfig /// /// [global::System.Text.Json.Serialization.JsonPropertyName("callbacks")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3))] - public global::G.AnyOf, global::G.RunnableConfigCallbacks, object>? Callbacks { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] + public global::G.AnyOf, global::G.RunnableConfigCallbacks>? Callbacks { get; set; } /// /// @@ -40,8 +40,7 @@ public sealed partial class RunnableConfig /// /// [global::System.Text.Json.Serialization.JsonPropertyName("max_concurrency")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MaxConcurrency { get; set; } + public int? MaxConcurrency { get; set; } /// /// @@ -59,8 +58,7 @@ public sealed partial class RunnableConfig /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunId { get; set; } + public global::System.Guid? RunId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs index 05943da545..038b0b3dcf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOEmailVerificationStatusResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOEmailVerificationStatusResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,8 +13,7 @@ public sealed partial class SSOEmailVerificationStatusResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email_confirmed_at")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EmailConfirmedAt { get; set; } + public global::System.DateTime? EmailConfirmedAt { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOProvider.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOProvider.g.verified.cs index 4c728ac09b..18550ff640 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOProvider.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOProvider.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOProvider.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,15 +48,13 @@ public sealed partial class SSOProvider /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_xml")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsCreate.g.verified.cs index d8552f24ae..f3222e959e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOSettingsCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -29,15 +27,13 @@ public sealed partial class SSOSettingsCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_xml")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsUpdate.g.verified.cs index ecb2eed462..aaed886ecb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SSOSettingsUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SSOSettingsUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,29 +13,25 @@ public sealed partial class SSOSettingsUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultWorkspaceRoleId { get; set; } + public global::System.Guid? DefaultWorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? DefaultWorkspaceIds { get; set; } + public global::System.Collections.Generic.IList? DefaultWorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataUrl { get; set; } + public string? MetadataUrl { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata_xml")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? MetadataXml { get; set; } + public string? MetadataXml { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchDatasetRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchDatasetRequest.g.verified.cs index df477654f1..7150ec050c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchDatasetRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchDatasetRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SearchDatasetRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -34,8 +32,7 @@ public sealed partial class SearchDatasetRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Filter { get; set; } + public string? Filter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchedFewShotExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchedFewShotExample.g.verified.cs index 2d0e96a58c..f6ca5e2ada 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchedFewShotExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchedFewShotExample.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SearchedFewShotExample.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,8 +34,7 @@ public sealed partial class SearchedFewShotExample /// /// [global::System.Text.Json.Serialization.JsonPropertyName("debug_info")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DebugInfo { get; set; } + public object? DebugInfo { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SecretUpsert.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SecretUpsert.g.verified.cs index 40f384e88f..cd183eb8b2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SecretUpsert.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SecretUpsert.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SecretUpsert.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,9 +20,8 @@ public sealed partial class SecretUpsert /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf Value { get; set; } + public required string? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccount.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccount.g.verified.cs index b14a9f0ba1..fc6ad51c29 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccount.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccount.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccount.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,9 +48,8 @@ public sealed partial class ServiceAccount /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf DefaultWorkspaceId { get; set; } + public required global::System.Guid? DefaultWorkspaceId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs index debc954cb3..35f60312bb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountCreateResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccountCreateResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,9 +48,8 @@ public sealed partial class ServiceAccountCreateResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf DefaultWorkspaceId { get; set; } + public required global::System.Guid? DefaultWorkspaceId { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs index c7d7e06e29..02ec84eb1b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccountDeleteResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.ServiceAccountDeleteResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,9 +48,8 @@ public sealed partial class ServiceAccountDeleteResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.AnyOf DefaultWorkspaceId { get; set; } + public required global::System.Guid? DefaultWorkspaceId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SingleCustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SingleCustomChartResponse.g.verified.cs index 05b94a582c..bcca911990 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SingleCustomChartResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SingleCustomChartResponse.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.SingleCustomChartResponse.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -36,15 +34,13 @@ public sealed partial class SingleCustomChartResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Metadata { get; set; } + public object? Metadata { get; set; } /// /// @@ -72,8 +68,7 @@ public sealed partial class SingleCustomChartResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CommonFilters { get; set; } + public global::G.CustomChartSeriesFilters? CommonFilters { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs index 44f082b1df..6e889abacd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessBillingInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -19,11 +17,10 @@ public sealed partial class StripeBusinessBillingInfo public required string Name { get; set; } /// - /// + /// Stripe customer address. /// [global::System.Text.Json.Serialization.JsonPropertyName("address")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Address { get; set; } + public global::G.StripeCustomerAddress? Address { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs index 9f82809474..6788ff9089 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoInput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessInfoInput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,25 +10,22 @@ namespace G public sealed partial class StripeBusinessInfoInput { /// - /// + /// Stripe customer billing information. /// [global::System.Text.Json.Serialization.JsonPropertyName("company_info")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompanyInfo { get; set; } + public global::G.StripeBusinessBillingInfo? CompanyInfo { get; set; } /// - /// + /// Stripe tax ID. /// [global::System.Text.Json.Serialization.JsonPropertyName("tax_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TaxId { get; set; } + public global::G.StripeTaxId? TaxId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("invoice_email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InvoiceEmail { get; set; } + public string? InvoiceEmail { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs index 58e9efd281..1e59392e47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessInfoOutput.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeBusinessInfoOutput.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -12,25 +10,22 @@ namespace G public sealed partial class StripeBusinessInfoOutput { /// - /// + /// Stripe customer billing information. /// [global::System.Text.Json.Serialization.JsonPropertyName("company_info")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompanyInfo { get; set; } + public global::G.StripeBusinessBillingInfo? CompanyInfo { get; set; } /// - /// + /// Stripe tax ID. /// [global::System.Text.Json.Serialization.JsonPropertyName("tax_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TaxId { get; set; } + public global::G.StripeTaxId? TaxId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("invoice_email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? InvoiceEmail { get; set; } + public string? InvoiceEmail { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeCustomerAddress.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeCustomerAddress.g.verified.cs index a629c141c9..5954a48086 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeCustomerAddress.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeCustomerAddress.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripeCustomerAddress.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::System.Text.Json.Serialization.JsonPropertyName("line2")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Line2 { get; set; } + public string? Line2 { get; set; } /// /// @@ -36,8 +33,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? State { get; set; } + public string? State { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs index 944761cb4a..59bbe51bde 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripePaymentMethodInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.StripePaymentMethodInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,36 +13,31 @@ public sealed partial class StripePaymentMethodInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("brand")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Brand { get; set; } + public string? Brand { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last4")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Last4 { get; set; } + public string? Last4 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("exp_month")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExpMonth { get; set; } + public int? ExpMonth { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("exp_year")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ExpYear { get; set; } + public int? ExpYear { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Email { get; set; } + public string? Email { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TTLSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TTLSettings.g.verified.cs index c4d163e1de..4c264c4123 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TTLSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TTLSettings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TTLSettings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,16 +13,15 @@ public sealed partial class TTLSettings /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTier3JsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.TraceTier3 DefaultTraceTier { get; set; } + public required global::G.TraceTier DefaultTraceTier { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKey.g.verified.cs index 0f9e472e6c..f2cf93a112 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKey.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKey.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagKey /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyCreate.g.verified.cs index 1e833d04b8..3c74c1d935 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagKeyCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyUpdate.g.verified.cs index 51f1f6140b..72142b965f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class TagKeyUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("key")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Key { get; set; } + public string? Key { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValues.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValues.g.verified.cs index 5c83722236..5927e7047c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValues.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValues.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyWithValues.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagKeyWithValues /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs index 267e4b2101..a755a34846 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagKeyWithValuesAndTaggings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagKeyWithValuesAndTaggings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagKeyWithValuesAndTaggings /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValue.g.verified.cs index a92c1290e0..d020df5618 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValue.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValue.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagValue /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueCreate.g.verified.cs index 43110f5dab..f6f70454d4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagValueCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueUpdate.g.verified.cs index dcf30e9121..b02a463aa4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class TagValueUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Value { get; set; } + public string? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueWithTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueWithTaggings.g.verified.cs index 64aca29c90..835658053d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueWithTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TagValueWithTaggings.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TagValueWithTaggings.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TagValueWithTaggings /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantCreate.g.verified.cs index 5189479378..eb5fc3b86c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,8 +19,7 @@ public sealed partial class TenantCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -35,8 +32,7 @@ public sealed partial class TenantCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantForUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantForUser.g.verified.cs index f73e2ef43a..0ed0715232 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantForUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantForUser.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantForUser.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,8 +20,7 @@ public sealed partial class TenantForUser /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? OrganizationId { get; set; } + public global::System.Guid? OrganizationId { get; set; } /// /// @@ -50,8 +47,7 @@ public sealed partial class TenantForUser /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Default Value: false @@ -63,22 +59,19 @@ public sealed partial class TenantForUser /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleId { get; set; } + public global::System.Guid? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RoleName { get; set; } + public string? RoleName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("permissions")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Permissions { get; set; } + public global::System.Collections.Generic.IList? Permissions { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareDatasetToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareDatasetToken.g.verified.cs index b96bf7c3d1..2d3ca6ec07 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareDatasetToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareDatasetToken.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantShareDatasetToken.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -43,8 +41,7 @@ public sealed partial class TenantShareDatasetToken /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetName { get; set; } + public string? DatasetName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareRunToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareRunToken.g.verified.cs index 4ce4bfcee6..f1a3c141b2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareRunToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareRunToken.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantShareRunToken.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -43,29 +41,25 @@ public sealed partial class TenantShareRunToken /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunName { get; set; } + public string? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunType { get; set; } + public string? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs index f46a52fc6d..b9664f67d0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TenantUsageLimitInfo.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,14 @@ public sealed partial class TenantUsageLimitInfo /// /// [global::System.Text.Json.Serialization.JsonPropertyName("usage_limit_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? UsageLimitType { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TenantUsageLimitTypeJsonConverter))] + public global::G.TenantUsageLimitType? UsageLimitType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_limit")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantLimit { get; set; } + public int? TenantLimit { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier.g.verified.cs similarity index 65% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier3.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier.g.verified.cs index bc0e646b0f..2488dfb6d3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TraceTier.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.TraceTier3.g.cs +//HintName: G.Models.TraceTier.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// /// - public enum TraceTier3 + public enum TraceTier { /// /// @@ -22,29 +22,29 @@ public enum TraceTier3 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class TraceTier3Extensions + public static class TraceTierExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this TraceTier3 value) + public static string ToValueString(this TraceTier value) { return value switch { - TraceTier3.Longlived => "longlived", - TraceTier3.Shortlived => "shortlived", + TraceTier.Longlived => "longlived", + TraceTier.Shortlived => "shortlived", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static TraceTier3? ToEnum(string value) + public static TraceTier? ToEnum(string value) { return value switch { - "longlived" => TraceTier3.Longlived, - "shortlived" => TraceTier3.Shortlived, + "longlived" => TraceTier.Longlived, + "shortlived" => TraceTier.Shortlived, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSession.g.verified.cs index 76bc61ba46..69a3e9e11f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSession.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSession.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,15 +19,13 @@ public sealed partial class TracerSession /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -41,29 +37,26 @@ public sealed partial class TracerSession /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// @@ -76,78 +69,67 @@ public sealed partial class TracerSession /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_count")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? RunCount { get; set; } + public int? RunCount { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP50 { get; set; } + public double? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LatencyP99 { get; set; } + public double? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP50 { get; set; } + public double? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FirstTokenP99 { get; set; } + public double? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalTokens { get; set; } + public int? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptTokens { get; set; } + public int? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionTokens { get; set; } + public int? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TotalCost { get; set; } + public string? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? PromptCost { get; set; } + public string? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? CompletionCost { get; set; } + public string? CompletionCost { get; set; } /// /// @@ -160,57 +142,49 @@ public sealed partial class TracerSession /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastRunStartTime { get; set; } + public global::System.DateTime? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time_live")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastRunStartTimeLive { get; set; } + public global::System.DateTime? LastRunStartTimeLive { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackStats { get; set; } + public object? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_feedback_stats")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? SessionFeedbackStats { get; set; } + public object? SessionFeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? RunFacets { get; set; } + public global::System.Collections.Generic.IList? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ErrorRate { get; set; } + public double? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? StreamingRate { get; set; } + public double? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("test_run_number")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TestRunNumber { get; set; } + public int? TestRunNumber { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionCreate.g.verified.cs index fec8181582..f9b8feb068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,15 +19,13 @@ public sealed partial class TracerSessionCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -41,36 +37,32 @@ public sealed partial class TracerSessionCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Id { get; set; } + public global::System.Guid? Id { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacet.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacet.g.verified.cs new file mode 100644 index 0000000000..0beb439ccd --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacet.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.TracerSessionRunFacet.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class TracerSessionRunFacet + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs deleted file mode 100644 index c3f3b43991..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionRunFacetsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.TracerSessionRunFacetsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class TracerSessionRunFacetsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::System.Text.Json.Serialization.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionUpdate.g.verified.cs index 979c04d886..2886e781aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionUpdate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionUpdate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,43 +13,38 @@ public sealed partial class TracerSessionUpdate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Name { get; set; } + public string? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs index 1da06e660d..4bbed9055e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionWithoutVirtualFields.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TracerSessionWithoutVirtualFields.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -21,15 +19,13 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? EndTime { get; set; } + public global::System.DateTime? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Extra { get; set; } + public object? Extra { get; set; } /// /// @@ -41,29 +37,26 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DefaultDatasetId { get; set; } + public global::System.Guid? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? ReferenceDatasetId { get; set; } + public global::System.Guid? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TraceTier { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] + public global::G.TraceTier? TraceTier { get; set; } /// /// @@ -83,8 +76,7 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time_live")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? LastRunStartTimeLive { get; set; } + public global::System.DateTime? LastRunStartTimeLive { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TriggerRulesRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TriggerRulesRequest.g.verified.cs index c16fb42293..6aa88508cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TriggerRulesRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TriggerRulesRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.TriggerRulesRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,15 +13,13 @@ public sealed partial class TriggerRulesRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("rule_ids")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? RuleIds { get; set; } + public global::System.Collections.Generic.IList? RuleIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? DatasetId { get; set; } + public global::System.Guid? DatasetId { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs index f750692fdc..e75f6dddb3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpdateFeedbackConfigSchema.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -22,15 +20,13 @@ public sealed partial class UpdateFeedbackConfigSchema /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FeedbackConfig { get; set; } + public global::G.FeedbackConfig? FeedbackConfig { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsLowerScoreBetter { get; set; } + public bool? IsLowerScoreBetter { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRepoRequest.g.verified.cs index 765d4cb225..91db75a997 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRepoRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRepoRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpdateRepoRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,36 +13,31 @@ public sealed partial class UpdateRepoRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Description { get; set; } + public string? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Readme { get; set; } + public string? Readme { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_public")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsPublic { get; set; } + public bool? IsPublic { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_archived")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? IsArchived { get; set; } + public bool? IsArchived { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequest.g.verified.cs index f31713bd0e..a3c53b2e34 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequest.g.verified.cs @@ -15,99 +15,86 @@ public sealed partial class UpdateRunRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? TraceId { get; set; } + public global::System.Guid? TraceId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? DottedOrder { get; set; } + public string? DottedOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? ParentRunId { get; set; } + public global::System.Guid? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory3))] - public global::G.OneOf? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Error { get; set; } + public string? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Inputs { get; set; } + public object? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Outputs { get; set; } + public object? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Events { get; set; } + public global::System.Collections.Generic.IList? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf, object>? Tags { get; set; } + public global::System.Collections.Generic.IList? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? Extra { get; set; } + public object? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? InputAttachments { get; set; } + public object? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? OutputAttachments { get; set; } + public object? OutputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionId { get; set; } + public global::System.Guid? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.OneOfJsonConverterFactory2))] - public global::G.OneOf? SessionName { get; set; } + public string? SessionName { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs new file mode 100644 index 0000000000..15dce39a00 --- /dev/null +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEvent.g.verified.cs @@ -0,0 +1,19 @@ +//HintName: G.Models.UpdateRunRequestEvent.g.cs + +#nullable enable + +namespace G +{ + /// + /// + /// + public sealed partial class UpdateRunRequestEvent + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + } +} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs deleted file mode 100644 index d4d1da0b16..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateRunRequestEventsVariant1Item.g.verified.cs +++ /dev/null @@ -1,19 +0,0 @@ -//HintName: G.Models.UpdateRunRequestEventsVariant1Item.g.cs - -#nullable enable - -namespace G -{ - /// - /// - /// - public sealed partial class UpdateRunRequestEventsVariant1Item - { - - /// - /// Additional properties that are not explicitly defined in the schema - /// - [global::System.Text.Json.Serialization.JsonExtensionData] - public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs index dc36e3e68b..d23a365c22 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UpsertTTLSettingsRequest.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -15,16 +13,15 @@ public sealed partial class UpsertTTLSettingsRequest /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantId { get; set; } + public global::System.Guid? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_trace_tier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTier3JsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.TraceTierJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.TraceTier3 DefaultTraceTier { get; set; } + public required global::G.TraceTier DefaultTraceTier { get; set; } /// /// Default Value: false diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertUsageLimit.g.verified.cs index 4e7288599e..fbcc0a6760 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertUsageLimit.g.verified.cs @@ -13,9 +13,9 @@ public sealed partial class UpsertUsageLimit /// Type of usage limit. /// [global::System.Text.Json.Serialization.JsonPropertyName("limit_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.UsageLimitType2JsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.UsageLimitTypeJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.UsageLimitType2 LimitType { get; set; } + public required global::G.UsageLimitType LimitType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimit.g.verified.cs index 73129438b3..dd186d1faf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimit.g.verified.cs @@ -13,9 +13,9 @@ public sealed partial class UsageLimit /// Type of usage limit. /// [global::System.Text.Json.Serialization.JsonPropertyName("limit_type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.UsageLimitType2JsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.UsageLimitTypeJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::G.UsageLimitType2 LimitType { get; set; } + public required global::G.UsageLimitType LimitType { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType.g.verified.cs similarity index 60% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType.g.verified.cs index 9784c8bfb7..9fc1851576 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UsageLimitType.g.verified.cs @@ -1,4 +1,4 @@ -//HintName: G.Models.UsageLimitType2.g.cs +//HintName: G.Models.UsageLimitType.g.cs #nullable enable @@ -7,7 +7,7 @@ namespace G /// /// Type of usage limit. /// - public enum UsageLimitType2 + public enum UsageLimitType { /// /// @@ -22,29 +22,29 @@ public enum UsageLimitType2 /// /// Enum extensions to do fast conversions without the reflection. /// - public static class UsageLimitType2Extensions + public static class UsageLimitTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this UsageLimitType2 value) + public static string ToValueString(this UsageLimitType value) { return value switch { - UsageLimitType2.MonthlyTraces => "monthly_traces", - UsageLimitType2.MonthlyLonglivedTraces => "monthly_longlived_traces", + UsageLimitType.MonthlyTraces => "monthly_traces", + UsageLimitType.MonthlyLonglivedTraces => "monthly_longlived_traces", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static UsageLimitType2? ToEnum(string value) + public static UsageLimitType? ToEnum(string value) { return value switch { - "monthly_traces" => UsageLimitType2.MonthlyTraces, - "monthly_longlived_traces" => UsageLimitType2.MonthlyLonglivedTraces, + "monthly_traces" => UsageLimitType.MonthlyTraces, + "monthly_longlived_traces" => UsageLimitType.MonthlyLonglivedTraces, _ => null, }; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UserWithPassword.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UserWithPassword.g.verified.cs index d5e446558f..2a5b2b5a7b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UserWithPassword.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UserWithPassword.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.UserWithPassword.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -50,22 +48,19 @@ public sealed partial class UserWithPassword /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? FullName { get; set; } + public string? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? AvatarUrl { get; set; } + public string? AvatarUrl { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? Password { get; set; } + public string? Password { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.WorkspaceCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.WorkspaceCreate.g.verified.cs index 1fbd45c7e7..ceb3bf9b80 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.WorkspaceCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.WorkspaceCreate.g.verified.cs @@ -1,7 +1,5 @@ //HintName: G.Models.WorkspaceCreate.g.cs -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace G @@ -28,8 +26,7 @@ public sealed partial class WorkspaceCreate /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2))] - public global::G.AnyOf? TenantHandle { get; set; } + public string? TenantHandle { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs index fc5d0180ea..00b86faa59 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.AddMemberToCurrentOrg.g.verified.cs @@ -132,11 +132,11 @@ partial void ProcessAddMemberToCurrentOrgResponseContent( public async global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool? readOnly = false, - global::G.AnyOf? roleId = default, - global::G.AnyOf, object>? workspaceIds = default, - global::G.AnyOf? workspaceRoleId = default, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + global::System.Guid? roleId = default, + global::System.Collections.Generic.IList? workspaceIds = default, + global::System.Guid? workspaceRoleId = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PendingIdentityCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs index bc41c8680d..40362e042d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.CreateSsoSettings.g.verified.cs @@ -130,8 +130,8 @@ partial void ProcessCreateSsoSettingsResponseContent( public async global::System.Threading.Tasks.Task CreateSsoSettingsAsync( global::System.Guid defaultWorkspaceRoleId, global::System.Collections.Generic.IList defaultWorkspaceIds, - global::G.AnyOf? metadataXml = default, - global::G.AnyOf? metadataUrl = default, + string? metadataXml = default, + string? metadataUrl = default, global::System.Collections.Generic.Dictionary? attributeMapping = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.GetDashboard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.GetDashboard.g.verified.cs index ef32a780fc..bc0f76306e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.GetDashboard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.GetDashboard.g.verified.cs @@ -9,12 +9,12 @@ public partial class OrgsClient partial void PrepareGetDashboardArguments( global::System.Net.Http.HttpClient httpClient, ref global::G.OrganizationDashboardType type, - ref global::G.AnyOf colorScheme); + ref global::G.OrganizationDashboardColorScheme colorScheme); partial void PrepareGetDashboardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme); + global::G.OrganizationDashboardColorScheme colorScheme); partial void ProcessGetDashboardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,12 +30,14 @@ partial void ProcessGetDashboardResponseContent( /// /// Enum for acceptable types of dashboards. /// - /// + /// + /// Enum for acceptable color schemes of dashboards. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::G.AnyOf colorScheme, + global::G.OrganizationDashboardColorScheme colorScheme, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -50,7 +52,7 @@ partial void ProcessGetDashboardResponseContent( baseUri: _httpClient.BaseAddress); __pathBuilder .AddRequiredParameter("type", type.ToValueString()) - .AddRequiredParameter("color_scheme", colorScheme.ToString() ?? string.Empty) + .AddRequiredParameter("color_scheme", colorScheme.ToValueString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs index c6307b2336..ac801e3c7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.SetCompanyInfo.g.verified.cs @@ -118,8 +118,12 @@ partial void ProcessSetCompanyInfoResponseContent( /// /// Set Company Info /// - /// - /// + /// + /// Stripe customer billing information. + /// + /// + /// Stripe tax ID. + /// /// /// /// Default Value: false @@ -127,9 +131,9 @@ partial void ProcessSetCompanyInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::G.AnyOf? companyInfo = default, - global::G.AnyOf? taxId = default, - global::G.AnyOf? invoiceEmail = default, + global::G.StripeBusinessBillingInfo? companyInfo = default, + global::G.StripeTaxId? taxId = default, + string? invoiceEmail = default, bool? isBusiness = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs index 8de1ab6933..c5fbd9d26a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrgMember.g.verified.cs @@ -134,9 +134,9 @@ partial void ProcessUpdateCurrentOrgMemberResponseContent( /// public async global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, - global::G.AnyOf? roleId = default, + string? password = default, + string? fullName = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OrgIdentityPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs index 0bd7bf5600..2cf69eeeb2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentOrganizationInfo.g.verified.cs @@ -122,7 +122,7 @@ partial void ProcessUpdateCurrentOrganizationInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentOrganizationInfoAsync( - global::G.AnyOf? displayName = default, + string? displayName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OrganizationUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs index d0abdb07cb..aee35eef25 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessUpdateCurrentUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::G.AnyOf? password = default, - global::G.AnyOf? fullName = default, + string? password = default, + string? fullName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BasicAuthUserPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs index 89130899f4..cae08c674f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateSsoSettings.g.verified.cs @@ -135,10 +135,10 @@ partial void ProcessUpdateSsoSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdateSsoSettingsAsync( global::System.Guid id, - global::G.AnyOf? defaultWorkspaceRoleId = default, - global::G.AnyOf, object>? defaultWorkspaceIds = default, - global::G.AnyOf? metadataUrl = default, - global::G.AnyOf? metadataXml = default, + global::System.Guid? defaultWorkspaceRoleId = default, + global::System.Collections.Generic.IList? defaultWorkspaceIds = default, + string? metadataUrl = default, + string? metadataXml = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.SSOSettingsUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs index 8c04266a09..3849f14939 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpsertTtlSettings.g.verified.cs @@ -126,8 +126,8 @@ partial void ProcessUpsertTtlSettingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index c5a1437354..6901e04e80 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs @@ -126,7 +126,7 @@ partial void ProcessCreatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( object settings, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PlaygroundSettingsCreateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs index 5e0540c838..b3a123a5ff 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.UpdatePlaygroundSettings.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessUpdatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::G.AnyOf? name = default, + string? name = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PlaygroundSettingsUpdateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.CountSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.CountSharedExamples.g.verified.cs index 75395a5e30..dc9158b01c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.CountSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.CountSharedExamples.g.verified.cs @@ -9,18 +9,18 @@ public partial class PublicClient partial void PrepareCountSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf? filter); + ref string? metadata, + ref string? filter); partial void PrepareCountSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, - global::G.AnyOf? filter); + string? metadata, + string? filter); partial void ProcessCountSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,10 +46,10 @@ partial void ProcessCountSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task CountSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, - global::G.AnyOf? filter = default, + string? metadata = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -57,7 +57,7 @@ partial void ProcessCountSharedExamplesResponseContent( PrepareCountSharedExamplesArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, filter: ref filter); @@ -66,10 +66,10 @@ partial void ProcessCountSharedExamplesResponseContent( path: $"/api/v1/public/{shareToken}/examples/count", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs index e3b7fe9345..be0ea66a65 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs @@ -114,7 +114,9 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -126,7 +128,9 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -141,23 +145,23 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs index 88bd3402da..92d147a377 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedRuns.g.verified.cs @@ -116,7 +116,7 @@ partial void ProcessQuerySharedRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryParamsForPublicRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs index 31d3549d0a..d51ad9a62f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedComparativeExperiments.g.verified.cs @@ -9,8 +9,8 @@ public partial class PublicClient partial void PrepareReadSharedComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, + ref string? name, + ref string? nameContains, ref int? offset, ref int? limit, ref global::G.SortByComparativeExperimentColumn? sortBy, @@ -19,8 +19,8 @@ partial void PrepareReadSharedComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, + string? name, + string? nameContains, int? offset, int? limit, global::G.SortByComparativeExperimentColumn? sortBy, @@ -57,8 +57,8 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, + string? name = default, + string? nameContains = default, int? offset = 0, int? limit = 100, global::G.SortByComparativeExperimentColumn? sortBy = default, @@ -81,8 +81,8 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( path: $"/api/v1/public/{shareToken}/datasets/comparative", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("sort_by", sortBy?.ToValueString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs index 9bbb12c12f..3d070cf335 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetExamplesWithRuns.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::G.AnyOf? comparativeExperimentId = default, - global::G.AnyOf>, object>? filters = default, + global::System.Guid? comparativeExperimentId = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 20, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs index 2dfdb8bbb0..3a8d107cf8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetFeedback.g.verified.cs @@ -9,30 +9,30 @@ public partial class PublicClient partial void PrepareReadSharedDatasetFeedbackArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level); partial void PrepareReadSharedDatasetFeedbackRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level); partial void ProcessReadSharedDatasetFeedbackResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -60,21 +60,23 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -82,13 +84,13 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( PrepareReadSharedDatasetFeedbackArguments( httpClient: _httpClient, shareToken: ref shareToken, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level); @@ -97,16 +99,15 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( path: $"/api/v1/public/{shareToken}/datasets/feedback", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", level?.ToValueString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs index 6069a591a1..3481736897 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDatasetTracerSessions.g.verified.cs @@ -9,32 +9,32 @@ public partial class PublicClient partial void PrepareReadSharedDatasetTracerSessionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? datasetVersion, + global::System.Collections.Generic.IList? id, + ref string? name, + ref string? nameContains, + ref string? datasetVersion, ref global::G.SessionSortableColumns? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf? sortByFeedbackKey, + ref string? sortByFeedbackKey, ref int? offset, ref int? limit, ref bool? facets, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadSharedDatasetTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? datasetVersion, + global::System.Collections.Generic.IList? id, + string? name, + string? nameContains, + string? datasetVersion, global::G.SessionSortableColumns? sortBy, bool? sortByDesc, - global::G.AnyOf? sortByFeedbackKey, + string? sortByFeedbackKey, int? offset, int? limit, bool? facets, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadSharedDatasetTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -72,17 +72,17 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? sortByFeedbackKey = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -90,7 +90,7 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( PrepareReadSharedDatasetTracerSessionsArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, name: ref name, nameContains: ref nameContains, datasetVersion: ref datasetVersion, @@ -106,13 +106,13 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( path: $"/api/v1/public/{shareToken}/datasets/sessions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("dataset_version", datasetVersion) .AddOptionalParameter("sort_by", sortBy?.ToValueString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) + .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("facets", facets?.ToString()) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs index b0ea17725a..ff967d0c28 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDelta.g.verified.cs @@ -129,10 +129,10 @@ partial void ProcessReadSharedDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::G.AnyOf>, object>? filters = default, + global::System.Collections.Generic.Dictionary>? filters = default, int? offset = 0, int? limit = 100, - global::G.AnyOf? comparativeExperimentId = default, + global::System.Guid? comparativeExperimentId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.QueryFeedbackDelta diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs index 3e79963abc..d840b63c29 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedExamples.g.verified.cs @@ -9,24 +9,24 @@ public partial class PublicClient partial void PrepareReadSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, ref global::G.AnyOf? asOf, - ref global::G.AnyOf? metadata, + ref string? metadata, ref int? offset, ref int? limit, global::System.Collections.Generic.IList? select, - ref global::G.AnyOf? filter); + ref string? filter); partial void PrepareReadSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? id, + global::System.Collections.Generic.IList? id, global::G.AnyOf? asOf, - global::G.AnyOf? metadata, + string? metadata, int? offset, int? limit, global::System.Collections.Generic.IList? select, - global::G.AnyOf? filter); + string? filter); partial void ProcessReadSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -61,13 +61,13 @@ partial void ProcessReadSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, + global::System.Collections.Generic.IList? id = default, global::G.AnyOf? asOf = default, - global::G.AnyOf? metadata = default, + string? metadata = default, int? offset = 0, int? limit = 100, global::System.Collections.Generic.IList? select = default, - global::G.AnyOf? filter = default, + string? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -75,7 +75,7 @@ partial void ProcessReadSharedExamplesResponseContent( PrepareReadSharedExamplesArguments( httpClient: _httpClient, shareToken: ref shareToken, - id: ref id, + id: id, asOf: ref asOf, metadata: ref metadata, offset: ref offset, @@ -87,12 +87,12 @@ partial void ProcessReadSharedExamplesResponseContent( path: $"/api/v1/public/{shareToken}/examples", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("as_of", asOf?.ToString() ?? string.Empty) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("filter", filter?.ToString() ?? string.Empty) + .AddOptionalParameter("filter", filter) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs index f8796fd454..240a53bb5d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedFeedbacks.g.verified.cs @@ -9,30 +9,30 @@ public partial class PublicClient partial void PrepareReadSharedFeedbacksArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::G.AnyOf, object>? run, - ref global::G.AnyOf, object>? key, - ref global::G.AnyOf, object>? session, - ref global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, ref int? limit, ref int? offset, - ref global::G.AnyOf, object>? user, - ref global::G.AnyOf? hasComment, - ref global::G.AnyOf? hasScore, - ref global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + ref bool? hasComment, + ref bool? hasScore, + ref global::G.FeedbackLevel? level); partial void PrepareReadSharedFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::G.AnyOf, object>? run, - global::G.AnyOf, object>? key, - global::G.AnyOf, object>? session, - global::G.AnyOf, object>? source, + global::System.Collections.Generic.IList? run, + global::System.Collections.Generic.IList? key, + global::System.Collections.Generic.IList? session, + global::System.Collections.Generic.IList? source, int? limit, int? offset, - global::G.AnyOf, object>? user, - global::G.AnyOf? hasComment, - global::G.AnyOf? hasScore, - global::G.AnyOf? level); + global::System.Collections.Generic.IList? user, + bool? hasComment, + bool? hasScore, + global::G.FeedbackLevel? level); partial void ProcessReadSharedFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -59,21 +59,23 @@ partial void ProcessReadSharedFeedbacksResponseContent( /// /// /// - /// + /// + /// Enum for feedback levels. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? run = default, - global::G.AnyOf, object>? key = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? source = default, + global::System.Collections.Generic.IList? run = default, + global::System.Collections.Generic.IList? key = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? source = default, int? limit = 100, int? offset = 0, - global::G.AnyOf, object>? user = default, - global::G.AnyOf? hasComment = default, - global::G.AnyOf? hasScore = default, - global::G.AnyOf? level = default, + global::System.Collections.Generic.IList? user = default, + bool? hasComment = default, + bool? hasScore = default, + global::G.FeedbackLevel? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -81,13 +83,13 @@ partial void ProcessReadSharedFeedbacksResponseContent( PrepareReadSharedFeedbacksArguments( httpClient: _httpClient, shareToken: ref shareToken, - run: ref run, - key: ref key, - session: ref session, - source: ref source, + run: run, + key: key, + session: session, + source: source, limit: ref limit, offset: ref offset, - user: ref user, + user: user, hasComment: ref hasComment, hasScore: ref hasScore, level: ref level); @@ -96,16 +98,15 @@ partial void ProcessReadSharedFeedbacksResponseContent( path: $"/api/v1/public/{shareToken}/feedbacks", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("run", run?.ToString() ?? string.Empty) - .AddOptionalParameter("key", key?.ToString() ?? string.Empty) - .AddOptionalParameter("session", session?.ToString() ?? string.Empty) - .AddOptionalParameter("source", source?.ToString() ?? string.Empty) + .AddOptionalParameter("run", run, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("key", key, delimiter: ",", explode: true) + .AddOptionalParameter("session", session, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("user", user?.ToString() ?? string.Empty) - .AddOptionalParameter("has_comment", hasComment?.ToString() ?? string.Empty) - .AddOptionalParameter("has_score", hasScore?.ToString() ?? string.Empty) - .AddOptionalParameter("level", level?.ToString() ?? string.Empty) + .AddOptionalParameter("user", user, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("has_comment", hasComment?.ToString()) + .AddOptionalParameter("has_score", hasScore?.ToString()) + .AddOptionalParameter("level", level?.ToValueString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs index d7fb0a4d8d..e673116a8e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.StatsSharedDatasetRuns.g.verified.cs @@ -114,7 +114,9 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -126,27 +128,29 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.CreateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.CreateRepo.g.verified.cs index 4c9a34e38a..22bc498fb3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.CreateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.CreateRepo.g.verified.cs @@ -130,9 +130,9 @@ partial void ProcessCreateRepoResponseContent( public async global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ForkRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ForkRepo.g.verified.cs index 6760e5f4b4..fca309f2a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ForkRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ForkRepo.g.verified.cs @@ -145,10 +145,10 @@ partial void ProcessForkRepoResponseContent( string owner, string repo, string repoHandle, - global::G.AnyOf? readme = default, - global::G.AnyOf? description = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, + string? readme = default, + string? description = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ForkRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepoTags.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepoTags.g.verified.cs index 846ad1f2e4..25412cf9fd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepoTags.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepoTags.g.verified.cs @@ -10,33 +10,33 @@ partial void PrepareListRepoTagsArguments( global::System.Net.Http.HttpClient httpClient, ref int? limit, ref int? offset, - ref global::G.AnyOf? tenantHandle, - ref global::G.AnyOf? tenantId, - ref global::G.AnyOf? query, - ref global::G.AnyOf? hasCommits, - ref global::G.AnyOf, object>? tags, - ref global::G.AnyOf? isArchived, - ref global::G.AnyOf? isPublic, - ref global::G.AnyOf? upstreamRepoOwner, - ref global::G.AnyOf? upstreamRepoHandle, - ref global::G.AnyOf? matchPrefix, - ref global::G.AnyOf, object>? tagValueId); + ref string? tenantHandle, + ref global::System.Guid? tenantId, + ref string? query, + ref bool? hasCommits, + global::System.Collections.Generic.IList? tags, + ref global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived, + ref global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic, + ref string? upstreamRepoOwner, + ref string? upstreamRepoHandle, + ref bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId); partial void PrepareListRepoTagsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int? limit, int? offset, - global::G.AnyOf? tenantHandle, - global::G.AnyOf? tenantId, - global::G.AnyOf? query, - global::G.AnyOf? hasCommits, - global::G.AnyOf, object>? tags, - global::G.AnyOf? isArchived, - global::G.AnyOf? isPublic, - global::G.AnyOf? upstreamRepoOwner, - global::G.AnyOf? upstreamRepoHandle, - global::G.AnyOf? matchPrefix, - global::G.AnyOf, object>? tagValueId); + string? tenantHandle, + global::System.Guid? tenantId, + string? query, + bool? hasCommits, + global::System.Collections.Generic.IList? tags, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic, + string? upstreamRepoOwner, + string? upstreamRepoHandle, + bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId); partial void ProcessListRepoTagsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -74,17 +74,17 @@ partial void ProcessListRepoTagsResponseContent( public async global::System.Threading.Tasks.Task ListRepoTagsAsync( int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? isArchived = default, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -97,13 +97,13 @@ partial void ProcessListRepoTagsResponseContent( tenantId: ref tenantId, query: ref query, hasCommits: ref hasCommits, - tags: ref tags, + tags: tags, isArchived: ref isArchived, isPublic: ref isPublic, upstreamRepoOwner: ref upstreamRepoOwner, upstreamRepoHandle: ref upstreamRepoHandle, matchPrefix: ref matchPrefix, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/repos/tags", @@ -111,17 +111,17 @@ partial void ProcessListRepoTagsResponseContent( __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("tenant_handle", tenantHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("tenant_id", tenantId?.ToString() ?? string.Empty) - .AddOptionalParameter("query", query?.ToString() ?? string.Empty) - .AddOptionalParameter("has_commits", hasCommits?.ToString() ?? string.Empty) - .AddOptionalParameter("tags", tags?.ToString() ?? string.Empty) - .AddOptionalParameter("is_archived", isArchived?.ToString() ?? string.Empty) - .AddOptionalParameter("is_public", isPublic?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("match_prefix", matchPrefix?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tenant_handle", tenantHandle) + .AddOptionalParameter("tenant_id", tenantId?.ToString()) + .AddOptionalParameter("query", query) + .AddOptionalParameter("has_commits", hasCommits?.ToString()) + .AddOptionalParameter("tags", tags, delimiter: ",", explode: true) + .AddOptionalParameter("is_archived", isArchived?.ToValueString()) + .AddOptionalParameter("is_public", isPublic?.ToValueString()) + .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner) + .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle) + .AddOptionalParameter("match_prefix", matchPrefix?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepos.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepos.g.verified.cs index 445ceb3696..81ef5047b3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepos.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.ListRepos.g.verified.cs @@ -11,38 +11,38 @@ partial void PrepareListReposArguments( ref bool? withLatestManifest, ref int? limit, ref int? offset, - ref global::G.AnyOf? tenantHandle, - ref global::G.AnyOf? tenantId, - ref global::G.AnyOf? query, - ref global::G.AnyOf? hasCommits, - ref global::G.AnyOf, object>? tags, - ref global::G.AnyOf? isArchived, - ref global::G.AnyOf? isPublic, - ref global::G.AnyOf? upstreamRepoOwner, - ref global::G.AnyOf? upstreamRepoHandle, - ref global::G.AnyOf? matchPrefix, - ref global::G.AnyOf, object>? tagValueId, - ref global::G.AnyOf? sortField, - ref global::G.AnyOf? sortDirection); + ref string? tenantHandle, + ref global::System.Guid? tenantId, + ref string? query, + ref bool? hasCommits, + global::System.Collections.Generic.IList? tags, + ref global::G.ListReposApiV1ReposGetIsArchived? isArchived, + ref global::G.ListReposApiV1ReposGetIsPublic? isPublic, + ref string? upstreamRepoOwner, + ref string? upstreamRepoHandle, + ref bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId, + ref string? sortField, + ref global::G.AnyOf? sortDirection); partial void PrepareListReposRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, bool? withLatestManifest, int? limit, int? offset, - global::G.AnyOf? tenantHandle, - global::G.AnyOf? tenantId, - global::G.AnyOf? query, - global::G.AnyOf? hasCommits, - global::G.AnyOf, object>? tags, - global::G.AnyOf? isArchived, - global::G.AnyOf? isPublic, - global::G.AnyOf? upstreamRepoOwner, - global::G.AnyOf? upstreamRepoHandle, - global::G.AnyOf? matchPrefix, - global::G.AnyOf, object>? tagValueId, - global::G.AnyOf? sortField, - global::G.AnyOf? sortDirection); + string? tenantHandle, + global::System.Guid? tenantId, + string? query, + bool? hasCommits, + global::System.Collections.Generic.IList? tags, + global::G.ListReposApiV1ReposGetIsArchived? isArchived, + global::G.ListReposApiV1ReposGetIsPublic? isPublic, + string? upstreamRepoOwner, + string? upstreamRepoHandle, + bool? matchPrefix, + global::System.Collections.Generic.IList? tagValueId, + string? sortField, + global::G.AnyOf? sortDirection); partial void ProcessListReposResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -86,19 +86,19 @@ partial void ProcessListReposResponseContent( bool? withLatestManifest = false, int? limit = 20, int? offset = 0, - global::G.AnyOf? tenantHandle = default, - global::G.AnyOf? tenantId = default, - global::G.AnyOf? query = default, - global::G.AnyOf? hasCommits = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isArchived = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? upstreamRepoOwner = default, - global::G.AnyOf? upstreamRepoHandle = default, - global::G.AnyOf? matchPrefix = default, - global::G.AnyOf, object>? tagValueId = default, - global::G.AnyOf? sortField = default, - global::G.AnyOf? sortDirection = default, + string? tenantHandle = default, + global::System.Guid? tenantId = default, + string? query = default, + bool? hasCommits = default, + global::System.Collections.Generic.IList? tags = default, + global::G.ListReposApiV1ReposGetIsArchived? isArchived = default, + global::G.ListReposApiV1ReposGetIsPublic? isPublic = default, + string? upstreamRepoOwner = default, + string? upstreamRepoHandle = default, + bool? matchPrefix = false, + global::System.Collections.Generic.IList? tagValueId = default, + string? sortField = default, + global::G.AnyOf? sortDirection = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -112,13 +112,13 @@ partial void ProcessListReposResponseContent( tenantId: ref tenantId, query: ref query, hasCommits: ref hasCommits, - tags: ref tags, + tags: tags, isArchived: ref isArchived, isPublic: ref isPublic, upstreamRepoOwner: ref upstreamRepoOwner, upstreamRepoHandle: ref upstreamRepoHandle, matchPrefix: ref matchPrefix, - tagValueId: ref tagValueId, + tagValueId: tagValueId, sortField: ref sortField, sortDirection: ref sortDirection); @@ -129,18 +129,18 @@ partial void ProcessListReposResponseContent( .AddOptionalParameter("with_latest_manifest", withLatestManifest?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("tenant_handle", tenantHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("tenant_id", tenantId?.ToString() ?? string.Empty) - .AddOptionalParameter("query", query?.ToString() ?? string.Empty) - .AddOptionalParameter("has_commits", hasCommits?.ToString() ?? string.Empty) - .AddOptionalParameter("tags", tags?.ToString() ?? string.Empty) - .AddOptionalParameter("is_archived", isArchived?.ToString() ?? string.Empty) - .AddOptionalParameter("is_public", isPublic?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner?.ToString() ?? string.Empty) - .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle?.ToString() ?? string.Empty) - .AddOptionalParameter("match_prefix", matchPrefix?.ToString() ?? string.Empty) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_field", sortField?.ToString() ?? string.Empty) + .AddOptionalParameter("tenant_handle", tenantHandle) + .AddOptionalParameter("tenant_id", tenantId?.ToString()) + .AddOptionalParameter("query", query) + .AddOptionalParameter("has_commits", hasCommits?.ToString()) + .AddOptionalParameter("tags", tags, delimiter: ",", explode: true) + .AddOptionalParameter("is_archived", isArchived?.ToValueString()) + .AddOptionalParameter("is_public", isPublic?.ToValueString()) + .AddOptionalParameter("upstream_repo_owner", upstreamRepoOwner) + .AddOptionalParameter("upstream_repo_handle", upstreamRepoHandle) + .AddOptionalParameter("match_prefix", matchPrefix?.ToString()) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("sort_field", sortField) .AddOptionalParameter("sort_direction", sortDirection?.ToString() ?? string.Empty) ; var __path = __pathBuilder.ToString(); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.OptimizePrompt.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.OptimizePrompt.g.verified.cs index 113c8da000..b6500db135 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.OptimizePrompt.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.OptimizePrompt.g.verified.cs @@ -130,7 +130,7 @@ partial void ProcessOptimizePromptResponseContent( string prompt, object metaprompt, global::System.Collections.Generic.IList examples, - global::G.AnyOf overallFeedback, + string? overallFeedback, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.OptimizePromptRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.UpdateRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.UpdateRepo.g.verified.cs index 465fc13938..71419267af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.UpdateRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ReposClient.UpdateRepo.g.verified.cs @@ -144,11 +144,11 @@ partial void ProcessUpdateRepoResponseContent( public async global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::G.AnyOf? description = default, - global::G.AnyOf? readme = default, - global::G.AnyOf, object>? tags = default, - global::G.AnyOf? isPublic = default, - global::G.AnyOf? isArchived = default, + string? description = default, + string? readme = default, + global::System.Collections.Generic.IList? tags = default, + bool? isPublic = default, + bool? isArchived = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateRepoRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRule.g.verified.cs index 5175f042c9..0ee008ed48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRule.g.verified.cs @@ -152,23 +152,23 @@ partial void ProcessCreateRuleResponseContent( public async global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.RunRulesCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRun.g.verified.cs index 097d968749..904018d9dc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.CreateRun.g.verified.cs @@ -145,24 +145,24 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::G.OneOf? inputs = default, - global::G.OneOf? startTime = default, - global::G.OneOf? endTime = default, - global::G.OneOf? extra = default, - global::G.OneOf? error = default, - global::G.OneOf? serialized = default, - global::G.OneOf? outputs = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? id = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, - global::G.OneOf? referenceExampleId = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, + object? inputs = default, + global::G.OneOf? startTime = default, + global::G.OneOf? endTime = default, + object? extra = default, + string? error = default, + object? serialized = default, + object? outputs = default, + global::System.Guid? parentRunId = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? id = default, + global::System.Guid? sessionId = default, + string? sessionName = default, + global::System.Guid? referenceExampleId = default, + object? inputAttachments = default, + object? outputAttachments = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateRunRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.GroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.GroupRuns.g.verified.cs index df43749226..4ffc7b4c7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.GroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.GroupRuns.g.verified.cs @@ -8,12 +8,12 @@ public partial class RunClient { partial void PrepareGroupRunsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? accept, + ref string? accept, global::G.RunGroupRequest request); partial void PrepareGroupRunsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? accept, + string? accept, global::G.RunGroupRequest request); partial void ProcessGroupRunsResponse( global::System.Net.Http.HttpClient httpClient, @@ -34,7 +34,7 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::G.RunGroupRequest request, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { request = request ?? throw new global::System.ArgumentNullException(nameof(request)); @@ -148,11 +148,11 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::G.AnyOf? accept = default, + string? accept = default, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRuleLogs.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRuleLogs.g.verified.cs index 10e6f996bf..7eaf2b9931 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRuleLogs.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRuleLogs.g.verified.cs @@ -11,16 +11,16 @@ partial void PrepareListRuleLogsArguments( ref global::System.Guid ruleId, ref int? limit, ref int? offset, - ref global::G.AnyOf? startTime, - ref global::G.AnyOf? endTime); + ref global::System.DateTime? startTime, + ref global::System.DateTime? endTime); partial void PrepareListRuleLogsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid ruleId, int? limit, int? offset, - global::G.AnyOf? startTime, - global::G.AnyOf? endTime); + global::System.DateTime? startTime, + global::System.DateTime? endTime); partial void ProcessListRuleLogsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -49,8 +49,8 @@ partial void ProcessListRuleLogsResponseContent( global::System.Guid ruleId, int? limit = 720, int? offset = 0, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -69,8 +69,8 @@ partial void ProcessListRuleLogsResponseContent( __pathBuilder .AddOptionalParameter("limit", limit?.ToString()) .AddOptionalParameter("offset", offset?.ToString()) - .AddOptionalParameter("start_time", startTime?.ToString() ?? string.Empty) - .AddOptionalParameter("end_time", endTime?.ToString() ?? string.Empty) + .AddOptionalParameter("start_time", startTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) + .AddOptionalParameter("end_time", endTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRules.g.verified.cs index 447a7b054b..089e7dea6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ListRules.g.verified.cs @@ -8,17 +8,17 @@ public partial class RunClient { partial void PrepareListRulesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? datasetId, - ref global::G.AnyOf? sessionId, - ref global::G.AnyOf? type, - ref global::G.AnyOf? nameContains); + ref global::System.Guid? datasetId, + ref global::System.Guid? sessionId, + ref global::G.ListRulesApiV1RunsRulesGetType? type, + ref string? nameContains); partial void PrepareListRulesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? datasetId, - global::G.AnyOf? sessionId, - global::G.AnyOf? type, - global::G.AnyOf? nameContains); + global::System.Guid? datasetId, + global::System.Guid? sessionId, + global::G.ListRulesApiV1RunsRulesGetType? type, + string? nameContains); partial void ProcessListRulesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,10 +39,10 @@ partial void ProcessListRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListRulesAsync( - global::G.AnyOf? datasetId = default, - global::G.AnyOf? sessionId = default, - global::G.AnyOf? type = default, - global::G.AnyOf? nameContains = default, + global::System.Guid? datasetId = default, + global::System.Guid? sessionId = default, + global::G.ListRulesApiV1RunsRulesGetType? type = default, + string? nameContains = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -58,10 +58,10 @@ partial void ProcessListRulesResponseContent( path: "/api/v1/runs/rules", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("dataset_id", datasetId?.ToString() ?? string.Empty) - .AddOptionalParameter("session_id", sessionId?.ToString() ?? string.Empty) - .AddOptionalParameter("type", type?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) + .AddOptionalParameter("dataset_id", datasetId?.ToString()) + .AddOptionalParameter("session_id", sessionId?.ToString()) + .AddOptionalParameter("type", type?.ToValueString()) + .AddOptionalParameter("name_contains", nameContains) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.QueryRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.QueryRuns.g.verified.cs index 6b08369dfe..ec245aacb0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.QueryRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.QueryRuns.g.verified.cs @@ -121,7 +121,9 @@ partial void ProcessQueryRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -133,7 +135,9 @@ partial void ProcessQueryRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// /// /// Default Value: 100 @@ -147,23 +151,23 @@ partial void ProcessQueryRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task QueryRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, - global::G.AnyOf? cursor = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, + string? cursor = default, int? limit = 100, global::System.Collections.Generic.IList? select = default, global::G.RunDateOrder? order = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ReadRunShareState.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ReadRunShareState.g.verified.cs index 03acee9d7c..13f645b222 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ReadRunShareState.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.ReadRunShareState.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessReadRunShareStateResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ReadRunShareStateAsync( + public async global::System.Threading.Tasks.Task ReadRunShareStateAsync( global::System.Guid runId, global::System.Threading.CancellationToken cancellationToken = default) { @@ -104,7 +104,7 @@ partial void ProcessReadRunShareStateResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize?>(__content, JsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize(__content, JsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsGroupRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsGroupRuns.g.verified.cs index 62e286e849..3c48c1fb95 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsGroupRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsGroupRuns.g.verified.cs @@ -136,9 +136,9 @@ partial void ProcessStatsGroupRunsResponseContent( public async global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, + string? filter = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, int? offset = 0, int? limit = 10, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsRuns.g.verified.cs index 49758c0241..241056ed19 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.StatsRuns.g.verified.cs @@ -123,7 +123,9 @@ partial void ProcessStatsRunsResponseContent( /// /// /// - /// + /// + /// Enum for run types. + /// /// /// /// @@ -135,26 +137,28 @@ partial void ProcessStatsRunsResponseContent( /// /// /// - /// + /// + /// Enum for run data source types. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsRunsAsync( - global::G.AnyOf, object>? id = default, - global::G.AnyOf? trace = default, - global::G.AnyOf? parentRun = default, - global::G.AnyOf? runType = default, - global::G.AnyOf, object>? session = default, - global::G.AnyOf, object>? referenceExample = default, - global::G.AnyOf? executionOrder = default, - global::G.AnyOf? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? error = default, - global::G.AnyOf? query = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? isRoot = default, - global::G.AnyOf? dataSourceType = default, + global::System.Collections.Generic.IList? id = default, + global::System.Guid? trace = default, + global::System.Guid? parentRun = default, + global::G.RunTypeEnum? runType = default, + global::System.Collections.Generic.IList? session = default, + global::System.Collections.Generic.IList? referenceExample = default, + int? executionOrder = default, + global::System.DateTime? startTime = default, + global::System.DateTime? endTime = default, + bool? error = default, + string? query = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + bool? isRoot = default, + global::G.RunsFilterDataSourceTypeEnum? dataSourceType = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.TriggerRules.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.TriggerRules.g.verified.cs index a5491c9617..4deac020eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.TriggerRules.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.TriggerRules.g.verified.cs @@ -125,8 +125,8 @@ partial void ProcessTriggerRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task TriggerRulesAsync( - global::G.AnyOf, object>? ruleIds = default, - global::G.AnyOf? datasetId = default, + global::System.Collections.Generic.IList? ruleIds = default, + global::System.Guid? datasetId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TriggerRulesRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRule.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRule.g.verified.cs index 80de796fef..474a712421 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRule.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRule.g.verified.cs @@ -160,23 +160,23 @@ partial void ProcessUpdateRuleResponseContent( global::System.Guid ruleId, string displayName, double samplingRate, - global::G.AnyOf? sessionId = default, + global::System.Guid? sessionId = default, bool? isEnabled = true, - global::G.AnyOf? datasetId = default, - global::G.AnyOf? filter = default, - global::G.AnyOf? traceFilter = default, - global::G.AnyOf? treeFilter = default, - global::G.AnyOf? backfillFrom = default, + global::System.Guid? datasetId = default, + string? filter = default, + string? traceFilter = default, + string? treeFilter = default, + global::System.DateTime? backfillFrom = default, bool? useCorrectionsDataset = false, - global::G.AnyOf? numFewShotExamples = default, + int? numFewShotExamples = default, bool? extendOnly = false, - global::G.AnyOf? addToAnnotationQueueId = default, - global::G.AnyOf? addToDatasetId = default, + global::System.Guid? addToAnnotationQueueId = default, + global::System.Guid? addToDatasetId = default, bool? addToDatasetPreferCorrection = false, - global::G.AnyOf, object>? evaluators = default, - global::G.AnyOf, object>? codeEvaluators = default, - global::G.AnyOf, object>? alerts = default, - global::G.AnyOf, object>? webhooks = default, + global::System.Collections.Generic.IList? evaluators = default, + global::System.Collections.Generic.IList? codeEvaluators = default, + global::System.Collections.Generic.IList? alerts = default, + global::System.Collections.Generic.IList? webhooks = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.RunRulesCreateSchema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRun.g.verified.cs index d0e90597e9..d74d8fb64d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.UpdateRun.g.verified.cs @@ -145,20 +145,20 @@ partial void ProcessUpdateRunResponseContent( /// public async global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::G.OneOf? traceId = default, - global::G.OneOf? dottedOrder = default, - global::G.OneOf? parentRunId = default, - global::G.OneOf? endTime = default, - global::G.OneOf? error = default, - global::G.OneOf? inputs = default, - global::G.OneOf? outputs = default, - global::G.OneOf, object>? events = default, - global::G.OneOf, object>? tags = default, - global::G.OneOf? extra = default, - global::G.OneOf? inputAttachments = default, - global::G.OneOf? outputAttachments = default, - global::G.OneOf? sessionId = default, - global::G.OneOf? sessionName = default, + global::System.Guid? traceId = default, + string? dottedOrder = default, + global::System.Guid? parentRunId = default, + global::G.OneOf? endTime = default, + string? error = default, + object? inputs = default, + object? outputs = default, + global::System.Collections.Generic.IList? events = default, + global::System.Collections.Generic.IList? tags = default, + object? extra = default, + object? inputAttachments = default, + object? outputAttachments = default, + global::System.Guid? sessionId = default, + string? sessionName = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpdateRunRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TenantClient.CreateTenant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TenantClient.CreateTenant.g.verified.cs index 27cbe9cd65..e0b0a99b5e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TenantClient.CreateTenant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TenantClient.CreateTenant.g.verified.cs @@ -132,8 +132,8 @@ partial void ProcessCreateTenantResponseContent( public async global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? organizationId = default, - global::G.AnyOf? tenantHandle = default, + global::System.Guid? organizationId = default, + string? tenantHandle = default, bool? isPersonal = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs index 91993d67e5..9c562f5517 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateFilterView.g.verified.cs @@ -137,10 +137,10 @@ partial void ProcessCreateFilterViewResponseContent( public async global::System.Threading.Tasks.Task CreateFilterViewAsync( global::System.Guid sessionId, string displayName, - global::G.AnyOf? filterString = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, - global::G.AnyOf? description = default, + string? filterString = default, + string? traceFilterString = default, + string? treeFilterString = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterViewCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs index 11a4c89bfc..2fccb2fb0d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.CreateTracerSession.g.verified.cs @@ -148,14 +148,14 @@ partial void ProcessCreateTracerSessionResponseContent( public async global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool? upsert = false, global::System.DateTime? startTime = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, + global::System.DateTime? endTime = default, + object? extra = default, string? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? referenceDatasetId = default, - global::G.AnyOf? traceTier = default, - global::G.AnyOf? id = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.Guid? referenceDatasetId = default, + global::G.TraceTier? traceTier = default, + global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs index 372b8b204e..cd067c491c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSession.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReadTracerSessionArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid sessionId, ref bool? includeStats, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadTracerSessionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, bool? includeStats, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadTracerSessionResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -40,7 +40,7 @@ partial void ProcessReadTracerSessionResponseContent( public async global::System.Threading.Tasks.Task ReadTracerSessionAsync( global::System.Guid sessionId, bool? includeStats = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs index ce9af38a0a..547fe565a0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessions.g.verified.cs @@ -8,39 +8,39 @@ public partial class TracerSessionsClient { partial void PrepareReadTracerSessionsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? referenceFree, - ref global::G.AnyOf, object>? referenceDataset, - ref global::G.AnyOf, object>? id, - ref global::G.AnyOf? name, - ref global::G.AnyOf? nameContains, - ref global::G.AnyOf? datasetVersion, + ref bool? referenceFree, + global::System.Collections.Generic.IList? referenceDataset, + global::System.Collections.Generic.IList? id, + ref string? name, + ref string? nameContains, + ref string? datasetVersion, ref global::G.SessionSortableColumns? sortBy, ref bool? sortByDesc, - ref global::G.AnyOf? metadata, - ref global::G.AnyOf? sortByFeedbackKey, + ref string? metadata, + ref string? sortByFeedbackKey, ref int? offset, ref int? limit, - ref global::G.AnyOf, object>? tagValueId, + global::System.Collections.Generic.IList? tagValueId, ref bool? facets, - ref global::G.AnyOf? accept); + ref string? accept); partial void PrepareReadTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? referenceFree, - global::G.AnyOf, object>? referenceDataset, - global::G.AnyOf, object>? id, - global::G.AnyOf? name, - global::G.AnyOf? nameContains, - global::G.AnyOf? datasetVersion, + bool? referenceFree, + global::System.Collections.Generic.IList? referenceDataset, + global::System.Collections.Generic.IList? id, + string? name, + string? nameContains, + string? datasetVersion, global::G.SessionSortableColumns? sortBy, bool? sortByDesc, - global::G.AnyOf? metadata, - global::G.AnyOf? sortByFeedbackKey, + string? metadata, + string? sortByFeedbackKey, int? offset, int? limit, - global::G.AnyOf, object>? tagValueId, + global::System.Collections.Generic.IList? tagValueId, bool? facets, - global::G.AnyOf? accept); + string? accept); partial void ProcessReadTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -80,21 +80,21 @@ partial void ProcessReadTracerSessionsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::G.AnyOf? referenceFree = default, - global::G.AnyOf, object>? referenceDataset = default, - global::G.AnyOf, object>? id = default, - global::G.AnyOf? name = default, - global::G.AnyOf? nameContains = default, - global::G.AnyOf? datasetVersion = default, + bool? referenceFree = default, + global::System.Collections.Generic.IList? referenceDataset = default, + global::System.Collections.Generic.IList? id = default, + string? name = default, + string? nameContains = default, + string? datasetVersion = default, global::G.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, - global::G.AnyOf? metadata = default, - global::G.AnyOf? sortByFeedbackKey = default, + string? metadata = default, + string? sortByFeedbackKey = default, int? offset = 0, int? limit = 100, - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, bool? facets = false, - global::G.AnyOf? accept = default, + string? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -102,8 +102,8 @@ partial void ProcessReadTracerSessionsResponseContent( PrepareReadTracerSessionsArguments( httpClient: _httpClient, referenceFree: ref referenceFree, - referenceDataset: ref referenceDataset, - id: ref id, + referenceDataset: referenceDataset, + id: id, name: ref name, nameContains: ref nameContains, datasetVersion: ref datasetVersion, @@ -113,7 +113,7 @@ partial void ProcessReadTracerSessionsResponseContent( sortByFeedbackKey: ref sortByFeedbackKey, offset: ref offset, limit: ref limit, - tagValueId: ref tagValueId, + tagValueId: tagValueId, facets: ref facets, accept: ref accept); @@ -121,19 +121,19 @@ partial void ProcessReadTracerSessionsResponseContent( path: "/api/v1/sessions", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("reference_free", referenceFree?.ToString() ?? string.Empty) - .AddOptionalParameter("reference_dataset", referenceDataset?.ToString() ?? string.Empty) - .AddOptionalParameter("id", id?.ToString() ?? string.Empty) - .AddOptionalParameter("name", name?.ToString() ?? string.Empty) - .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) - .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) + .AddOptionalParameter("reference_free", referenceFree?.ToString()) + .AddOptionalParameter("reference_dataset", referenceDataset, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("id", id, selector: static x => x.ToString(), delimiter: ",", explode: true) + .AddOptionalParameter("name", name) + .AddOptionalParameter("name_contains", nameContains) + .AddOptionalParameter("dataset_version", datasetVersion) .AddOptionalParameter("sort_by", sortBy?.ToValueString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) - .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata", metadata) + .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey) .AddOptionalParameter("offset", offset?.ToString()) .AddOptionalParameter("limit", limit?.ToString()) - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) .AddOptionalParameter("facets", facets?.ToString()) ; var __path = __pathBuilder.ToString(); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs index e2c4845148..a74305b74f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.ReadTracerSessionsRunsMetadata.g.verified.cs @@ -9,16 +9,16 @@ public partial class TracerSessionsClient partial void PrepareReadTracerSessionsRunsMetadataArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid sessionId, - ref global::G.AnyOf, object>? metadataKeys, - ref global::G.AnyOf? startTime, + global::System.Collections.Generic.IList? metadataKeys, + ref global::System.DateTime? startTime, ref int? k, ref bool? rootRunsOnly); partial void PrepareReadTracerSessionsRunsMetadataRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys, - global::G.AnyOf? startTime, + global::System.Collections.Generic.IList? metadataKeys, + global::System.DateTime? startTime, int? k, bool? rootRunsOnly); partial void ProcessReadTracerSessionsRunsMetadataResponse( @@ -47,8 +47,8 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( /// public async global::System.Threading.Tasks.Task>> ReadTracerSessionsRunsMetadataAsync( global::System.Guid sessionId, - global::G.AnyOf, object>? metadataKeys = default, - global::G.AnyOf? startTime = default, + global::System.Collections.Generic.IList? metadataKeys = default, + global::System.DateTime? startTime = default, int? k = 10, bool? rootRunsOnly = false, global::System.Threading.CancellationToken cancellationToken = default) @@ -58,7 +58,7 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( PrepareReadTracerSessionsRunsMetadataArguments( httpClient: _httpClient, sessionId: ref sessionId, - metadataKeys: ref metadataKeys, + metadataKeys: metadataKeys, startTime: ref startTime, k: ref k, rootRunsOnly: ref rootRunsOnly); @@ -67,8 +67,8 @@ partial void ProcessReadTracerSessionsRunsMetadataResponseContent( path: $"/api/v1/sessions/{sessionId}/metadata", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("metadata_keys", metadataKeys?.ToString() ?? string.Empty) - .AddOptionalParameter("start_time", startTime?.ToString() ?? string.Empty) + .AddOptionalParameter("metadata_keys", metadataKeys, delimiter: ",", explode: true) + .AddOptionalParameter("start_time", startTime?.ToString("yyyy-MM-ddTHH:mm:ssZ")) .AddOptionalParameter("k", k?.ToString()) .AddOptionalParameter("root_runs_only", rootRunsOnly?.ToString()) ; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs index 01ab9f2baf..846de14b84 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs @@ -144,11 +144,11 @@ partial void ProcessUpdateFilterViewResponseContent( public async global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::G.AnyOf? filterString = default, - global::G.AnyOf? displayName = default, - global::G.AnyOf? description = default, - global::G.AnyOf? traceFilterString = default, - global::G.AnyOf? treeFilterString = default, + string? filterString = default, + string? displayName = default, + string? description = default, + string? traceFilterString = default, + string? treeFilterString = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterViewUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs index c7a1f8eb41..219cf1983c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateTracerSession.g.verified.cs @@ -137,12 +137,12 @@ partial void ProcessUpdateTracerSessionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::G.AnyOf? name = default, - global::G.AnyOf? description = default, - global::G.AnyOf? defaultDatasetId = default, - global::G.AnyOf? endTime = default, - global::G.AnyOf? extra = default, - global::G.AnyOf? traceTier = default, + string? name = default, + string? description = default, + global::System.Guid? defaultDatasetId = default, + global::System.DateTime? endTime = default, + object? extra = default, + global::G.TraceTier? traceTier = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs index 4ec6144fc4..38bba89384 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings.g.verified.cs @@ -126,8 +126,8 @@ partial void ProcessUpsertTtlSettingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertTtlSettingsAsync( - global::G.TraceTier3 defaultTraceTier, - global::G.AnyOf? tenantId = default, + global::G.TraceTier defaultTraceTier, + global::System.Guid? tenantId = default, bool? applyToAllProjects = false, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs index 2b544ed33c..a99cbfd3c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.UsageLimitsClient.UpsertUsageLimit.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessUpsertUsageLimitResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpsertUsageLimitAsync( - global::G.UsageLimitType2 limitType, + global::G.UsageLimitType limitType, int limitValue, global::System.Guid? id = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs index 7d226a4cd8..750d4d755b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.AddMemberToCurrentWorkspace.g.verified.cs @@ -127,8 +127,8 @@ partial void ProcessAddMemberToCurrentWorkspaceResponseContent( /// public async global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::G.AnyOf? readOnly = default, - global::G.AnyOf? roleId = default, + bool? readOnly = default, + global::System.Guid? roleId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs index 95219b27bc..34de7e8e89 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagKey.g.verified.cs @@ -124,7 +124,7 @@ partial void ProcessCreateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagKeyCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs index 306e0e84c3..2e97f15858 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateTagValue.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessCreateTagValueResponseContent( public async global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::G.AnyOf? description = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagValueCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs index 34852830f6..a526263ada 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.CreateWorkspace.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCreateWorkspaceResponseContent( public async global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid? id = default, - global::G.AnyOf? tenantHandle = default, + string? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.WorkspaceCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs index a44493b32d..1b4e7d4023 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.GetCurrentWorkspaceStats.g.verified.cs @@ -8,11 +8,11 @@ public partial class WorkspacesClient { partial void PrepareGetCurrentWorkspaceStatsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void PrepareGetCurrentWorkspaceStatsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf, object>? tagValueId); + global::System.Collections.Generic.IList? tagValueId); partial void ProcessGetCurrentWorkspaceStatsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,20 +29,20 @@ partial void ProcessGetCurrentWorkspaceStatsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::G.AnyOf, object>? tagValueId = default, + global::System.Collections.Generic.IList? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( client: _httpClient); PrepareGetCurrentWorkspaceStatsArguments( httpClient: _httpClient, - tagValueId: ref tagValueId); + tagValueId: tagValueId); var __pathBuilder = new PathBuilder( path: "/api/v1/workspaces/current/stats", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId, selector: static x => x.ToString(), delimiter: ",", explode: true) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs index 75748495a2..cff48a6ac1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.ListTaggings.g.verified.cs @@ -8,11 +8,11 @@ public partial class WorkspacesClient { partial void PrepareListTaggingsArguments( global::System.Net.Http.HttpClient httpClient, - ref global::G.AnyOf? tagValueId); + ref global::System.Guid? tagValueId); partial void PrepareListTaggingsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::G.AnyOf? tagValueId); + global::System.Guid? tagValueId); partial void ProcessListTaggingsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessListTaggingsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListTaggingsAsync( - global::G.AnyOf? tagValueId = default, + global::System.Guid? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -42,7 +42,7 @@ partial void ProcessListTaggingsResponseContent( path: "/api/v1/workspaces/current/taggings", baseUri: _httpClient.BaseAddress); __pathBuilder - .AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty) + .AddOptionalParameter("tag_value_id", tagValueId?.ToString()) ; var __path = __pathBuilder.ToString(); using var httpRequest = new global::System.Net.Http.HttpRequestMessage( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs index c67b033e76..1fc41b2dd7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.PatchCurrentWorkspaceMember.g.verified.cs @@ -132,7 +132,7 @@ partial void ProcessPatchCurrentWorkspaceMemberResponseContent( public async global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::G.AnyOf? readOnly = default, + bool? readOnly = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.IdentityPatch diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs index 7f617393f1..b3b7edf67c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagKey.g.verified.cs @@ -131,8 +131,8 @@ partial void ProcessUpdateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::G.AnyOf? key = default, - global::G.AnyOf? description = default, + string? key = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagKeyUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs index 0b6fa338d7..54af223271 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.WorkspacesClient.UpdateTagValue.g.verified.cs @@ -139,8 +139,8 @@ partial void ProcessUpdateTagValueResponseContent( public async global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::G.AnyOf? value = default, - global::G.AnyOf? description = default, + string? value = default, + string? description = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TagValueUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf6.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf6.g.verified.cs deleted file mode 100644 index 9a519af031..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf6.g.verified.cs +++ /dev/null @@ -1,187 +0,0 @@ -//HintName: JsonConverters.AnyOf6.g.cs -#nullable enable - -namespace G.JsonConverters -{ - /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> - { - /// - public override global::G.AnyOf Read( - ref global::System.Text.Json.Utf8JsonReader reader, - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - var - readerCopy = reader; - T1? value1 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - value1 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T2? value2 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - value2 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T3? value3 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - value3 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T4? value4 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T4), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T4).Name}"); - value4 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T5? value5 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T5), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T5).Name}"); - value5 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T6? value6 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T6), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T6).Name}"); - value6 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - var result = new global::G.AnyOf( - value1, - value2, - value3, - value4, - value5, - value6 - ); - - if (value1 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value2 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value3 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value4 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T4), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T4).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value5 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T5), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T5).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value6 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T6), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T6).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - - return result; - } - - /// - public override void Write( - global::System.Text.Json.Utf8JsonWriter writer, - global::G.AnyOf value, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - if (value.IsValue1) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeInfo); - } - else if (value.IsValue2) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeInfo); - } - else if (value.IsValue3) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeInfo); - } - else if (value.IsValue4) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T4), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T4).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value4, typeInfo); - } - else if (value.IsValue5) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T5), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T5).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value5, typeInfo); - } - else if (value.IsValue6) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T6), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T6).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value6, typeInfo); - } - } - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory6.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory6.g.verified.cs deleted file mode 100644 index a6b1f745cf..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory6.g.verified.cs +++ /dev/null @@ -1,26 +0,0 @@ -//HintName: JsonConverters.AnyOfFactory6.g.cs -#nullable enable - -namespace G.JsonConverters -{ - /// - public sealed class AnyOfJsonConverterFactory6 : global::System.Text.Json.Serialization.JsonConverterFactory - { - /// - public override bool CanConvert(global::System.Type? typeToConvert) - { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,,,,>); - } - - /// - public override global::System.Text.Json.Serialization.JsonConverter CreateConverter( - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - typeToConvert = typeToConvert ?? throw new global::System.ArgumentNullException(nameof(typeToConvert)); - - return (global::System.Text.Json.Serialization.JsonConverter)global::System.Activator.CreateInstance( - typeof(AnyOfJsonConverter<,,,,,>).MakeGenericType(typeToConvert.GenericTypeArguments))!; - } - } -} diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs index 43af8ffd93..7aa5bc2d46 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2.g.cs +//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRepoTagsApiV1ReposTagsGetIsArchivedJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2 Read( + public override global::G.ListRepoTagsApiV1ReposTagsGetIsArchived Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter : glob var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions.ToEnum(stringValue) ?? default; + return global::G.ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter : glob case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2)numValue; + return (global::G.ListRepoTagsApiV1ReposTagsGetIsArchived)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter : glob /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2 value, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullable.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullable.g.verified.cs index b192590cf0..119d4409a5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2Nullable.g.cs +//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRepoTagsApiV1ReposTagsGetIsArchivedNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2? Read( + public override global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverte var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions.ToEnum(stringValue); + return global::G.ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverte case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2)numValue; + return (global::G.ListRepoTagsApiV1ReposTagsGetIsArchived)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverte /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2? value, + global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsArchivedExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs index 40b0da7a2d..4850b7cac9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2.g.cs +//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRepoTagsApiV1ReposTagsGetIsPublicJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2 Read( + public override global::G.ListRepoTagsApiV1ReposTagsGetIsPublic Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter : global var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions.ToEnum(stringValue) ?? default; + return global::G.ListRepoTagsApiV1ReposTagsGetIsPublicExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter : global case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2)numValue; + return (global::G.ListRepoTagsApiV1ReposTagsGetIsPublic)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter : global /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2 value, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsPublicExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullable.g.verified.cs similarity index 80% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullable.g.verified.cs index d222e3e267..2b78ea723b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2Nullable.g.cs +//HintName: JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRepoTagsApiV1ReposTagsGetIsPublicNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2? Read( + public override global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions.ToEnum(stringValue); + return global::G.ListRepoTagsApiV1ReposTagsGetIsPublicExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2)numValue; + return (global::G.ListRepoTagsApiV1ReposTagsGetIsPublic)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2? value, + global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.ListRepoTagsApiV1ReposTagsGetIsPublicExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived.g.verified.cs index eeb7e31a7c..18a3e6a44e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListReposApiV1ReposGetIsArchived2.g.cs +//HintName: JsonConverters.ListReposApiV1ReposGetIsArchived.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListReposApiV1ReposGetIsArchived2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListReposApiV1ReposGetIsArchivedJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListReposApiV1ReposGetIsArchived2 Read( + public override global::G.ListReposApiV1ReposGetIsArchived Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListReposApiV1ReposGetIsArchived2JsonConverter : global::Sys var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListReposApiV1ReposGetIsArchived2Extensions.ToEnum(stringValue) ?? default; + return global::G.ListReposApiV1ReposGetIsArchivedExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class ListReposApiV1ReposGetIsArchived2JsonConverter : global::Sys case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListReposApiV1ReposGetIsArchived2)numValue; + return (global::G.ListReposApiV1ReposGetIsArchived)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class ListReposApiV1ReposGetIsArchived2JsonConverter : global::Sys /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListReposApiV1ReposGetIsArchived2 value, + global::G.ListReposApiV1ReposGetIsArchived value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsArchived2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsArchivedExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchivedNullable.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchivedNullable.g.verified.cs index 2895f5ebb4..8cebb7fbab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchived2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsArchivedNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListReposApiV1ReposGetIsArchived2Nullable.g.cs +//HintName: JsonConverters.ListReposApiV1ReposGetIsArchivedNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListReposApiV1ReposGetIsArchived2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListReposApiV1ReposGetIsArchivedNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListReposApiV1ReposGetIsArchived2? Read( + public override global::G.ListReposApiV1ReposGetIsArchived? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListReposApiV1ReposGetIsArchived2NullableJsonConverter : glo var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListReposApiV1ReposGetIsArchived2Extensions.ToEnum(stringValue); + return global::G.ListReposApiV1ReposGetIsArchivedExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class ListReposApiV1ReposGetIsArchived2NullableJsonConverter : glo case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListReposApiV1ReposGetIsArchived2)numValue; + return (global::G.ListReposApiV1ReposGetIsArchived)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class ListReposApiV1ReposGetIsArchived2NullableJsonConverter : glo /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListReposApiV1ReposGetIsArchived2? value, + global::G.ListReposApiV1ReposGetIsArchived? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsArchived2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsArchivedExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic.g.verified.cs index ca2f7d6920..a12b555956 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListReposApiV1ReposGetIsPublic2.g.cs +//HintName: JsonConverters.ListReposApiV1ReposGetIsPublic.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListReposApiV1ReposGetIsPublic2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListReposApiV1ReposGetIsPublicJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListReposApiV1ReposGetIsPublic2 Read( + public override global::G.ListReposApiV1ReposGetIsPublic Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListReposApiV1ReposGetIsPublic2JsonConverter : global::Syste var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListReposApiV1ReposGetIsPublic2Extensions.ToEnum(stringValue) ?? default; + return global::G.ListReposApiV1ReposGetIsPublicExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class ListReposApiV1ReposGetIsPublic2JsonConverter : global::Syste case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListReposApiV1ReposGetIsPublic2)numValue; + return (global::G.ListReposApiV1ReposGetIsPublic)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class ListReposApiV1ReposGetIsPublic2JsonConverter : global::Syste /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListReposApiV1ReposGetIsPublic2 value, + global::G.ListReposApiV1ReposGetIsPublic value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsPublic2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsPublicExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublicNullable.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublicNullable.g.verified.cs index 96c13bc6b9..5bc6d04d3a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublic2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListReposApiV1ReposGetIsPublicNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListReposApiV1ReposGetIsPublic2Nullable.g.cs +//HintName: JsonConverters.ListReposApiV1ReposGetIsPublicNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListReposApiV1ReposGetIsPublic2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListReposApiV1ReposGetIsPublicNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListReposApiV1ReposGetIsPublic2? Read( + public override global::G.ListReposApiV1ReposGetIsPublic? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListReposApiV1ReposGetIsPublic2NullableJsonConverter : globa var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListReposApiV1ReposGetIsPublic2Extensions.ToEnum(stringValue); + return global::G.ListReposApiV1ReposGetIsPublicExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class ListReposApiV1ReposGetIsPublic2NullableJsonConverter : globa case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListReposApiV1ReposGetIsPublic2)numValue; + return (global::G.ListReposApiV1ReposGetIsPublic)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class ListReposApiV1ReposGetIsPublic2NullableJsonConverter : globa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListReposApiV1ReposGetIsPublic2? value, + global::G.ListReposApiV1ReposGetIsPublic? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsPublic2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.ListReposApiV1ReposGetIsPublicExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType.g.verified.cs similarity index 78% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType.g.verified.cs index 113e88b246..b05b89df96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRulesApiV1RunsRulesGetType2.g.cs +//HintName: JsonConverters.ListRulesApiV1RunsRulesGetType.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRulesApiV1RunsRulesGetType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRulesApiV1RunsRulesGetTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRulesApiV1RunsRulesGetType2 Read( + public override global::G.ListRulesApiV1RunsRulesGetType Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRulesApiV1RunsRulesGetType2JsonConverter : global::Syste var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRulesApiV1RunsRulesGetType2Extensions.ToEnum(stringValue) ?? default; + return global::G.ListRulesApiV1RunsRulesGetTypeExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class ListRulesApiV1RunsRulesGetType2JsonConverter : global::Syste case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRulesApiV1RunsRulesGetType2)numValue; + return (global::G.ListRulesApiV1RunsRulesGetType)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class ListRulesApiV1RunsRulesGetType2JsonConverter : global::Syste /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRulesApiV1RunsRulesGetType2 value, + global::G.ListRulesApiV1RunsRulesGetType value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.ListRulesApiV1RunsRulesGetType2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.ListRulesApiV1RunsRulesGetTypeExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetTypeNullable.g.verified.cs similarity index 79% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetTypeNullable.g.verified.cs index a58b0c5906..d36f4b343a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetType2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.ListRulesApiV1RunsRulesGetTypeNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.ListRulesApiV1RunsRulesGetType2Nullable.g.cs +//HintName: JsonConverters.ListRulesApiV1RunsRulesGetTypeNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class ListRulesApiV1RunsRulesGetType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ListRulesApiV1RunsRulesGetTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.ListRulesApiV1RunsRulesGetType2? Read( + public override global::G.ListRulesApiV1RunsRulesGetType? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class ListRulesApiV1RunsRulesGetType2NullableJsonConverter : globa var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.ListRulesApiV1RunsRulesGetType2Extensions.ToEnum(stringValue); + return global::G.ListRulesApiV1RunsRulesGetTypeExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class ListRulesApiV1RunsRulesGetType2NullableJsonConverter : globa case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.ListRulesApiV1RunsRulesGetType2)numValue; + return (global::G.ListRulesApiV1RunsRulesGetType)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class ListRulesApiV1RunsRulesGetType2NullableJsonConverter : globa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.ListRulesApiV1RunsRulesGetType2? value, + global::G.ListRulesApiV1RunsRulesGetType? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.ListRulesApiV1RunsRulesGetType2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.ListRulesApiV1RunsRulesGetTypeExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs deleted file mode 100644 index 864e847ed1..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs +++ /dev/null @@ -1,112 +0,0 @@ -//HintName: JsonConverters.OneOf3.g.cs -#nullable enable - -namespace G.JsonConverters -{ - /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> - { - /// - public override global::G.OneOf Read( - ref global::System.Text.Json.Utf8JsonReader reader, - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - var - readerCopy = reader; - T1? value1 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - value1 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T2? value2 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - value2 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - readerCopy = reader; - T3? value3 = default; - try - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - value3 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - - var result = new global::G.OneOf( - value1, - value2, - value3 - ); - - if (value1 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value2 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - else if (value3 != null) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); - } - - return result; - } - - /// - public override void Write( - global::System.Text.Json.Utf8JsonWriter writer, - global::G.OneOf value, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - if (value.IsValue1) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeInfo); - } - else if (value.IsValue2) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeInfo); - } - else if (value.IsValue3) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T3), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T3).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeInfo); - } - } - } -} \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs deleted file mode 100644 index ddc6fc72a9..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs +++ /dev/null @@ -1,26 +0,0 @@ -//HintName: JsonConverters.OneOfFactory3.g.cs -#nullable enable - -namespace G.JsonConverters -{ - /// - public sealed class OneOfJsonConverterFactory3 : global::System.Text.Json.Serialization.JsonConverterFactory - { - /// - public override bool CanConvert(global::System.Type? typeToConvert) - { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,>); - } - - /// - public override global::System.Text.Json.Serialization.JsonConverter CreateConverter( - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - typeToConvert = typeToConvert ?? throw new global::System.ArgumentNullException(nameof(typeToConvert)); - - return (global::System.Text.Json.Serialization.JsonConverter)global::System.Activator.CreateInstance( - typeof(OneOfJsonConverter<,,>).MakeGenericType(typeToConvert.GenericTypeArguments))!; - } - } -} diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier.g.verified.cs similarity index 71% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier.g.verified.cs index ac571092c9..7f7730fe20 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.TraceTier3.g.cs +//HintName: JsonConverters.TraceTier.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class TraceTier3JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class TraceTierJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.TraceTier3 Read( + public override global::G.TraceTier Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class TraceTier3JsonConverter : global::System.Text.Json.Serializa var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.TraceTier3Extensions.ToEnum(stringValue) ?? default; + return global::G.TraceTierExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class TraceTier3JsonConverter : global::System.Text.Json.Serializa case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.TraceTier3)numValue; + return (global::G.TraceTier)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class TraceTier3JsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.TraceTier3 value, + global::G.TraceTier value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.TraceTier3Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.TraceTierExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTierNullable.g.verified.cs similarity index 73% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTierNullable.g.verified.cs index fdcc4f9e09..72bd88feb5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTier3Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.TraceTierNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.TraceTier3Nullable.g.cs +//HintName: JsonConverters.TraceTierNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class TraceTier3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class TraceTierNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.TraceTier3? Read( + public override global::G.TraceTier? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class TraceTier3NullableJsonConverter : global::System.Text.Json.S var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.TraceTier3Extensions.ToEnum(stringValue); + return global::G.TraceTierExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class TraceTier3NullableJsonConverter : global::System.Text.Json.S case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.TraceTier3)numValue; + return (global::G.TraceTier)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class TraceTier3NullableJsonConverter : global::System.Text.Json.S /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.TraceTier3? value, + global::G.TraceTier? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.TraceTier3Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.TraceTierExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType.g.verified.cs similarity index 70% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType.g.verified.cs index ecb119515d..e2c43e91db 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.UsageLimitType2.g.cs +//HintName: JsonConverters.UsageLimitType.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class UsageLimitType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class UsageLimitTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.UsageLimitType2 Read( + public override global::G.UsageLimitType Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class UsageLimitType2JsonConverter : global::System.Text.Json.Seri var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.UsageLimitType2Extensions.ToEnum(stringValue) ?? default; + return global::G.UsageLimitTypeExtensions.ToEnum(stringValue) ?? default; } break; @@ -27,7 +27,7 @@ public sealed class UsageLimitType2JsonConverter : global::System.Text.Json.Seri case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.UsageLimitType2)numValue; + return (global::G.UsageLimitType)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,12 +39,12 @@ public sealed class UsageLimitType2JsonConverter : global::System.Text.Json.Seri /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.UsageLimitType2 value, + global::G.UsageLimitType value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::G.UsageLimitType2Extensions.ToValueString(value)); + writer.WriteStringValue(global::G.UsageLimitTypeExtensions.ToValueString(value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2Nullable.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitTypeNullable.g.verified.cs similarity index 74% rename from src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2Nullable.g.verified.cs rename to src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitTypeNullable.g.verified.cs index c8a7ae626a..87f2794217 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitType2Nullable.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.UsageLimitTypeNullable.g.verified.cs @@ -1,13 +1,13 @@ -//HintName: JsonConverters.UsageLimitType2Nullable.g.cs +//HintName: JsonConverters.UsageLimitTypeNullable.g.cs #nullable enable namespace G.JsonConverters { /// - public sealed class UsageLimitType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class UsageLimitTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::G.UsageLimitType2? Read( + public override global::G.UsageLimitType? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -19,7 +19,7 @@ public sealed class UsageLimitType2NullableJsonConverter : global::System.Text.J var stringValue = reader.GetString(); if (stringValue != null) { - return global::G.UsageLimitType2Extensions.ToEnum(stringValue); + return global::G.UsageLimitTypeExtensions.ToEnum(stringValue); } break; @@ -27,7 +27,7 @@ public sealed class UsageLimitType2NullableJsonConverter : global::System.Text.J case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::G.UsageLimitType2)numValue; + return (global::G.UsageLimitType)numValue; } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -39,7 +39,7 @@ public sealed class UsageLimitType2NullableJsonConverter : global::System.Text.J /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::G.UsageLimitType2? value, + global::G.UsageLimitType? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -50,7 +50,7 @@ public override void Write( } else { - writer.WriteStringValue(global::G.UsageLimitType2Extensions.ToValueString(value.Value)); + writer.WriteStringValue(global::G.UsageLimitTypeExtensions.ToValueString(value.Value)); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextConverters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextConverters.g.verified.cs index a6b1d77f1d..65da70c6f8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextConverters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextConverters.g.verified.cs @@ -57,8 +57,8 @@ internal sealed partial class JsonSerializerContextConverters typeof(global::G.JsonConverters.ExampleListOrderNullableJsonConverter), typeof(global::G.JsonConverters.ExampleSelectJsonConverter), typeof(global::G.JsonConverters.ExampleSelectNullableJsonConverter), - typeof(global::G.JsonConverters.TraceTier3JsonConverter), - typeof(global::G.JsonConverters.TraceTier3NullableJsonConverter), + typeof(global::G.JsonConverters.TraceTierJsonConverter), + typeof(global::G.JsonConverters.TraceTierNullableJsonConverter), typeof(global::G.JsonConverters.FeedbackLevelJsonConverter), typeof(global::G.JsonConverters.FeedbackLevelNullableJsonConverter), typeof(global::G.JsonConverters.OAuthProviderJsonConverter), @@ -95,33 +95,31 @@ internal sealed partial class JsonSerializerContextConverters typeof(global::G.JsonConverters.TenantShareRunTokenTypeNullableJsonConverter), typeof(global::G.JsonConverters.TenantUsageLimitTypeJsonConverter), typeof(global::G.JsonConverters.TenantUsageLimitTypeNullableJsonConverter), - typeof(global::G.JsonConverters.UsageLimitType2JsonConverter), - typeof(global::G.JsonConverters.UsageLimitType2NullableJsonConverter), + typeof(global::G.JsonConverters.UsageLimitTypeJsonConverter), + typeof(global::G.JsonConverters.UsageLimitTypeNullableJsonConverter), typeof(global::G.JsonConverters.CreateRunRequestRunTypeJsonConverter), typeof(global::G.JsonConverters.CreateRunRequestRunTypeNullableJsonConverter), typeof(global::G.JsonConverters.BatchIngestRunsRequestPostItemRunTypeJsonConverter), typeof(global::G.JsonConverters.BatchIngestRunsRequestPostItemRunTypeNullableJsonConverter), - typeof(global::G.JsonConverters.ListRulesApiV1RunsRulesGetType2JsonConverter), - typeof(global::G.JsonConverters.ListRulesApiV1RunsRulesGetType2NullableJsonConverter), - typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsArchived2JsonConverter), - typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsArchived2NullableJsonConverter), - typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsPublic2JsonConverter), - typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsPublic2NullableJsonConverter), + typeof(global::G.JsonConverters.ListRulesApiV1RunsRulesGetTypeJsonConverter), + typeof(global::G.JsonConverters.ListRulesApiV1RunsRulesGetTypeNullableJsonConverter), + typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsArchivedJsonConverter), + typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsArchivedNullableJsonConverter), + typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsPublicJsonConverter), + typeof(global::G.JsonConverters.ListReposApiV1ReposGetIsPublicNullableJsonConverter), typeof(global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant1JsonConverter), typeof(global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant1NullableJsonConverter), typeof(global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant2JsonConverter), typeof(global::G.JsonConverters.ListReposApiV1ReposGetSortDirectionVariant2NullableJsonConverter), - typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2JsonConverter), - typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchived2NullableJsonConverter), - typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2JsonConverter), - typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublic2NullableJsonConverter), + typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedJsonConverter), + typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsArchivedNullableJsonConverter), + typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicJsonConverter), + typeof(global::G.JsonConverters.ListRepoTagsApiV1ReposTagsGetIsPublicNullableJsonConverter), typeof(global::G.JsonConverters.AnyOfJsonConverterFactory2), typeof(global::G.JsonConverters.AnyOfJsonConverterFactory3), - typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4), - typeof(global::G.JsonConverters.AnyOfJsonConverterFactory6), typeof(global::G.JsonConverters.AnyOfJsonConverterFactory5), + typeof(global::G.JsonConverters.AnyOfJsonConverterFactory4), typeof(global::G.JsonConverters.OneOfJsonConverterFactory2), - typeof(global::G.JsonConverters.OneOfJsonConverterFactory3), }; } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs index 5375c1736f..ea86e26d59 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs @@ -27,2406 +27,2150 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::G.AnyOf? Type2 { get; set; } + public object? Type2 { get; set; } /// /// /// - public object? Type3 { get; set; } + public global::G.APIKeyCreateRequest? Type3 { get; set; } /// /// /// - public global::G.APIKeyCreateRequest? Type4 { get; set; } + public bool? Type4 { get; set; } /// /// /// - public bool? Type5 { get; set; } + public global::G.APIKeyCreateResponse? Type5 { get; set; } /// /// /// - public global::G.APIKeyCreateResponse? Type6 { get; set; } + public global::System.DateTime? Type6 { get; set; } /// /// /// - public global::G.AnyOf? Type7 { get; set; } + public global::System.Guid? Type7 { get; set; } /// /// /// - public global::System.DateTime? Type8 { get; set; } + public global::G.APIKeyGetResponse? Type8 { get; set; } /// /// /// - public global::System.Guid? Type9 { get; set; } + public global::G.AccessScope? Type9 { get; set; } /// /// /// - public global::G.APIKeyGetResponse? Type10 { get; set; } + public global::G.AllowedLoginMethodsUpdate? Type10 { get; set; } /// /// /// - public global::G.AccessScope? Type11 { get; set; } + public global::G.AnnotationQueueCreateSchema? Type11 { get; set; } /// /// /// - public global::G.AllowedLoginMethodsUpdate? Type12 { get; set; } + public int? Type12 { get; set; } /// /// /// - public global::G.AnnotationQueueCreateSchema? Type13 { get; set; } + public global::G.AnnotationQueueRunSchema? Type13 { get; set; } /// /// /// - public global::G.AnyOf? Type14 { get; set; } + public global::G.AnnotationQueueRunUpdateSchema? Type14 { get; set; } /// /// /// - public global::G.AnyOf? Type15 { get; set; } + public global::G.AnnotationQueueSchema? Type15 { get; set; } /// /// /// - public global::G.AnyOf? Type16 { get; set; } + public global::G.AnnotationQueueSchemaWithSize? Type16 { get; set; } /// /// /// - public int? Type17 { get; set; } + public global::G.AnnotationQueueSizeSchema? Type17 { get; set; } /// /// /// - public global::G.AnyOf? Type18 { get; set; } + public global::G.AnnotationQueueUpdateSchema? Type18 { get; set; } /// /// /// - public global::G.AnnotationQueueRunSchema? Type19 { get; set; } + public global::G.AppFeedbackSource? Type19 { get; set; } /// /// /// - public global::G.AnnotationQueueRunUpdateSchema? Type20 { get; set; } + public global::G.AuthProvider? Type20 { get; set; } /// /// /// - public global::G.AnnotationQueueSchema? Type21 { get; set; } + public global::G.AutoEvalFeedbackSource? Type21 { get; set; } /// /// /// - public global::G.AnnotationQueueSchemaWithSize? Type22 { get; set; } + public global::G.BasicAuthMemberCreate? Type22 { get; set; } /// /// /// - public global::G.AnnotationQueueSizeSchema? Type23 { get; set; } + public global::System.Collections.Generic.IList? Type23 { get; set; } /// /// /// - public global::G.AnnotationQueueUpdateSchema? Type24 { get; set; } + public global::G.BasicAuthResponse? Type24 { get; set; } /// /// /// - public global::G.AppFeedbackSource? Type25 { get; set; } + public global::G.BasicAuthUserPatch? Type25 { get; set; } /// /// /// - public global::G.AuthProvider? Type26 { get; set; } + public global::G.BatchIngestConfig? Type26 { get; set; } /// /// /// - public global::G.AutoEvalFeedbackSource? Type27 { get; set; } + public global::G.BodyParamsForRunSchema? Type27 { get; set; } /// /// /// - public global::G.BasicAuthMemberCreate? Type28 { get; set; } + public global::G.RunTypeEnum? Type28 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type29 { get; set; } + public global::G.RunsFilterDataSourceTypeEnum? Type29 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type30 { get; set; } + public global::System.Collections.Generic.IList? Type30 { get; set; } /// /// /// - public global::G.BasicAuthResponse? Type31 { get; set; } + public global::G.RunSelect? Type31 { get; set; } /// /// /// - public global::G.BasicAuthUserPatch? Type32 { get; set; } + public global::G.RunDateOrder? Type32 { get; set; } /// /// /// - public global::G.BatchIngestConfig? Type33 { get; set; } + public global::G.BodyCloneDatasetApiV1DatasetsClonePost? Type33 { get; set; } /// /// /// - public global::G.BodyParamsForRunSchema? Type34 { get; set; } + public global::G.BodyExecuteApiV1AceExecutePost? Type34 { get; set; } /// /// /// - public global::G.AnyOf? Type35 { get; set; } + public global::System.Collections.Generic.IList? Type35 { get; set; } /// /// /// - public global::G.RunTypeEnum? Type36 { get; set; } + public global::G.BodyExecuteApiV1AceExecutePostArg? Type36 { get; set; } /// /// /// - public global::G.AnyOf? Type37 { get; set; } + public global::G.BodyUpdateDatasetSplitsApiV1DatasetsDatasetIdSplitsPut? Type37 { get; set; } /// /// /// - public global::G.RunsFilterDataSourceTypeEnum? Type38 { get; set; } + public global::G.BodyUploadCsvDatasetApiV1DatasetsUploadPost? Type38 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type39 { get; set; } + public byte[]? Type39 { get; set; } /// /// /// - public global::G.RunSelect? Type40 { get; set; } + public global::System.Collections.Generic.IList? Type40 { get; set; } /// /// /// - public global::G.RunDateOrder? Type41 { get; set; } + public global::G.DataType? Type41 { get; set; } /// /// /// - public global::G.BodyCloneDatasetApiV1DatasetsClonePost? Type42 { get; set; } + public global::G.BodyUploadExamplesApiV1ExamplesUploadDatasetIdPost? Type42 { get; set; } /// /// /// - public global::G.AnyOf?, object>? Type43 { get; set; } + public global::G.BulkExport? Type43 { get; set; } /// /// /// - public global::G.AnyOf? Type44 { get; set; } + public global::G.BulkExportFormat? Type44 { get; set; } /// /// /// - public global::G.BodyExecuteApiV1AceExecutePost? Type45 { get; set; } + public global::G.BulkExportCompression? Type45 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type46 { get; set; } + public global::G.BulkExportStatus? Type46 { get; set; } /// /// /// - public global::G.BodyExecuteApiV1AceExecutePostArg? Type47 { get; set; } + public global::G.BulkExportCreate? Type47 { get; set; } /// /// /// - public global::G.BodyUpdateDatasetSplitsApiV1DatasetsDatasetIdSplitsPut? Type48 { get; set; } + public global::G.BulkExportDestination? Type48 { get; set; } /// /// /// - public global::G.BodyUploadCsvDatasetApiV1DatasetsUploadPost? Type49 { get; set; } + public global::G.BulkExportDestinationType? Type49 { get; set; } /// /// /// - public byte[]? Type50 { get; set; } + public global::G.BulkExportDestinationS3Config? Type50 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type51 { get; set; } + public global::G.BulkExportDestinationCreate? Type51 { get; set; } /// /// /// - public global::G.DataType? Type52 { get; set; } + public global::G.BulkExportDestinationS3Credentials? Type52 { get; set; } /// /// /// - public global::G.BodyUploadExamplesApiV1ExamplesUploadDatasetIdPost? Type53 { get; set; } + public global::G.BulkExportRun? Type53 { get; set; } /// /// /// - public global::G.BulkExport? Type54 { get; set; } + public global::G.BulkExportRunS3Metadata? Type54 { get; set; } /// /// /// - public global::G.BulkExportFormat? Type55 { get; set; } + public global::G.BulkExportRunStatus? Type55 { get; set; } /// /// /// - public global::G.BulkExportCompression? Type56 { get; set; } + public global::G.BulkExportUpdate? Type56 { get; set; } /// /// /// - public global::G.BulkExportStatus? Type57 { get; set; } + public global::G.BulkExportUpdateStatus? Type57 { get; set; } /// /// /// - public global::G.BulkExportCreate? Type58 { get; set; } + public global::G.ChangePaymentPlanReq? Type58 { get; set; } /// /// /// - public global::G.BulkExportDestination? Type59 { get; set; } + public global::G.ChangePaymentPlanSchema? Type59 { get; set; } /// /// /// - public global::G.BulkExportDestinationType? Type60 { get; set; } + public global::G.CodeEvaluatorTopLevel? Type60 { get; set; } /// /// /// - public global::G.BulkExportDestinationS3Config? Type61 { get; set; } + public global::G.Comment? Type61 { get; set; } /// /// /// - public global::G.BulkExportDestinationCreate? Type62 { get; set; } + public global::G.CommitManifestResponse? Type62 { get; set; } /// /// /// - public global::G.BulkExportDestinationS3Credentials? Type63 { get; set; } + public global::System.Collections.Generic.IList? Type63 { get; set; } /// /// /// - public global::G.BulkExportRun? Type64 { get; set; } + public global::G.RepoExampleResponse? Type64 { get; set; } /// /// /// - public global::G.BulkExportRunS3Metadata? Type65 { get; set; } + public global::G.CommitWithLookups? Type65 { get; set; } /// /// /// - public global::G.BulkExportRunStatus? Type66 { get; set; } + public global::G.ComparativeExperiment? Type66 { get; set; } /// /// /// - public global::G.BulkExportUpdate? Type67 { get; set; } + public global::System.Collections.Generic.IList? Type67 { get; set; } /// /// /// - public global::G.BulkExportUpdateStatus? Type68 { get; set; } + public global::G.SimpleExperimentInfo? Type68 { get; set; } /// /// /// - public global::G.ChangePaymentPlanReq? Type69 { get; set; } + public global::G.ComparativeExperimentBase? Type69 { get; set; } /// /// /// - public global::G.ChangePaymentPlanSchema? Type70 { get; set; } + public global::G.ComparativeExperimentCreate? Type70 { get; set; } /// /// /// - public global::G.CodeEvaluatorTopLevel? Type71 { get; set; } + public global::G.ConfiguredBy? Type71 { get; set; } /// /// /// - public global::G.Comment? Type72 { get; set; } + public global::G.CreateCommentRequest? Type72 { get; set; } /// /// /// - public global::G.CommitManifestResponse? Type73 { get; set; } + public global::G.CreateEventRequest? Type73 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type74 { get; set; } + public global::G.CreateEventRequestEventType? Type74 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type75 { get; set; } + public global::G.CreateFeedbackConfigSchema? Type75 { get; set; } /// /// /// - public global::G.RepoExampleResponse? Type76 { get; set; } + public global::G.FeedbackConfig? Type76 { get; set; } /// /// /// - public global::G.CommitWithLookups? Type77 { get; set; } + public global::G.FeedbackType? Type77 { get; set; } /// /// /// - public global::G.ComparativeExperiment? Type78 { get; set; } + public double? Type78 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type79 { get; set; } + public global::System.Collections.Generic.IList? Type79 { get; set; } /// /// /// - public global::G.SimpleExperimentInfo? Type80 { get; set; } + public global::G.FeedbackCategory? Type80 { get; set; } /// /// /// - public global::G.ComparativeExperimentBase? Type81 { get; set; } + public global::G.CreateRepoCommitRequest? Type81 { get; set; } /// /// /// - public global::G.ComparativeExperimentCreate? Type82 { get; set; } + public global::G.CreateRepoCommitResponse? Type82 { get; set; } /// /// /// - public global::G.ConfiguredBy? Type83 { get; set; } + public global::G.CreateRepoRequest? Type83 { get; set; } /// /// /// - public global::G.CreateCommentRequest? Type84 { get; set; } + public global::G.CreateRepoResponse? Type84 { get; set; } /// /// /// - public global::G.CreateEventRequest? Type85 { get; set; } + public global::G.RepoWithLookups? Type85 { get; set; } /// /// /// - public global::G.CreateEventRequestEventType? Type86 { get; set; } + public global::G.CreateRoleRequest? Type86 { get; set; } /// /// /// - public global::G.CreateFeedbackConfigSchema? Type87 { get; set; } + public global::G.CustomChartCreate? Type87 { get; set; } /// /// /// - public global::G.FeedbackConfig? Type88 { get; set; } + public global::G.CustomChartType? Type88 { get; set; } /// /// /// - public global::G.FeedbackType? Type89 { get; set; } + public global::System.Collections.Generic.IList? Type89 { get; set; } /// /// /// - public global::G.AnyOf? Type90 { get; set; } + public global::G.CustomChartSeriesCreate? Type90 { get; set; } /// /// /// - public double? Type91 { get; set; } + public global::G.CustomChartSeriesFilters? Type91 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type92 { get; set; } + public global::G.CustomChartMetric? Type92 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type93 { get; set; } + public global::G.CustomChartCreatePreview? Type93 { get; set; } /// /// /// - public global::G.FeedbackCategory? Type94 { get; set; } + public global::System.Collections.Generic.IList? Type94 { get; set; } /// /// /// - public global::G.CreateRepoCommitRequest? Type95 { get; set; } + public global::G.CustomChartSeries? Type95 { get; set; } /// /// /// - public global::G.CreateRepoCommitResponse? Type96 { get; set; } + public global::G.CustomChartPreviewRequest? Type96 { get; set; } /// /// /// - public global::G.CreateRepoRequest? Type97 { get; set; } + public global::G.CustomChartsRequestBase? Type97 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type98 { get; set; } + public global::G.TimedeltaInput? Type98 { get; set; } /// /// /// - public global::G.CreateRepoResponse? Type99 { get; set; } + public global::G.CustomChartResponse? Type99 { get; set; } /// /// /// - public global::G.RepoWithLookups? Type100 { get; set; } + public global::G.CustomChartSeriesUpdate? Type100 { get; set; } /// /// /// - public global::G.AnyOf? Type101 { get; set; } + public global::G.CustomChartUpdate? Type101 { get; set; } /// /// /// - public global::G.CreateRoleRequest? Type102 { get; set; } + public global::G.AnyOf? Type102 { get; set; } /// /// /// - public global::G.CustomChartCreate? Type103 { get; set; } + public global::G.Missing? Type103 { get; set; } /// /// /// - public global::G.CustomChartType? Type104 { get; set; } + public global::G.MissingMissing1? Type104 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type105 { get; set; } + public global::G.AnyOf? Type105 { get; set; } /// /// /// - public global::G.CustomChartSeriesCreate? Type106 { get; set; } + public global::G.AnyOf? Type106 { get; set; } /// /// /// - public global::G.AnyOf? Type107 { get; set; } + public global::G.AnyOf, global::G.Missing>? Type107 { get; set; } /// /// /// - public global::G.CustomChartSeriesFilters? Type108 { get; set; } + public global::System.Collections.Generic.IList? Type108 { get; set; } /// /// /// - public global::G.CustomChartMetric? Type109 { get; set; } + public global::G.AnyOf? Type109 { get; set; } /// /// /// - public global::G.CustomChartCreatePreview? Type110 { get; set; } + public global::G.AnyOf? Type110 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type111 { get; set; } + public global::G.AnyOf? Type111 { get; set; } /// /// /// - public global::G.CustomChartSeries? Type112 { get; set; } + public global::G.CustomChartsDataPoint? Type112 { get; set; } /// /// /// - public global::G.CustomChartPreviewRequest? Type113 { get; set; } + public global::G.AnyOf? Type113 { get; set; } /// /// /// - public global::G.CustomChartsRequestBase? Type114 { get; set; } + public global::G.CustomChartsRequest? Type114 { get; set; } /// /// /// - public global::G.TimedeltaInput? Type115 { get; set; } + public global::G.CustomChartsResponse? Type115 { get; set; } /// /// /// - public global::G.CustomChartResponse? Type116 { get; set; } + public global::System.Collections.Generic.IList? Type116 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type117 { get; set; } + public global::G.CustomChartsSection? Type117 { get; set; } /// /// /// - public global::G.CustomChartSeriesUpdate? Type118 { get; set; } + public global::System.Collections.Generic.IList? Type118 { get; set; } /// /// /// - public global::G.CustomChartUpdate? Type119 { get; set; } + public global::G.SingleCustomChartResponse? Type119 { get; set; } /// /// /// - public global::G.AnyOf? Type120 { get; set; } + public global::System.Collections.Generic.IList? Type120 { get; set; } /// /// /// - public global::G.Missing? Type121 { get; set; } + public global::G.CustomChartsSectionCreate? Type121 { get; set; } /// /// /// - public global::G.MissingMissing1? Type122 { get; set; } + public global::G.CustomChartsSectionResponse? Type122 { get; set; } /// /// /// - public global::G.AnyOf? Type123 { get; set; } + public global::G.CustomChartsSectionUpdate? Type123 { get; set; } /// /// /// - public global::G.AnyOf? Type124 { get; set; } + public global::G.CustomerVisiblePlanInfo? Type124 { get; set; } /// /// /// - public global::G.AnyOf? Type125 { get; set; } + public global::G.PaymentPlanTier? Type125 { get; set; } /// /// /// - public global::G.AnyOf, global::G.Missing>? Type126 { get; set; } + public global::G.Dataset? Type126 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type127 { get; set; } + public global::G.DatasetCreate? Type127 { get; set; } /// /// /// - public global::G.AnyOf? Type128 { get; set; } + public global::G.DatasetDiffInfo? Type128 { get; set; } /// /// /// - public global::G.AnyOf? Type129 { get; set; } + public global::G.DatasetIndexInfo? Type129 { get; set; } /// /// /// - public global::G.AnyOf? Type130 { get; set; } + public global::G.DatasetIndexRequest? Type130 { get; set; } /// /// /// - public global::G.CustomChartsDataPoint? Type131 { get; set; } + public global::G.DatasetPublicSchema? Type131 { get; set; } /// /// /// - public global::G.AnyOf? Type132 { get; set; } + public global::G.DatasetSchemaForUpdate? Type132 { get; set; } /// /// /// - public global::G.CustomChartsRequest? Type133 { get; set; } + public global::G.DatasetShareSchema? Type133 { get; set; } /// /// /// - public global::G.CustomChartsResponse? Type134 { get; set; } + public global::G.DatasetUpdate? Type134 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type135 { get; set; } + public global::System.Collections.Generic.Dictionary? Type135 { get; set; } /// /// /// - public global::G.CustomChartsSection? Type136 { get; set; } + public global::G.ExampleUpdate? Type136 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type137 { get; set; } + public global::G.AnyOf, string>? Type137 { get; set; } /// /// /// - public global::G.SingleCustomChartResponse? Type138 { get; set; } + public global::G.DatasetVersion? Type138 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type139 { get; set; } + public global::G.EvaluatorStructuredOutput? Type139 { get; set; } /// /// /// - public global::G.CustomChartsSectionCreate? Type140 { get; set; } + public global::System.Collections.Generic.IList>? Type140 { get; set; } /// /// /// - public global::G.CustomChartsSectionResponse? Type141 { get; set; } + public global::System.Collections.Generic.Dictionary? Type141 { get; set; } /// /// /// - public global::G.CustomChartsSectionUpdate? Type142 { get; set; } + public global::G.EvaluatorTopLevel? Type142 { get; set; } /// /// /// - public global::G.CustomerVisiblePlanInfo? Type143 { get; set; } + public global::G.Example? Type143 { get; set; } /// /// /// - public global::G.PaymentPlanTier? Type144 { get; set; } + public global::G.ExampleBulkCreate? Type144 { get; set; } /// /// /// - public global::G.Dataset? Type145 { get; set; } + public global::G.ExampleCreate? Type145 { get; set; } /// /// /// - public global::G.AnyOf? Type146 { get; set; } + public global::G.ExampleListOrder? Type146 { get; set; } /// /// /// - public global::G.DatasetCreate? Type147 { get; set; } + public global::G.ExampleRunWithFeedback? Type147 { get; set; } /// /// /// - public global::G.DatasetDiffInfo? Type148 { get; set; } + public global::G.ExampleSelect? Type148 { get; set; } /// /// /// - public global::G.DatasetIndexInfo? Type149 { get; set; } + public global::G.ExampleUpdateWithID? Type149 { get; set; } /// /// /// - public global::G.DatasetIndexRequest? Type150 { get; set; } + public global::G.ExampleWithRuns? Type150 { get; set; } /// /// /// - public global::G.DatasetPublicSchema? Type151 { get; set; } + public global::System.Collections.Generic.IList? Type151 { get; set; } /// /// /// - public global::G.DatasetSchemaForUpdate? Type152 { get; set; } + public global::G.RunSchema? Type152 { get; set; } /// /// /// - public global::G.DatasetShareSchema? Type153 { get; set; } + public global::System.Collections.Generic.IList? Type153 { get; set; } /// /// /// - public global::G.DatasetUpdate? Type154 { get; set; } + public global::System.Collections.Generic.Dictionary? Type154 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type155 { get; set; } + public global::G.TraceTier? Type155 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type156 { get; set; } + public global::G.ExampleWithRunsCH? Type156 { get; set; } /// /// /// - public global::G.ExampleUpdate? Type157 { get; set; } + public global::System.Collections.Generic.IList? Type157 { get; set; } /// /// /// - public global::G.AnyOf, string, object>? Type158 { get; set; } + public global::G.RunSchemaComparisonView? Type158 { get; set; } /// /// /// - public global::G.DatasetVersion? Type159 { get; set; } + public global::G.ExperimentResultRow? Type159 { get; set; } /// /// /// - public global::G.EvaluatorStructuredOutput? Type160 { get; set; } + public global::System.Collections.Generic.IList? Type160 { get; set; } /// /// /// - public global::G.AnyOf>, object>? Type161 { get; set; } + public global::G.FeedbackCreateCoreSchema? Type161 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type162 { get; set; } + public global::G.AnyOf? Type162 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type163 { get; set; } + public global::G.AnyOf? Type163 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type164 { get; set; } + public global::G.AnyOf? Type164 { get; set; } /// /// /// - public global::G.EvaluatorTopLevel? Type165 { get; set; } + public global::G.AnyOf? Type165 { get; set; } /// /// /// - public global::G.Example? Type166 { get; set; } + public global::G.ModelFeedbackSource? Type166 { get; set; } /// /// /// - public global::G.ExampleBulkCreate? Type167 { get; set; } + public global::G.ExperimentResultsUpload? Type167 { get; set; } /// /// /// - public global::G.ExampleCreate? Type168 { get; set; } + public global::System.Collections.Generic.IList? Type168 { get; set; } /// /// /// - public global::G.ExampleListOrder? Type169 { get; set; } + public global::G.ExperimentResultsUploadResult? Type169 { get; set; } /// /// /// - public global::G.ExampleRunWithFeedback? Type170 { get; set; } + public global::G.TracerSession? Type170 { get; set; } /// /// /// - public global::G.ExampleSelect? Type171 { get; set; } + public global::G.FeedbackConfigSchema? Type171 { get; set; } /// /// /// - public global::G.ExampleUpdateWithID? Type172 { get; set; } + public global::G.FeedbackCreateSchema? Type172 { get; set; } /// /// /// - public global::G.ExampleWithRuns? Type173 { get; set; } + public global::G.FeedbackCreateWithTokenExtendedSchema? Type173 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type174 { get; set; } + public global::G.AnyOf? Type174 { get; set; } /// /// /// - public global::G.RunSchema? Type175 { get; set; } + public global::G.FeedbackDelta? Type175 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type176 { get; set; } + public global::G.FeedbackIngestTokenCreateSchema? Type176 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type177 { get; set; } + public global::G.FeedbackIngestTokenSchema? Type177 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type178 { get; set; } + public global::G.FeedbackLevel? Type178 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type179 { get; set; } + public global::G.FeedbackSchema? Type179 { get; set; } /// /// /// - public global::G.AnyOf? Type180 { get; set; } + public global::G.FeedbackSource3? Type180 { get; set; } /// /// /// - public global::G.TraceTier3? Type181 { get; set; } + public global::G.FeedbackUpdateSchema? Type181 { get; set; } /// /// /// - public global::G.ExampleWithRunsCH? Type182 { get; set; } + public global::G.FilterQueryParamsForRunSchema? Type182 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type183 { get; set; } + public global::G.FilterView? Type183 { get; set; } /// /// /// - public global::G.RunSchemaComparisonView? Type184 { get; set; } + public global::G.FilterViewCreate? Type184 { get; set; } /// /// /// - public global::G.ExperimentResultRow? Type185 { get; set; } + public global::G.FilterViewUpdate? Type185 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type186 { get; set; } + public global::G.ForkRepoRequest? Type186 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type187 { get; set; } + public global::G.GenerateSyntheticExamplesBody? Type187 { get; set; } /// /// /// - public global::G.FeedbackCreateCoreSchema? Type188 { get; set; } + public global::G.GetRepoResponse? Type188 { get; set; } /// /// /// - public global::G.AnyOf? Type189 { get; set; } + public global::G.HTTPValidationError? Type189 { get; set; } /// /// /// - public global::G.AnyOf? Type190 { get; set; } + public global::System.Collections.Generic.IList? Type190 { get; set; } /// /// /// - public global::G.AnyOf? Type191 { get; set; } + public global::G.ValidationError? Type191 { get; set; } /// /// /// - public global::G.AnyOf? Type192 { get; set; } + public global::System.Collections.Generic.IList>? Type192 { get; set; } /// /// /// - public global::G.ModelFeedbackSource? Type193 { get; set; } + public global::G.AnyOf? Type193 { get; set; } /// /// /// - public global::G.AnyOf? Type194 { get; set; } + public global::G.Identity? Type194 { get; set; } /// /// /// - public global::G.ExperimentResultsUpload? Type195 { get; set; } + public global::G.IdentityAnnotationQueueRunStatusCreateSchema? Type195 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type196 { get; set; } + public global::G.IdentityCreate? Type196 { get; set; } /// /// /// - public global::G.ExperimentResultsUploadResult? Type197 { get; set; } + public global::G.IdentityPatch? Type197 { get; set; } /// /// /// - public global::G.TracerSession? Type198 { get; set; } + public global::G.InfoGetResponse? Type198 { get; set; } /// /// /// - public global::G.FeedbackConfigSchema? Type199 { get; set; } + public global::G.InvokePromptPayload? Type199 { get; set; } /// /// /// - public global::G.FeedbackCreateSchema? Type200 { get; set; } + public global::G.LikeRepoRequest? Type200 { get; set; } /// /// /// - public global::G.FeedbackCreateWithTokenExtendedSchema? Type201 { get; set; } + public global::G.LikeRepoResponse? Type201 { get; set; } /// /// /// - public global::G.AnyOf? Type202 { get; set; } + public global::G.ListCommentsResponse? Type202 { get; set; } /// /// /// - public global::G.FeedbackDelta? Type203 { get; set; } + public global::System.Collections.Generic.IList? Type203 { get; set; } /// /// /// - public global::G.FeedbackIngestTokenCreateSchema? Type204 { get; set; } + public global::G.ListCommitsResponse? Type204 { get; set; } /// /// /// - public global::G.AnyOf? Type205 { get; set; } + public global::System.Collections.Generic.IList? Type205 { get; set; } /// /// /// - public global::G.FeedbackIngestTokenSchema? Type206 { get; set; } + public global::G.ListPublicDatasetRunsResponse? Type206 { get; set; } /// /// /// - public global::G.FeedbackLevel? Type207 { get; set; } + public global::System.Collections.Generic.IList? Type207 { get; set; } /// /// /// - public global::G.FeedbackSchema? Type208 { get; set; } + public global::G.RunPublicDatasetSchema? Type208 { get; set; } /// /// /// - public global::G.AnyOf? Type209 { get; set; } + public global::System.Collections.Generic.Dictionary? Type209 { get; set; } /// /// /// - public global::G.FeedbackSource4? Type210 { get; set; } + public global::G.ListPublicRunsResponse? Type210 { get; set; } /// /// /// - public global::G.FeedbackUpdateSchema? Type211 { get; set; } + public global::System.Collections.Generic.IList? Type211 { get; set; } /// /// /// - public global::G.FilterQueryParamsForRunSchema? Type212 { get; set; } + public global::G.RunPublicSchema? Type212 { get; set; } /// /// /// - public global::G.FilterView? Type213 { get; set; } + public global::G.ListReposResponse? Type213 { get; set; } /// /// /// - public global::G.FilterViewCreate? Type214 { get; set; } + public global::System.Collections.Generic.IList? Type214 { get; set; } /// /// /// - public global::G.FilterViewUpdate? Type215 { get; set; } + public global::G.ListRunsResponse? Type215 { get; set; } /// /// /// - public global::G.ForkRepoRequest? Type216 { get; set; } + public global::G.ListTagsResponse? Type216 { get; set; } /// /// /// - public global::G.GenerateSyntheticExamplesBody? Type217 { get; set; } + public global::System.Collections.Generic.IList? Type217 { get; set; } /// /// /// - public global::G.GetRepoResponse? Type218 { get; set; } + public global::G.TagCount? Type218 { get; set; } /// /// /// - public global::G.HTTPValidationError? Type219 { get; set; } + public global::G.MemberIdentity? Type219 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type220 { get; set; } + public global::G.MetadataKeyValue? Type220 { get; set; } /// /// /// - public global::G.ValidationError? Type221 { get; set; } + public global::G.ModelPriceMapCreateSchema? Type221 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type222 { get; set; } + public global::G.AnyOf? Type222 { get; set; } /// /// /// - public global::G.AnyOf? Type223 { get; set; } + public global::G.ModelPriceMapUpdateSchema? Type223 { get; set; } /// /// /// - public global::G.Identity? Type224 { get; set; } + public global::G.MonitorBlock? Type224 { get; set; } /// /// /// - public global::G.IdentityAnnotationQueueRunStatusCreateSchema? Type225 { get; set; } + public global::System.Collections.Generic.IList>? Type225 { get; set; } /// /// /// - public global::G.IdentityCreate? Type226 { get; set; } + public global::System.Collections.Generic.IList? Type226 { get; set; } /// /// /// - public global::G.IdentityPatch? Type227 { get; set; } + public global::G.MonitorBlockRowItem? Type227 { get; set; } /// /// /// - public global::G.InfoGetResponse? Type228 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type228 { get; set; } /// /// /// - public global::G.InvokePromptPayload? Type229 { get; set; } + public global::System.Collections.Generic.IList? Type229 { get; set; } /// /// /// - public global::G.LikeRepoRequest? Type230 { get; set; } + public global::G.MonitorGroupSpec? Type230 { get; set; } /// /// /// - public global::G.LikeRepoResponse? Type231 { get; set; } + public global::G.MonitorRequest? Type231 { get; set; } /// /// /// - public global::G.ListCommentsResponse? Type232 { get; set; } + public global::System.Collections.Generic.IList? Type232 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type233 { get; set; } + public global::G.MonitorResponse? Type233 { get; set; } /// /// /// - public global::G.ListCommitsResponse? Type234 { get; set; } + public global::System.Collections.Generic.IList? Type234 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type235 { get; set; } + public global::G.OAuthProvider? Type235 { get; set; } /// /// /// - public global::G.ListPublicDatasetRunsResponse? Type236 { get; set; } + public global::G.OptimizePromptRequest? Type236 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type237 { get; set; } + public global::System.Collections.Generic.IList? Type237 { get; set; } /// /// /// - public global::G.RunPublicDatasetSchema? Type238 { get; set; } + public global::G.OptimizePromptResponse? Type238 { get; set; } /// /// /// - public global::G.ListPublicRunsResponse? Type239 { get; set; } + public global::G.OrgFeatureFlags? Type239 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type240 { get; set; } + public global::G.OrgIdentityPatch? Type240 { get; set; } /// /// /// - public global::G.RunPublicSchema? Type241 { get; set; } + public global::G.OrgMemberIdentity? Type241 { get; set; } /// /// /// - public global::G.ListReposResponse? Type242 { get; set; } + public global::G.OrgPendingIdentity? Type242 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type243 { get; set; } + public global::G.Organization? Type243 { get; set; } /// /// /// - public global::G.ListRunsResponse? Type244 { get; set; } + public global::G.OrganizationConfig? Type244 { get; set; } /// /// /// - public global::G.ListTagsResponse? Type245 { get; set; } + public global::System.Collections.Generic.Dictionary? Type245 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type246 { get; set; } + public global::G.StripePaymentMethodInfo? Type246 { get; set; } /// /// /// - public global::G.TagCount? Type247 { get; set; } + public global::G.OrganizationBillingInfo? Type247 { get; set; } /// /// /// - public global::G.MemberIdentity? Type248 { get; set; } + public global::G.OrganizationCreate? Type248 { get; set; } /// /// /// - public global::G.MetadataKeyValue? Type249 { get; set; } + public global::G.OrganizationDashboardColorScheme? Type249 { get; set; } /// /// /// - public global::G.ModelPriceMapCreateSchema? Type250 { get; set; } + public global::G.OrganizationDashboardSchema? Type250 { get; set; } /// /// /// - public global::G.AnyOf? Type251 { get; set; } + public global::G.OrganizationDashboardType? Type251 { get; set; } /// /// /// - public global::G.ModelPriceMapUpdateSchema? Type252 { get; set; } + public global::G.OrganizationInfo? Type252 { get; set; } /// /// /// - public global::G.MonitorBlock? Type253 { get; set; } + public global::G.OrganizationMembers? Type253 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type254 { get; set; } + public global::System.Collections.Generic.IList? Type254 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type255 { get; set; } + public global::System.Collections.Generic.IList? Type255 { get; set; } /// /// /// - public global::G.MonitorBlockRowItem? Type256 { get; set; } + public global::G.OrganizationPGSchemaSlim? Type256 { get; set; } /// /// /// - public global::G.AnyOf>, object>? Type257 { get; set; } + public global::G.OrganizationUpdate? Type257 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type258 { get; set; } + public global::G.PagerdutySeverity? Type258 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type259 { get; set; } + public global::G.PendingIdentity? Type259 { get; set; } /// /// /// - public global::G.MonitorGroupSpec? Type260 { get; set; } + public global::G.PendingIdentityCreate? Type260 { get; set; } /// /// /// - public global::G.AnyOf? Type261 { get; set; } + public global::G.PermissionResponse? Type261 { get; set; } /// /// /// - public global::G.MonitorRequest? Type262 { get; set; } + public global::G.PlaygroundRunOverDatasetRequestSchema? Type262 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type263 { get; set; } + public global::G.PlaygroundRunOverDatasetRequestSchemaManifest? Type263 { get; set; } /// /// /// - public global::G.MonitorResponse? Type264 { get; set; } + public global::System.Collections.Generic.IList? Type264 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type265 { get; set; } + public global::G.PlaygroundRunOverDatasetRequestSchemaTool? Type265 { get; set; } /// /// /// - public global::G.OAuthProvider? Type266 { get; set; } + public global::G.RunnableConfig? Type266 { get; set; } /// /// /// - public global::G.OptimizePromptRequest? Type267 { get; set; } + public global::G.AnyOf, global::G.RunnableConfigCallbacks>? Type267 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type268 { get; set; } + public global::System.Collections.Generic.IList? Type268 { get; set; } /// /// /// - public global::G.OptimizePromptResponse? Type269 { get; set; } + public global::G.RunnableConfigCallback? Type269 { get; set; } /// /// /// - public global::G.OrgFeatureFlags? Type270 { get; set; } + public global::G.RunnableConfigCallbacks? Type270 { get; set; } /// /// /// - public global::G.OrgIdentityPatch? Type271 { get; set; } + public global::G.PlaygroundSettingsCreateRequest? Type271 { get; set; } /// /// /// - public global::G.OrgMemberIdentity? Type272 { get; set; } + public global::G.PlaygroundSettingsResponse? Type272 { get; set; } /// /// /// - public global::G.OrgPendingIdentity? Type273 { get; set; } + public global::G.PlaygroundSettingsUpdateRequest? Type273 { get; set; } /// /// /// - public global::G.Organization? Type274 { get; set; } + public global::G.ProviderUserSlim? Type274 { get; set; } /// /// /// - public global::G.OrganizationConfig? Type275 { get; set; } + public global::G.PublicComparativeExperiment? Type275 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type276 { get; set; } + public global::G.PublicExampleWithRuns? Type276 { get; set; } /// /// /// - public global::G.AnyOf? Type277 { get; set; } + public global::G.PutDatasetVersionsSchema? Type277 { get; set; } /// /// /// - public global::G.AnyOf? Type278 { get; set; } + public global::G.AnyOf? Type278 { get; set; } /// /// /// - public global::G.StripePaymentMethodInfo? Type279 { get; set; } + public global::G.QueryExampleSchemaWithRuns? Type279 { get; set; } /// /// /// - public global::G.AnyOf? Type280 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type280 { get; set; } /// /// /// - public global::G.OrganizationBillingInfo? Type281 { get; set; } + public global::G.QueryFeedbackDelta? Type281 { get; set; } /// /// /// - public global::G.OrganizationCreate? Type282 { get; set; } + public global::G.QueryParamsForPublicRunSchema? Type282 { get; set; } /// /// /// - public global::G.OrganizationDashboardColorScheme? Type283 { get; set; } + public global::G.RequestBodyForRunsGenerateQuery? Type283 { get; set; } /// /// /// - public global::G.OrganizationDashboardSchema? Type284 { get; set; } + public global::System.Collections.Generic.IList? Type284 { get; set; } /// /// /// - public global::G.OrganizationDashboardType? Type285 { get; set; } + public global::G.RunsGenerateQueryFeedbackKeys? Type285 { get; set; } /// /// /// - public global::G.OrganizationInfo? Type286 { get; set; } + public global::G.Resource? Type286 { get; set; } /// /// /// - public global::G.OrganizationMembers? Type287 { get; set; } + public global::G.ResourceType? Type287 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type288 { get; set; } + public global::G.ResponseBodyForRunsGenerateQuery? Type288 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type289 { get; set; } + public global::G.Role? Type289 { get; set; } /// /// /// - public global::G.OrganizationPGSchemaSlim? Type290 { get; set; } + public global::G.RuleLogActionOutcome? Type290 { get; set; } /// /// /// - public global::G.OrganizationUpdate? Type291 { get; set; } + public global::G.RuleLogActionResponse? Type291 { get; set; } /// /// /// - public global::G.PagerdutySeverity? Type292 { get; set; } + public global::G.RuleLogSchema? Type292 { get; set; } /// /// /// - public global::G.PendingIdentity? Type293 { get; set; } + public global::G.RunGroupBy? Type293 { get; set; } /// /// /// - public global::G.PendingIdentityCreate? Type294 { get; set; } + public global::G.RunGroupRequest? Type294 { get; set; } /// /// /// - public global::G.PermissionResponse? Type295 { get; set; } + public global::G.RunGroupStats? Type295 { get; set; } /// /// /// - public global::G.PlaygroundRunOverDatasetRequestSchema? Type296 { get; set; } + public global::G.RunRulesAlertType? Type296 { get; set; } /// /// /// - public global::G.PlaygroundRunOverDatasetRequestSchemaManifest? Type297 { get; set; } + public global::G.RunRulesCreateSchema? Type297 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type298 { get; set; } + public global::System.Collections.Generic.IList? Type298 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type299 { get; set; } + public global::System.Collections.Generic.IList? Type299 { get; set; } /// /// /// - public global::G.PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item? Type300 { get; set; } + public global::System.Collections.Generic.IList? Type300 { get; set; } /// /// /// - public global::G.RunnableConfig? Type301 { get; set; } + public global::G.RunRulesPagerdutyAlertSchema? Type301 { get; set; } /// /// /// - public global::G.AnyOf, global::G.RunnableConfigCallbacks, object>? Type302 { get; set; } + public global::System.Collections.Generic.IList? Type302 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type303 { get; set; } + public global::G.RunRulesWebhookSchema? Type303 { get; set; } /// /// /// - public global::G.RunnableConfigCallback? Type304 { get; set; } + public global::G.RunRulesSchema? Type304 { get; set; } /// /// /// - public global::G.RunnableConfigCallbacks? Type305 { get; set; } + public global::G.RunSchemaWithAnnotationQueueInfo? Type305 { get; set; } /// /// /// - public global::G.PlaygroundSettingsCreateRequest? Type306 { get; set; } + public global::G.RunShareSchema? Type306 { get; set; } /// /// /// - public global::G.PlaygroundSettingsResponse? Type307 { get; set; } + public global::G.RunStats? Type307 { get; set; } /// /// /// - public global::G.PlaygroundSettingsUpdateRequest? Type308 { get; set; } + public global::G.SSOConfirmEmailRequest? Type308 { get; set; } /// /// /// - public global::G.ProviderUserSlim? Type309 { get; set; } + public global::G.SSOEmailVerificationSendRequest? Type309 { get; set; } /// /// /// - public global::G.AnyOf? Type310 { get; set; } + public global::G.SSOEmailVerificationStatusRequest? Type310 { get; set; } /// /// /// - public global::G.PublicComparativeExperiment? Type311 { get; set; } + public global::G.SSOEmailVerificationStatusResponse? Type311 { get; set; } /// /// /// - public global::G.PublicExampleWithRuns? Type312 { get; set; } + public global::G.SSOProvider? Type312 { get; set; } /// /// /// - public global::G.PutDatasetVersionsSchema? Type313 { get; set; } + public global::G.SSOProviderSlim? Type313 { get; set; } /// /// /// - public global::G.QueryExampleSchemaWithRuns? Type314 { get; set; } + public global::G.SSOSettingsCreate? Type314 { get; set; } /// /// /// - public global::G.AnyOf>, object>? Type315 { get; set; } + public global::G.SSOSettingsUpdate? Type315 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type316 { get; set; } + public global::G.SearchDatasetRequest? Type316 { get; set; } /// /// /// - public global::G.QueryFeedbackDelta? Type317 { get; set; } + public global::G.SearchDatasetResponse? Type317 { get; set; } /// /// /// - public global::G.QueryParamsForPublicRunSchema? Type318 { get; set; } + public global::System.Collections.Generic.IList? Type318 { get; set; } /// /// /// - public global::G.RequestBodyForRunsGenerateQuery? Type319 { get; set; } + public global::G.SearchedFewShotExample? Type319 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type320 { get; set; } + public global::G.SecretKey? Type320 { get; set; } /// /// /// - public global::G.RunsGenerateQueryFeedbackKeys? Type321 { get; set; } + public global::G.SecretUpsert? Type321 { get; set; } /// /// /// - public global::G.Resource? Type322 { get; set; } + public global::G.ServiceAccount? Type322 { get; set; } /// /// /// - public global::G.ResourceType? Type323 { get; set; } + public global::G.ServiceAccountCreateRequest? Type323 { get; set; } /// /// /// - public global::G.ResponseBodyForRunsGenerateQuery? Type324 { get; set; } + public global::G.ServiceAccountCreateResponse? Type324 { get; set; } /// /// /// - public global::G.Role? Type325 { get; set; } + public global::G.ServiceAccountDeleteResponse? Type325 { get; set; } /// /// /// - public global::G.AnyOf? Type326 { get; set; } + public global::G.SessionFeedbackDelta? Type326 { get; set; } /// /// /// - public global::G.RuleLogActionOutcome? Type327 { get; set; } + public global::System.Collections.Generic.Dictionary? Type327 { get; set; } /// /// /// - public global::G.RuleLogActionResponse? Type328 { get; set; } + public global::G.SessionSortableColumns? Type328 { get; set; } /// /// /// - public global::G.RuleLogSchema? Type329 { get; set; } + public global::G.SetTenantHandleRequest? Type329 { get; set; } /// /// /// - public global::G.AnyOf? Type330 { get; set; } + public global::G.SingleCustomChartResponseBase? Type330 { get; set; } /// /// /// - public global::G.RunGroupBy? Type331 { get; set; } + public global::G.SortByComparativeExperimentColumn? Type331 { get; set; } /// /// /// - public global::G.RunGroupRequest? Type332 { get; set; } + public global::G.SortByDatasetColumn? Type332 { get; set; } /// /// /// - public global::G.RunGroupStats? Type333 { get; set; } + public global::G.SourceType? Type333 { get; set; } /// /// /// - public global::G.RunRulesAlertType? Type334 { get; set; } + public global::G.StripeBusinessBillingInfo? Type334 { get; set; } /// /// /// - public global::G.RunRulesCreateSchema? Type335 { get; set; } + public global::G.StripeCustomerAddress? Type335 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type336 { get; set; } + public global::G.StripeBusinessInfoInput? Type336 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type337 { get; set; } + public global::G.StripeTaxId? Type337 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type338 { get; set; } + public global::G.StripeBusinessInfoOutput? Type338 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type339 { get; set; } + public global::G.StripeCustomerBillingInfo? Type339 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type340 { get; set; } + public global::G.StripePaymentInformation? Type340 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type341 { get; set; } + public global::G.StripeSetupIntentResponse? Type341 { get; set; } /// /// /// - public global::G.RunRulesPagerdutyAlertSchema? Type342 { get; set; } + public global::G.TTLSettings? Type342 { get; set; } /// /// /// - public global::G.AnyOf? Type343 { get; set; } + public global::G.TagKey? Type343 { get; set; } /// /// /// - public global::G.AnyOf? Type344 { get; set; } + public global::G.TagKeyCreate? Type344 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type345 { get; set; } + public global::G.TagKeyUpdate? Type345 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type346 { get; set; } + public global::G.TagKeyWithValues? Type346 { get; set; } /// /// /// - public global::G.RunRulesWebhookSchema? Type347 { get; set; } + public global::System.Collections.Generic.IList? Type347 { get; set; } /// /// /// - public global::G.RunRulesSchema? Type348 { get; set; } + public global::G.TagValue? Type348 { get; set; } /// /// /// - public global::G.RunSchemaWithAnnotationQueueInfo? Type349 { get; set; } + public global::G.TagKeyWithValuesAndTaggings? Type349 { get; set; } /// /// /// - public global::G.RunShareSchema? Type350 { get; set; } + public global::System.Collections.Generic.IList? Type350 { get; set; } /// /// /// - public global::G.RunStats? Type351 { get; set; } + public global::G.TagValueWithTaggings? Type351 { get; set; } /// /// /// - public global::G.SSOConfirmEmailRequest? Type352 { get; set; } + public global::System.Collections.Generic.IList? Type352 { get; set; } /// /// /// - public global::G.SSOEmailVerificationSendRequest? Type353 { get; set; } + public global::G.Tagging? Type353 { get; set; } /// /// /// - public global::G.SSOEmailVerificationStatusRequest? Type354 { get; set; } + public global::G.TagValueCreate? Type354 { get; set; } /// /// /// - public global::G.SSOEmailVerificationStatusResponse? Type355 { get; set; } + public global::G.TagValueUpdate? Type355 { get; set; } /// /// /// - public global::G.SSOProvider? Type356 { get; set; } + public global::G.TaggingCreate? Type356 { get; set; } /// /// /// - public global::G.SSOProviderSlim? Type357 { get; set; } + public global::G.TaggingsByResourceType? Type357 { get; set; } /// /// /// - public global::G.SSOSettingsCreate? Type358 { get; set; } + public global::System.Collections.Generic.IList? Type358 { get; set; } /// /// /// - public global::G.SSOSettingsUpdate? Type359 { get; set; } + public global::G.TaggingsResponse? Type359 { get; set; } /// /// /// - public global::G.SearchDatasetRequest? Type360 { get; set; } + public global::G.TenantBulkUnshareRequest? Type360 { get; set; } /// /// /// - public global::G.SearchDatasetResponse? Type361 { get; set; } + public global::G.TenantCreate? Type361 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type362 { get; set; } + public global::G.TenantForUser? Type362 { get; set; } /// /// /// - public global::G.SearchedFewShotExample? Type363 { get; set; } + public global::G.TenantMembers? Type363 { get; set; } /// /// /// - public global::G.SecretKey? Type364 { get; set; } + public global::System.Collections.Generic.IList? Type364 { get; set; } /// /// /// - public global::G.SecretUpsert? Type365 { get; set; } + public global::System.Collections.Generic.IList? Type365 { get; set; } /// /// /// - public global::G.ServiceAccount? Type366 { get; set; } + public global::G.TenantShareDatasetToken? Type366 { get; set; } /// /// /// - public global::G.ServiceAccountCreateRequest? Type367 { get; set; } + public global::G.TenantShareDatasetTokenType? Type367 { get; set; } /// /// /// - public global::G.ServiceAccountCreateResponse? Type368 { get; set; } + public global::G.TenantShareRunToken? Type368 { get; set; } /// /// /// - public global::G.ServiceAccountDeleteResponse? Type369 { get; set; } + public global::G.TenantShareRunTokenType? Type369 { get; set; } /// /// /// - public global::G.SessionFeedbackDelta? Type370 { get; set; } + public global::G.TenantShareTokensResponse? Type370 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type371 { get; set; } + public global::System.Collections.Generic.IList>? Type371 { get; set; } /// /// /// - public global::G.SessionSortableColumns? Type372 { get; set; } + public global::G.OneOf? Type372 { get; set; } /// /// /// - public global::G.SetTenantHandleRequest? Type373 { get; set; } + public global::G.TenantStats? Type373 { get; set; } /// /// /// - public global::G.SingleCustomChartResponseBase? Type374 { get; set; } + public global::G.TenantUsageLimitInfo? Type374 { get; set; } /// /// /// - public global::G.SortByComparativeExperimentColumn? Type375 { get; set; } + public global::G.TenantUsageLimitType? Type375 { get; set; } /// /// /// - public global::G.SortByDatasetColumn? Type376 { get; set; } + public global::G.TracerSessionCreate? Type376 { get; set; } /// /// /// - public global::G.SourceType? Type377 { get; set; } + public global::G.TracerSessionUpdate? Type377 { get; set; } /// /// /// - public global::G.StripeBusinessBillingInfo? Type378 { get; set; } + public global::G.TracerSessionWithoutVirtualFields? Type378 { get; set; } /// /// /// - public global::G.AnyOf? Type379 { get; set; } + public global::G.TriggerRulesRequest? Type379 { get; set; } /// /// /// - public global::G.StripeCustomerAddress? Type380 { get; set; } + public global::G.UpdateFeedbackConfigSchema? Type380 { get; set; } /// /// /// - public global::G.StripeBusinessInfoInput? Type381 { get; set; } + public global::G.UpdateRepoRequest? Type381 { get; set; } /// /// /// - public global::G.AnyOf? Type382 { get; set; } + public global::G.UpdateRoleRequest? Type382 { get; set; } /// /// /// - public global::G.AnyOf? Type383 { get; set; } + public global::G.UpsertTTLSettingsRequest? Type383 { get; set; } /// /// /// - public global::G.StripeTaxId? Type384 { get; set; } + public global::G.UpsertUsageLimit? Type384 { get; set; } /// /// /// - public global::G.StripeBusinessInfoOutput? Type385 { get; set; } + public global::G.UsageLimitType? Type385 { get; set; } /// /// /// - public global::G.StripeCustomerBillingInfo? Type386 { get; set; } + public global::G.UsageLimit? Type386 { get; set; } /// /// /// - public global::G.StripePaymentInformation? Type387 { get; set; } + public global::G.UserWithPassword? Type387 { get; set; } /// /// /// - public global::G.StripeSetupIntentResponse? Type388 { get; set; } + public global::G.WorkspaceCreate? Type388 { get; set; } /// /// /// - public global::G.TTLSettings? Type389 { get; set; } + public global::G.WorkspacePatch? Type389 { get; set; } /// /// /// - public global::G.TagKey? Type390 { get; set; } + public global::G.AppHubCrudTenantsTenant? Type390 { get; set; } /// /// /// - public global::G.TagKeyCreate? Type391 { get; set; } + public global::G.AppSchemasTenant? Type391 { get; set; } /// /// /// - public global::G.TagKeyUpdate? Type392 { get; set; } + public global::G.CreateRunRequest? Type392 { get; set; } /// /// /// - public global::G.TagKeyWithValues? Type393 { get; set; } + public global::G.CreateRunRequestRunType? Type393 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type394 { get; set; } + public global::G.OneOf? Type394 { get; set; } /// /// /// - public global::G.TagValue? Type395 { get; set; } + public global::G.BatchIngestRunsRequest? Type395 { get; set; } /// /// /// - public global::G.TagKeyWithValuesAndTaggings? Type396 { get; set; } + public global::System.Collections.Generic.IList? Type396 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type397 { get; set; } + public global::G.BatchIngestRunsRequestPostItem? Type397 { get; set; } /// /// /// - public global::G.TagValueWithTaggings? Type398 { get; set; } + public global::G.BatchIngestRunsRequestPostItemRunType? Type398 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type399 { get; set; } + public global::System.Collections.Generic.IList? Type399 { get; set; } /// /// /// - public global::G.Tagging? Type400 { get; set; } + public global::G.BatchIngestRunsRequestPatchItem? Type400 { get; set; } /// /// /// - public global::G.TagValueCreate? Type401 { get; set; } + public global::G.UpdateRunRequest? Type401 { get; set; } /// /// /// - public global::G.TagValueUpdate? Type402 { get; set; } + public global::System.Collections.Generic.IList? Type402 { get; set; } /// /// /// - public global::G.TaggingCreate? Type403 { get; set; } + public global::System.Collections.Generic.IList? Type403 { get; set; } /// /// /// - public global::G.TaggingsByResourceType? Type404 { get; set; } + public global::System.Collections.Generic.IList? Type404 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type405 { get; set; } + public global::System.Collections.Generic.IList? Type405 { get; set; } /// /// /// - public global::G.TaggingsResponse? Type406 { get; set; } + public global::G.AnyOf>? Type406 { get; set; } /// /// /// - public global::G.TenantBulkUnshareRequest? Type407 { get; set; } + public global::System.Collections.Generic.IList? Type407 { get; set; } /// /// /// - public global::G.TenantCreate? Type408 { get; set; } + public global::System.Collections.Generic.IList? Type408 { get; set; } /// /// /// - public global::G.TenantForUser? Type409 { get; set; } + public global::System.Collections.Generic.IList? Type409 { get; set; } /// /// /// - public global::G.TenantMembers? Type410 { get; set; } + public global::G.AnyOf, global::G.DataType?>? Type410 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type411 { get; set; } + public global::System.Collections.Generic.IList? Type411 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type412 { get; set; } + public global::G.ListRulesApiV1RunsRulesGetType? Type412 { get; set; } /// /// /// - public global::G.TenantShareDatasetToken? Type413 { get; set; } + public global::System.Collections.Generic.IList? Type413 { get; set; } /// /// /// - public global::G.TenantShareDatasetTokenType? Type414 { get; set; } + public global::G.ListReposApiV1ReposGetIsArchived? Type414 { get; set; } /// /// /// - public global::G.TenantShareRunToken? Type415 { get; set; } + public global::G.ListReposApiV1ReposGetIsPublic? Type415 { get; set; } /// /// /// - public global::G.TenantShareRunTokenType? Type416 { get; set; } + public global::G.AnyOf? Type416 { get; set; } /// /// /// - public global::G.TenantShareTokensResponse? Type417 { get; set; } + public global::G.ListReposApiV1ReposGetSortDirectionVariant1? Type417 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type418 { get; set; } + public global::G.ListReposApiV1ReposGetSortDirectionVariant2? Type418 { get; set; } /// /// /// - public global::G.OneOf? Type419 { get; set; } + public global::G.ListRepoTagsApiV1ReposTagsGetIsArchived? Type419 { get; set; } /// /// /// - public global::G.TenantStats? Type420 { get; set; } + public global::G.ListRepoTagsApiV1ReposTagsGetIsPublic? Type420 { get; set; } /// /// /// - public global::G.TenantUsageLimitInfo? Type421 { get; set; } + public global::G.DeleteTracerSessionApiV1SessionsSessionIdDeleteResponse? Type421 { get; set; } /// /// /// - public global::G.AnyOf? Type422 { get; set; } + public global::System.Collections.Generic.IList? Type422 { get; set; } /// /// /// - public global::G.TenantUsageLimitType? Type423 { get; set; } + public global::G.DeleteTracerSessionsApiV1SessionsDeleteResponse? Type423 { get; set; } /// /// /// - public global::G.TracerSessionCreate? Type424 { get; set; } + public global::System.Collections.Generic.IList? Type424 { get; set; } /// /// /// - public global::G.TracerSessionUpdate? Type425 { get; set; } + public global::G.DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteResponse? Type425 { get; set; } /// /// /// - public global::G.TracerSessionWithoutVirtualFields? Type426 { get; set; } + public global::System.Collections.Generic.IList? Type426 { get; set; } /// /// /// - public global::G.TriggerRulesRequest? Type427 { get; set; } + public global::G.OnPaymentMethodCreatedApiV1OrgsCurrentPaymentMethodPostResponse? Type427 { get; set; } /// /// /// - public global::G.UpdateFeedbackConfigSchema? Type428 { get; set; } + public global::G.SetCompanyInfoApiV1OrgsCurrentBusinessInfoPostResponse? Type428 { get; set; } /// /// /// - public global::G.UpdateRepoRequest? Type429 { get; set; } + public global::G.ChangePaymentPlanApiV1OrgsCurrentPlanPostResponse? Type429 { get; set; } /// /// /// - public global::G.UpdateRoleRequest? Type430 { get; set; } + public global::System.Collections.Generic.IList? Type430 { get; set; } /// /// /// - public global::G.UpsertTTLSettingsRequest? Type431 { get; set; } + public global::System.Collections.Generic.IList? Type431 { get; set; } /// /// /// - public global::G.UpsertUsageLimit? Type432 { get; set; } + public global::System.Collections.Generic.IList? Type432 { get; set; } /// /// /// - public global::G.UsageLimitType2? Type433 { get; set; } + public global::G.DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteResponse? Type433 { get; set; } /// /// /// - public global::G.UsageLimit? Type434 { get; set; } + public global::G.DeletePendingOrganizationInviteApiV1OrgsPendingOrganizationIdDeleteResponse? Type434 { get; set; } /// /// /// - public global::G.UserWithPassword? Type435 { get; set; } + public global::G.RemoveMemberFromCurrentOrgApiV1OrgsCurrentMembersIdentityIdDeleteResponse? Type435 { get; set; } /// /// /// - public global::G.WorkspaceCreate? Type436 { get; set; } + public global::G.UpdateCurrentOrgMemberApiV1OrgsCurrentMembersIdentityIdPatchResponse? Type436 { get; set; } /// /// /// - public global::G.WorkspacePatch? Type437 { get; set; } + public global::G.UpdateCurrentUserApiV1OrgsMembersBasicPatchResponse? Type437 { get; set; } /// /// /// - public global::G.AppHubCrudTenantsTenant? Type438 { get; set; } + public global::System.Collections.Generic.IList? Type438 { get; set; } /// /// /// - public global::G.AppSchemasTenant? Type439 { get; set; } + public global::System.Collections.Generic.IList? Type439 { get; set; } /// /// /// - public global::G.CreateRunRequest? Type440 { get; set; } + public global::System.Collections.Generic.IList? Type440 { get; set; } /// /// /// - public global::G.OneOf? Type441 { get; set; } + public global::G.OauthProviderLogoutApiV1OauthProviderLogoutGetResponse? Type441 { get; set; } /// /// /// - public global::G.CreateRunRequestRunType? Type442 { get; set; } + public global::G.OauthProviderAuthApiV1OauthProviderGetResponse? Type442 { get; set; } /// /// /// - public global::G.OneOf? Type443 { get; set; } + public global::System.Collections.Generic.IList? Type443 { get; set; } /// /// /// - public global::G.OneOf? Type444 { get; set; } + public global::System.Collections.Generic.IList? Type444 { get; set; } /// /// /// - public global::G.OneOf? Type445 { get; set; } + public global::G.UpdateExampleApiV1ExamplesExampleIdPatchResponse? Type445 { get; set; } /// /// /// - public global::G.OneOf, object>? Type446 { get; set; } + public global::G.DeleteExampleApiV1ExamplesExampleIdDeleteResponse? Type446 { get; set; } /// /// /// - public global::G.OneOf, object>? Type447 { get; set; } + public global::System.Collections.Generic.IList? Type447 { get; set; } /// /// /// - public global::G.BatchIngestRunsRequest? Type448 { get; set; } + public global::G.DeleteExamplesApiV1ExamplesDeleteResponse? Type448 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type449 { get; set; } + public global::G.UpdateExamplesApiV1ExamplesBulkPatchResponse? Type449 { get; set; } /// /// /// - public global::G.BatchIngestRunsRequestPostItem? Type450 { get; set; } + public global::G.DeleteDatasetApiV1DatasetsDatasetIdDeleteResponse? Type450 { get; set; } /// /// /// - public global::G.BatchIngestRunsRequestPostItemRunType? Type451 { get; set; } + public global::System.Collections.Generic.IList? Type451 { get; set; } /// /// /// - public global::G.OneOf? Type452 { get; set; } + public global::System.Collections.Generic.IList? Type452 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type453 { get; set; } + public global::G.DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetResponse? Type453 { get; set; } /// /// /// - public global::G.BatchIngestRunsRequestPatchItem? Type454 { get; set; } + public global::G.DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetResponse? Type454 { get; set; } /// /// /// - public global::G.UpdateRunRequest? Type455 { get; set; } + public global::G.DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetResponse? Type455 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type456 { get; set; } + public global::G.AnyOf, global::System.Collections.Generic.IList>? Type456 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type457 { get; set; } + public global::System.Collections.Generic.IList? Type457 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type458 { get; set; } + public global::System.Collections.Generic.IList? Type458 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type459 { get; set; } + public global::G.UnshareDatasetApiV1DatasetsDatasetIdShareDeleteResponse? Type459 { get; set; } /// /// /// - public global::G.AnyOf>? Type460 { get; set; } + public global::System.Collections.Generic.IList? Type460 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type461 { get; set; } + public global::G.DeleteComparativeExperimentApiV1DatasetsComparativeComparativeExperimentIdDeleteResponse? Type461 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type462 { get; set; } + public global::G.IndexApiV1DatasetsDatasetIdIndexPostResponse? Type462 { get; set; } /// /// /// - public global::G.AnyOf? Type463 { get; set; } + public global::G.RemoveIndexApiV1DatasetsDatasetIdIndexDeleteResponse? Type463 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type464 { get; set; } + public global::G.GenerateApiV1DatasetsDatasetIdGeneratePostResponse? Type464 { get; set; } /// /// /// - public global::G.AnyOf, global::G.DataType?, object>? Type465 { get; set; } + public global::G.DatasetHandlerApiV1DatasetsPlaygroundExperimentBatchPostResponse? Type465 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type466 { get; set; } + public global::G.StreamDatasetHandlerApiV1DatasetsPlaygroundExperimentStreamPostResponse? Type466 { get; set; } /// /// /// - public global::G.AnyOf? Type467 { get; set; } + public global::System.Collections.Generic.IList? Type467 { get; set; } /// /// /// - public global::G.ListRulesApiV1RunsRulesGetType2? Type468 { get; set; } + public global::G.DeleteRuleApiV1RunsRulesRuleIdDeleteResponse? Type468 { get; set; } /// /// /// - public global::G.AnyOf, object>? Type469 { get; set; } + public global::System.Collections.Generic.IList? Type469 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type470 { get; set; } + public global::G.TriggerRulesApiV1RunsRulesTriggerPostResponse? Type470 { get; set; } /// /// /// - public global::G.AnyOf? Type471 { get; set; } + public global::G.UpdateRunApiV1RunsRunIdPatchResponse? Type471 { get; set; } /// /// /// - public global::G.AnyOf? Type472 { get; set; } + public global::G.UnshareRunApiV1RunsRunIdShareDeleteResponse? Type472 { get; set; } /// /// /// - public global::G.ListReposApiV1ReposGetIsArchived2? Type473 { get; set; } + public global::G.CreateRunApiV1RunsPostResponse? Type473 { get; set; } /// /// /// - public global::G.AnyOf? Type474 { get; set; } + public global::G.BatchIngestRunsApiV1RunsBatchPostResponse? Type474 { get; set; } /// /// /// - public global::G.ListReposApiV1ReposGetIsPublic2? Type475 { get; set; } + public global::G.MultipartIngestRunsApiV1RunsMultipartPostResponse? Type475 { get; set; } /// /// /// - public global::G.AnyOf? Type476 { get; set; } + public global::G.GroupRunsApiV1RunsGroupPostResponse? Type476 { get; set; } /// /// /// - public global::G.ListReposApiV1ReposGetSortDirectionVariant1? Type477 { get; set; } + public global::G.DeleteFeedbackApiV1FeedbackFeedbackIdDeleteResponse? Type477 { get; set; } /// /// /// - public global::G.ListReposApiV1ReposGetSortDirectionVariant2? Type478 { get; set; } + public global::System.Collections.Generic.IList? Type478 { get; set; } /// /// /// - public global::G.AnyOf? Type479 { get; set; } + public global::G.AnyOf>? Type479 { get; set; } /// /// /// - public global::G.ListRepoTagsApiV1ReposTagsGetIsArchived2? Type480 { get; set; } + public global::System.Collections.Generic.IList? Type480 { get; set; } /// /// /// - public global::G.AnyOf? Type481 { get; set; } + public global::G.CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetResponse? Type481 { get; set; } /// /// /// - public global::G.ListRepoTagsApiV1ReposTagsGetIsPublic2? Type482 { get; set; } + public global::G.CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostResponse? Type482 { get; set; } /// /// /// - public global::G.DeleteTracerSessionApiV1SessionsSessionIdDeleteResponse? Type483 { get; set; } + public global::G.AnyOf, global::System.Collections.Generic.IList>? Type483 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type484 { get; set; } + public global::System.Collections.Generic.IList? Type484 { get; set; } /// /// /// - public global::G.DeleteTracerSessionsApiV1SessionsDeleteResponse? Type485 { get; set; } + public global::System.Collections.Generic.IList? Type485 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type486 { get; set; } + public global::System.Collections.Generic.IList? Type486 { get; set; } /// /// /// - public global::G.DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteResponse? Type487 { get; set; } + public global::G.DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteResponse? Type487 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type488 { get; set; } + public global::G.UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchResponse? Type488 { get; set; } /// /// /// - public global::G.OnPaymentMethodCreatedApiV1OrgsCurrentPaymentMethodPostResponse? Type489 { get; set; } + public global::System.Collections.Generic.IList? Type489 { get; set; } /// /// /// - public global::G.SetCompanyInfoApiV1OrgsCurrentBusinessInfoPostResponse? Type490 { get; set; } + public global::System.Collections.Generic.IList? Type490 { get; set; } /// /// /// - public global::G.ChangePaymentPlanApiV1OrgsCurrentPlanPostResponse? Type491 { get; set; } + public global::G.UpdateRunInAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdPatchResponse? Type491 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type492 { get; set; } + public global::G.DeleteRunFromAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdDeleteResponse? Type492 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type493 { get; set; } + public global::G.CreateIdentityAnnotationQueueRunStatusApiV1AnnotationQueuesStatusAnnotationQueueRunIdPostResponse? Type493 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type494 { get; set; } + public global::System.Collections.Generic.IList? Type494 { get; set; } /// /// /// - public global::G.DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteResponse? Type495 { get; set; } + public global::System.Collections.Generic.IList? Type495 { get; set; } /// /// /// - public global::G.DeletePendingOrganizationInviteApiV1OrgsPendingOrganizationIdDeleteResponse? Type496 { get; set; } + public global::System.Collections.Generic.IList? Type496 { get; set; } /// /// /// - public global::G.RemoveMemberFromCurrentOrgApiV1OrgsCurrentMembersIdentityIdDeleteResponse? Type497 { get; set; } + public global::System.Collections.Generic.IList? Type497 { get; set; } /// /// /// - public global::G.UpdateCurrentOrgMemberApiV1OrgsCurrentMembersIdentityIdPatchResponse? Type498 { get; set; } + public global::System.Collections.Generic.IList? Type498 { get; set; } /// /// /// - public global::G.UpdateCurrentUserApiV1OrgsMembersBasicPatchResponse? Type499 { get; set; } + public global::G.DeletePendingTenantInviteApiV1TenantsPendingIdDeleteResponse? Type499 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type500 { get; set; } + public global::G.ClaimPendingTenantInviteApiV1TenantsPendingTenantIdClaimPostResponse? Type500 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type501 { get; set; } + public global::G.BulkUnshareEntitiesApiV1TenantsCurrentSharedDeleteResponse? Type501 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type502 { get; set; } + public global::G.DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteResponse? Type502 { get; set; } /// /// /// - public global::G.OauthProviderLogoutApiV1OauthProviderLogoutGetResponse? Type503 { get; set; } + public global::G.PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchResponse? Type503 { get; set; } /// /// /// - public global::G.OauthProviderAuthApiV1OauthProviderGetResponse? Type504 { get; set; } + public global::G.DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteResponse? Type504 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type505 { get; set; } + public global::System.Collections.Generic.IList? Type505 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type506 { get; set; } + public global::G.UpsertCurrentTenantSecretsApiV1TenantsCurrentSecretsPostResponse? Type506 { get; set; } /// /// /// - public global::G.UpdateExampleApiV1ExamplesExampleIdPatchResponse? Type507 { get; set; } + public global::System.Collections.Generic.IList? Type507 { get; set; } /// /// /// - public global::G.DeleteExampleApiV1ExamplesExampleIdDeleteResponse? Type508 { get; set; } + public global::G.ReadModelPriceMapApiV1ModelPriceMapGetResponse? Type508 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type509 { get; set; } + public global::G.CreateNewModelPriceApiV1ModelPriceMapPostResponse? Type509 { get; set; } /// /// /// - public global::G.DeleteExamplesApiV1ExamplesDeleteResponse? Type510 { get; set; } + public global::G.UpdateModelPriceApiV1ModelPriceMapIdPutResponse? Type510 { get; set; } /// /// /// - public global::G.UpdateExamplesApiV1ExamplesBulkPatchResponse? Type511 { get; set; } + public global::G.DeleteModelPriceApiV1ModelPriceMapIdDeleteResponse? Type511 { get; set; } /// /// /// - public global::G.DeleteDatasetApiV1DatasetsDatasetIdDeleteResponse? Type512 { get; set; } + public global::System.Collections.Generic.IList? Type512 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type513 { get; set; } + public global::G.DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteResponse? Type513 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type514 { get; set; } + public global::G.InvokePromptApiV1PromptsInvokePromptPostResponse? Type514 { get; set; } /// /// /// - public global::G.DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetResponse? Type515 { get; set; } + public global::G.DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteResponse? Type515 { get; set; } /// /// /// - public global::G.DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetResponse? Type516 { get; set; } + public global::G.ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostResponse? Type516 { get; set; } /// /// /// - public global::G.DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetResponse? Type517 { get; set; } + public global::G.BulkUnshareEntitiesApiV1WorkspacesCurrentSharedDeleteResponse? Type517 { get; set; } /// /// /// - public global::G.AnyOf, global::System.Collections.Generic.IList>? Type518 { get; set; } + public global::G.DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteResponse? Type518 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type519 { get; set; } + public global::G.PatchCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdPatchResponse? Type519 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type520 { get; set; } + public global::G.DeleteCurrentWorkspacePendingMemberApiV1WorkspacesCurrentMembersIdentityIdPendingDeleteResponse? Type520 { get; set; } /// /// /// - public global::G.AnyOf? Type521 { get; set; } + public global::G.UpsertCurrentWorkspaceSecretsApiV1WorkspacesCurrentSecretsPostResponse? Type521 { get; set; } /// /// /// - public global::G.UnshareDatasetApiV1DatasetsDatasetIdShareDeleteResponse? Type522 { get; set; } + public global::System.Collections.Generic.IList? Type522 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type523 { get; set; } + public global::G.DeleteTagKeyApiV1WorkspacesCurrentTagKeysTagKeyIdDeleteResponse? Type523 { get; set; } /// /// /// - public global::G.DeleteComparativeExperimentApiV1DatasetsComparativeComparativeExperimentIdDeleteResponse? Type524 { get; set; } + public global::G.DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteResponse? Type524 { get; set; } /// /// /// - public global::G.IndexApiV1DatasetsDatasetIdIndexPostResponse? Type525 { get; set; } + public global::System.Collections.Generic.IList? Type525 { get; set; } /// /// /// - public global::G.RemoveIndexApiV1DatasetsDatasetIdIndexDeleteResponse? Type526 { get; set; } + public global::G.DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteResponse? Type526 { get; set; } /// /// /// - public global::G.GenerateApiV1DatasetsDatasetIdGeneratePostResponse? Type527 { get; set; } + public global::System.Collections.Generic.IList? Type527 { get; set; } /// /// /// - public global::G.DatasetHandlerApiV1DatasetsPlaygroundExperimentBatchPostResponse? Type528 { get; set; } + public global::System.Collections.Generic.IList? Type528 { get; set; } /// /// /// - public global::G.StreamDatasetHandlerApiV1DatasetsPlaygroundExperimentStreamPostResponse? Type529 { get; set; } + public global::System.Collections.Generic.IList? Type529 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type530 { get; set; } + public global::G.DeletePlaygroundSettingsApiV1PlaygroundSettingsPlaygroundSettingsIdDeleteResponse? Type530 { get; set; } /// /// /// - public global::G.DeleteRuleApiV1RunsRulesRuleIdDeleteResponse? Type531 { get; set; } + public global::System.Collections.Generic.IList? Type531 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type532 { get; set; } + public global::System.Collections.Generic.IList? Type532 { get; set; } /// /// /// - public global::G.TriggerRulesApiV1RunsRulesTriggerPostResponse? Type533 { get; set; } + public global::G.DeleteChartApiV1ChartsChartIdDeleteResponse? Type533 { get; set; } /// /// /// - public global::G.UpdateRunApiV1RunsRunIdPatchResponse? Type534 { get; set; } + public global::G.DeleteSectionApiV1ChartsSectionSectionIdDeleteResponse? Type534 { get; set; } /// /// /// - public global::G.AnyOf? Type535 { get; set; } + public global::G.OkApiV1OkGetResponse? Type535 { get; set; } /// /// /// - public global::G.UnshareRunApiV1RunsRunIdShareDeleteResponse? Type536 { get; set; } + public global::G.DeleteRepoApiV1ReposOwnerRepoDeleteResponse? Type536 { get; set; } /// /// /// - public global::G.CreateRunApiV1RunsPostResponse? Type537 { get; set; } + public global::G.CreateEventApiV1EventsPostResponse? Type537 { get; set; } /// /// /// - public global::G.BatchIngestRunsApiV1RunsBatchPostResponse? Type538 { get; set; } - /// - /// - /// - public global::G.MultipartIngestRunsApiV1RunsMultipartPostResponse? Type539 { get; set; } - /// - /// - /// - public global::G.GroupRunsApiV1RunsGroupPostResponse? Type540 { get; set; } - /// - /// - /// - public global::G.DeleteFeedbackApiV1FeedbackFeedbackIdDeleteResponse? Type541 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type542 { get; set; } - /// - /// - /// - public global::G.AnyOf>? Type543 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type544 { get; set; } - /// - /// - /// - public global::G.CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetResponse? Type545 { get; set; } - /// - /// - /// - public global::G.CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostResponse? Type546 { get; set; } - /// - /// - /// - public global::G.AnyOf, global::System.Collections.Generic.IList>? Type547 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type548 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type549 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type550 { get; set; } - /// - /// - /// - public global::G.DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteResponse? Type551 { get; set; } - /// - /// - /// - public global::G.UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchResponse? Type552 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type553 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type554 { get; set; } - /// - /// - /// - public global::G.UpdateRunInAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdPatchResponse? Type555 { get; set; } - /// - /// - /// - public global::G.DeleteRunFromAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdDeleteResponse? Type556 { get; set; } - /// - /// - /// - public global::G.CreateIdentityAnnotationQueueRunStatusApiV1AnnotationQueuesStatusAnnotationQueueRunIdPostResponse? Type557 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type558 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type559 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type560 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type561 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type562 { get; set; } - /// - /// - /// - public global::G.DeletePendingTenantInviteApiV1TenantsPendingIdDeleteResponse? Type563 { get; set; } - /// - /// - /// - public global::G.ClaimPendingTenantInviteApiV1TenantsPendingTenantIdClaimPostResponse? Type564 { get; set; } - /// - /// - /// - public global::G.BulkUnshareEntitiesApiV1TenantsCurrentSharedDeleteResponse? Type565 { get; set; } - /// - /// - /// - public global::G.DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteResponse? Type566 { get; set; } - /// - /// - /// - public global::G.PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchResponse? Type567 { get; set; } - /// - /// - /// - public global::G.DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteResponse? Type568 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type569 { get; set; } - /// - /// - /// - public global::G.UpsertCurrentTenantSecretsApiV1TenantsCurrentSecretsPostResponse? Type570 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type571 { get; set; } - /// - /// - /// - public global::G.ReadModelPriceMapApiV1ModelPriceMapGetResponse? Type572 { get; set; } - /// - /// - /// - public global::G.CreateNewModelPriceApiV1ModelPriceMapPostResponse? Type573 { get; set; } - /// - /// - /// - public global::G.UpdateModelPriceApiV1ModelPriceMapIdPutResponse? Type574 { get; set; } - /// - /// - /// - public global::G.DeleteModelPriceApiV1ModelPriceMapIdDeleteResponse? Type575 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type576 { get; set; } - /// - /// - /// - public global::G.DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteResponse? Type577 { get; set; } - /// - /// - /// - public global::G.InvokePromptApiV1PromptsInvokePromptPostResponse? Type578 { get; set; } - /// - /// - /// - public global::G.DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteResponse? Type579 { get; set; } - /// - /// - /// - public global::G.ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostResponse? Type580 { get; set; } - /// - /// - /// - public global::G.BulkUnshareEntitiesApiV1WorkspacesCurrentSharedDeleteResponse? Type581 { get; set; } - /// - /// - /// - public global::G.DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteResponse? Type582 { get; set; } - /// - /// - /// - public global::G.PatchCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdPatchResponse? Type583 { get; set; } - /// - /// - /// - public global::G.DeleteCurrentWorkspacePendingMemberApiV1WorkspacesCurrentMembersIdentityIdPendingDeleteResponse? Type584 { get; set; } - /// - /// - /// - public global::G.UpsertCurrentWorkspaceSecretsApiV1WorkspacesCurrentSecretsPostResponse? Type585 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type586 { get; set; } - /// - /// - /// - public global::G.DeleteTagKeyApiV1WorkspacesCurrentTagKeysTagKeyIdDeleteResponse? Type587 { get; set; } - /// - /// - /// - public global::G.DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteResponse? Type588 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type589 { get; set; } - /// - /// - /// - public global::G.DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteResponse? Type590 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type591 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type592 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type593 { get; set; } - /// - /// - /// - public global::G.DeletePlaygroundSettingsApiV1PlaygroundSettingsPlaygroundSettingsIdDeleteResponse? Type594 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type595 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type596 { get; set; } - /// - /// - /// - public global::G.DeleteChartApiV1ChartsChartIdDeleteResponse? Type597 { get; set; } - /// - /// - /// - public global::G.DeleteSectionApiV1ChartsSectionSectionIdDeleteResponse? Type598 { get; set; } - /// - /// - /// - public global::G.OkApiV1OkGetResponse? Type599 { get; set; } - /// - /// - /// - public global::G.DeleteRepoApiV1ReposOwnerRepoDeleteResponse? Type600 { get; set; } - /// - /// - /// - public global::G.CreateEventApiV1EventsPostResponse? Type601 { get; set; } - /// - /// - /// - public global::G.CreateCommentApiV1CommentsOwnerRepoPostResponse? Type602 { get; set; } + public global::G.CreateCommentApiV1CommentsOwnerRepoPostResponse? Type538 { get; set; } } } \ No newline at end of file diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.3.g.verified.cs deleted file mode 100644 index 9635fabd2e..0000000000 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.3.g.verified.cs +++ /dev/null @@ -1,265 +0,0 @@ -//HintName: OneOf.3.g.cs -using System.Linq; - -#nullable enable - -namespace G -{ - /// - /// - /// - public readonly partial struct OneOf : global::System.IEquatable> - { - /// - /// - /// -#if NET6_0_OR_GREATER - public T1? Value1 { get; init; } -#else - public T1? Value1 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))] -#endif - public bool IsValue1 => Value1 != null; - - /// - /// - /// - public static implicit operator OneOf(T1 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T1?(OneOf @this) => @this.Value1; - - /// - /// - /// - public OneOf(T1? value) - { - Value1 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T2? Value2 { get; init; } -#else - public T2? Value2 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))] -#endif - public bool IsValue2 => Value2 != null; - - /// - /// - /// - public static implicit operator OneOf(T2 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T2?(OneOf @this) => @this.Value2; - - /// - /// - /// - public OneOf(T2? value) - { - Value2 = value; - } - - /// - /// - /// -#if NET6_0_OR_GREATER - public T3? Value3 { get; init; } -#else - public T3? Value3 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value3))] -#endif - public bool IsValue3 => Value3 != null; - - /// - /// - /// - public static implicit operator OneOf(T3 value) => new OneOf(value); - - /// - /// - /// - public static implicit operator T3?(OneOf @this) => @this.Value3; - - /// - /// - /// - public OneOf(T3? value) - { - Value3 = value; - } - - /// - /// - /// - public OneOf( - T1? value1, - T2? value2, - T3? value3 - ) - { - Value1 = value1; - Value2 = value2; - Value3 = value3; - } - - /// - /// - /// - public object? Object => - Value3 as object ?? - Value2 as object ?? - Value1 as object - ; - - /// - /// - /// - public bool Validate() - { - return IsValue1 && !IsValue2 && !IsValue3 || !IsValue1 && IsValue2 && !IsValue3 || !IsValue1 && !IsValue2 && IsValue3; - } - - /// - /// - /// - public TResult? Match( - global::System.Func? value1 = null, - global::System.Func? value2 = null, - global::System.Func? value3 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1 && value1 != null) - { - return value1(Value1!); - } - else if (IsValue2 && value2 != null) - { - return value2(Value2!); - } - else if (IsValue3 && value3 != null) - { - return value3(Value3!); - } - - return default(TResult); - } - - /// - /// - /// - public void Match( - global::System.Action? value1 = null, - global::System.Action? value2 = null, - global::System.Action? value3 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - else if (IsValue3) - { - value3?.Invoke(Value3!); - } - } - - /// - /// - /// - public override int GetHashCode() - { - var fields = new object?[] - { - Value1, - typeof(T1), - Value2, - typeof(T2), - Value3, - typeof(T3), - }; - const int offset = unchecked((int)2166136261); - const int prime = 16777619; - static int HashCodeAggregator(int hashCode, object? value) => value == null - ? (hashCode ^ 0) * prime - : (hashCode ^ value.GetHashCode()) * prime; - return fields.Aggregate(offset, HashCodeAggregator); - } - - /// - /// - /// - public bool Equals(OneOf other) - { - return - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value3, other.Value3) - ; - } - - /// - /// - /// - public static bool operator ==(OneOf obj1, OneOf obj2) - { - return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2); - } - - /// - /// - /// - public static bool operator !=(OneOf obj1, OneOf obj2) - { - return !(obj1 == obj2); - } - - /// - /// - /// - public override bool Equals(object? obj) - { - return obj is OneOf o && Equals(o); - } - } -} diff --git a/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/ResolvedSchemas/_.verified.txt b/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/ResolvedSchemas/_.verified.txt index 881465cc02..3c057be7e1 100644 --- a/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/ResolvedSchemas/_.verified.txt +++ b/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/ResolvedSchemas/_.verified.txt @@ -1,182 +1,102 @@ [ APIFeedbackSource(class)[feedback, datasets], Type(string)[feedback, datasets], - Metadata(anyOf)[feedback, datasets], - APIFeedbackSourceMetadata(class)[feedback, datasets], - MetadataVariant2(null)[feedback, datasets], + APIFeedbackSourceMetadata(class)[feedback, datasets], APIKeyCreateRequest(class)[api-key], Description(string)[api-key], ReadOnly(bool)[api-key], APIKeyCreateResponse(class)[api-key], - CreatedAt(anyOf)[api-key], - CreatedAtVariant1(DateTime)[api-key], - CreatedAtVariant2(null)[api-key], + CreatedAt(DateTime)[api-key], Id(string)[api-key], ShortKey(string)[api-key], Description(string)[api-key], ReadOnly(bool)[api-key], - LastUsedAt(anyOf)[api-key], - LastUsedAtVariant1(DateTime)[api-key], - LastUsedAtVariant2(null)[api-key], + LastUsedAt(DateTime)[api-key], Key(string)[api-key], APIKeyGetResponse(class)[api-key], - CreatedAt2(anyOf)[api-key], - CreatedAtVariant1(DateTime)[api-key], - CreatedAtVariant2(null)[api-key], + CreatedAt(DateTime)[api-key], Id(string)[api-key], ShortKey(string)[api-key], Description(string)[api-key], ReadOnly(bool)[api-key], - LastUsedAt2(anyOf)[api-key], - LastUsedAtVariant1(DateTime)[api-key], - LastUsedAtVariant2(null)[api-key], + LastUsedAt(DateTime)[api-key], AccessScope(enum)[orgs, tenant, workspaces], AllowedLoginMethodsUpdate(class)[orgs], SsoOnly(bool)[orgs], AnnotationQueueCreateSchema(class)[annotation-queues], Name(string)[annotation-queues], - Description(anyOf)[annotation-queues], - DescriptionVariant1(string)[annotation-queues], - DescriptionVariant2(null)[annotation-queues], + Description(string)[annotation-queues], CreatedAt(DateTime)[annotation-queues], UpdatedAt(DateTime)[annotation-queues], - DefaultDataset(anyOf)[annotation-queues], - DefaultDatasetVariant1(string)[annotation-queues], - DefaultDatasetVariant2(null)[annotation-queues], - NumReviewersPerItem(anyOf)[annotation-queues], - NumReviewersPerItemVariant1(int)[annotation-queues], - NumReviewersPerItemVariant2(null)[annotation-queues], + DefaultDataset(string)[annotation-queues], + NumReviewersPerItem(int)[annotation-queues], EnableReservations(bool)[annotation-queues], - EnableReservationsVariant1(bool)[annotation-queues], - EnableReservationsVariant2(null)[annotation-queues], - ReservationMinutes(anyOf)[annotation-queues], - ReservationMinutesVariant1(int)[annotation-queues], - ReservationMinutesVariant2(null)[annotation-queues], + ReservationMinutes(int)[annotation-queues], Id(string)[annotation-queues], AnnotationQueueRunSchema(class)[annotation-queues], RunId(string)[annotation-queues], QueueId(string)[annotation-queues], - LastReviewedTime(anyOf)[annotation-queues], - LastReviewedTimeVariant1(DateTime)[annotation-queues], - LastReviewedTimeVariant2(null)[annotation-queues], + LastReviewedTime(DateTime)[annotation-queues], AddedAt(DateTime)[annotation-queues], Id(string)[annotation-queues], AnnotationQueueRunUpdateSchema(class)[annotation-queues], - LastReviewedTime2(anyOf)[annotation-queues], - LastReviewedTimeVariant1(DateTime)[annotation-queues], - LastReviewedTimeVariant2(null)[annotation-queues], - AddedAt(anyOf)[annotation-queues], - AddedAtVariant1(DateTime)[annotation-queues], - AddedAtVariant2(null)[annotation-queues], + LastReviewedTime(DateTime)[annotation-queues], + AddedAt(DateTime)[annotation-queues], AnnotationQueueSchema(class)[annotation-queues], Name(string)[annotation-queues], - Description2(anyOf)[annotation-queues], - DescriptionVariant1(string)[annotation-queues], - DescriptionVariant2(null)[annotation-queues], + Description(string)[annotation-queues], CreatedAt(DateTime)[annotation-queues], UpdatedAt(DateTime)[annotation-queues], - DefaultDataset2(anyOf)[annotation-queues], - DefaultDatasetVariant1(string)[annotation-queues], - DefaultDatasetVariant2(null)[annotation-queues], - NumReviewersPerItem2(anyOf)[annotation-queues], - NumReviewersPerItemVariant1(int)[annotation-queues], - NumReviewersPerItemVariant2(null)[annotation-queues], - EnableReservations2(bool)[annotation-queues], - EnableReservationsVariant1(bool)[annotation-queues], - EnableReservationsVariant2(null)[annotation-queues], - ReservationMinutes2(anyOf)[annotation-queues], - ReservationMinutesVariant1(int)[annotation-queues], - ReservationMinutesVariant2(null)[annotation-queues], + DefaultDataset(string)[annotation-queues], + NumReviewersPerItem(int)[annotation-queues], + EnableReservations(bool)[annotation-queues], + ReservationMinutes(int)[annotation-queues], Id(string)[annotation-queues], TenantId(string)[annotation-queues], AnnotationQueueSchemaWithSize(class)[annotation-queues], Name(string)[annotation-queues], - Description3(anyOf)[annotation-queues], - DescriptionVariant1(string)[annotation-queues], - DescriptionVariant2(null)[annotation-queues], + Description(string)[annotation-queues], CreatedAt(DateTime)[annotation-queues], UpdatedAt(DateTime)[annotation-queues], - DefaultDataset3(anyOf)[annotation-queues], - DefaultDatasetVariant1(string)[annotation-queues], - DefaultDatasetVariant2(null)[annotation-queues], - NumReviewersPerItem3(anyOf)[annotation-queues], - NumReviewersPerItemVariant1(int)[annotation-queues], - NumReviewersPerItemVariant2(null)[annotation-queues], - EnableReservations3(bool)[annotation-queues], - EnableReservationsVariant1(bool)[annotation-queues], - EnableReservationsVariant2(null)[annotation-queues], - ReservationMinutes3(anyOf)[annotation-queues], - ReservationMinutesVariant1(int)[annotation-queues], - ReservationMinutesVariant2(null)[annotation-queues], + DefaultDataset(string)[annotation-queues], + NumReviewersPerItem(int)[annotation-queues], + EnableReservations(bool)[annotation-queues], + ReservationMinutes(int)[annotation-queues], Id(string)[annotation-queues], TenantId(string)[annotation-queues], TotalRuns(int)[annotation-queues], AnnotationQueueSizeSchema(class)[annotation-queues], Size(int)[annotation-queues], AnnotationQueueUpdateSchema(class)[annotation-queues], - Name(anyOf)[annotation-queues], - NameVariant1(string)[annotation-queues], - NameVariant2(null)[annotation-queues], - Description4(anyOf)[annotation-queues], - DescriptionVariant1(string)[annotation-queues], - DescriptionVariant2(null)[annotation-queues], - DefaultDataset4(anyOf)[annotation-queues], - DefaultDatasetVariant1(string)[annotation-queues], - DefaultDatasetVariant2(null)[annotation-queues], - NumReviewersPerItem4(anyOf)[annotation-queues], - NumReviewersPerItemVariant1(int)[annotation-queues], - NumReviewersPerItemVariant2(null)[annotation-queues], + Name(string)[annotation-queues], + Description(string)[annotation-queues], + DefaultDataset(string)[annotation-queues], + NumReviewersPerItem(int)[annotation-queues], EnableReservations(bool)[annotation-queues], - ReservationMinutes4(anyOf)[annotation-queues], - ReservationMinutesVariant1(int)[annotation-queues], - ReservationMinutesVariant2(null)[annotation-queues], + ReservationMinutes(int)[annotation-queues], AppFeedbackSource(class)[feedback, datasets], Type(string)[feedback, datasets], - Metadata2(anyOf)[feedback, datasets], - AppFeedbackSourceMetadata(class)[feedback, datasets], - MetadataVariant2(null)[feedback, datasets], + AppFeedbackSourceMetadata(class)[feedback, datasets], AuthProvider(enum)[orgs], AutoEvalFeedbackSource(class)[feedback, datasets], Type(string)[feedback, datasets], - Metadata3(anyOf)[feedback, datasets], - AutoEvalFeedbackSourceMetadata(class)[feedback, datasets], - MetadataVariant2(null)[feedback, datasets], + AutoEvalFeedbackSourceMetadata(class)[feedback, datasets], BasicAuthMemberCreate(class)[orgs], - UserId(anyOf)[orgs], - UserIdVariant1(string)[orgs], - UserIdVariant2(null)[orgs], - LsUserId(anyOf)[orgs], - LsUserIdVariant1(string)[orgs], - LsUserIdVariant2(null)[orgs], + UserId(string)[orgs], + LsUserId(string)[orgs], Email(string)[orgs], - ReadOnly(anyOf)[orgs], - ReadOnlyVariant1(bool)[orgs], - ReadOnlyVariant2(null)[orgs], - RoleId(anyOf)[orgs], - RoleIdVariant1(string)[orgs], - RoleIdVariant2(null)[orgs], - Password(anyOf)[orgs], - PasswordVariant1(string)[orgs], - PasswordVariant2(null)[orgs], - FullName(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], - WorkspaceRoleId(anyOf)[orgs], - WorkspaceRoleIdVariant1(string)[orgs], - WorkspaceRoleIdVariant2(null)[orgs], - WorkspaceIds(anyOf)[orgs], - WorkspaceIdsVariant1(array)[orgs], - WorkspaceIdsVariant1Item(string)[orgs], - WorkspaceIdsVariant2(null)[orgs], + ReadOnly(bool)[orgs], + RoleId(string)[orgs], + Password(string)[orgs], + FullName(string)[orgs], + WorkspaceRoleId(string)[orgs], + WorkspaceIds(array)[orgs], + WorkspaceIdsItem(string)[orgs], BasicAuthResponse(class)[auth], AccessToken(string)[auth], BasicAuthUserPatch(class)[orgs], - Password2(anyOf)[orgs], - PasswordVariant1(string)[orgs], - PasswordVariant2(null)[orgs], - FullName2(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], + Password(string)[orgs], + FullName(string)[orgs], BatchIngestConfig(class)[info], UseMultipartEndpoint(bool)[info], ScaleUpQsizeTrigger(int)[info], @@ -185,60 +105,26 @@ SizeLimit(int)[info], SizeLimitBytes(int)[info], BodyParamsForRunSchema(class)[run, public], - Id(anyOf)[run, public], - IdVariant1(array)[run, public], - IdVariant1Item(string)[run, public], - IdVariant2(null)[run, public], - Trace(anyOf)[run, public], - TraceVariant1(string)[run, public], - TraceVariant2(null)[run, public], - ParentRun(anyOf)[run, public], - ParentRunVariant1(string)[run, public], - ParentRunVariant2(null)[run, public], - RunType(anyOf)[run, public], - RunTypeEnum(ref)[run, public], - RunTypeVariant2(null)[run, public], - Session(anyOf)[run, public], - SessionVariant1(array)[run, public], - SessionVariant1Item(string)[run, public], - SessionVariant2(null)[run, public], - ReferenceExample(anyOf)[run, public], - ReferenceExampleVariant1(array)[run, public], - ReferenceExampleVariant1Item(string)[run, public], - ReferenceExampleVariant2(null)[run, public], - ExecutionOrder(anyOf)[run, public], - ExecutionOrderVariant1(int)[run, public], - ExecutionOrderVariant2(null)[run, public], - StartTime(anyOf)[run, public], - StartTimeVariant1(DateTime)[run, public], - StartTimeVariant2(null)[run, public], - EndTime(anyOf)[run, public], - EndTimeVariant1(DateTime)[run, public], - EndTimeVariant2(null)[run, public], - Error(anyOf)[run, public], - ErrorVariant1(bool)[run, public], - ErrorVariant2(null)[run, public], - Query(anyOf)[run, public], - QueryVariant1(string)[run, public], - QueryVariant2(null)[run, public], - Filter(anyOf)[run, public], - FilterVariant1(string)[run, public], - FilterVariant2(null)[run, public], - TraceFilter(anyOf)[run, public], - TraceFilterVariant1(string)[run, public], - TraceFilterVariant2(null)[run, public], - TreeFilter(anyOf)[run, public], - TreeFilterVariant1(string)[run, public], - TreeFilterVariant2(null)[run, public], - IsRoot(anyOf)[run, public], - IsRootVariant1(bool)[run, public], - IsRootVariant2(null)[run, public], - DataSourceType(anyOf)[run, public], - RunsFilterDataSourceTypeEnum(ref)[run, public], - DataSourceTypeVariant2(null)[run, public], - Cursor(anyOf)[run, public], - CursorVariant1(string)[run, public], - CursorVariant2(null)[run, public], + Id(array)[run, public], + IdItem(string)[run, public], + Trace(string)[run, public], + ParentRun(string)[run, public], + RunTypeEnum(ref)[run, public], + Session(array)[run, public], + SessionItem(string)[run, public], + ReferenceExample(array)[run, public], + ReferenceExampleItem(string)[run, public], + ExecutionOrder(int)[run, public], + StartTime(DateTime)[run, public], + EndTime(DateTime)[run, public], + Error(bool)[run, public], + Query(string)[run, public], + Filter(string)[run, public], + TraceFilter(string)[run, public], + TreeFilter(string)[run, public], + IsRoot(bool)[run, public], + RunsFilterDataSourceTypeEnum(ref)[run, public], + Cursor(string)[run, public], Limit(int)[run, public], Select(array)[run, public], RunSelect(ref)[run, public], @@ -250,11 +136,7 @@ BodyCloneDatasetApiV1DatasetsClonePost(class)[datasets], TargetDatasetId(string)[datasets], SourceDatasetId(string)[datasets], - AsOf(anyOf)[datasets], - AsOfVariant1(anyOf)[datasets], - AsOfVariant1Variant1(DateTime)[datasets], - AsOfVariant1Variant2(string)[datasets], - AsOfVariant2(null)[datasets], + AsOf(null)[datasets], Examples(array)[datasets], ExamplesItem(string)[datasets], BodyExecuteApiV1AceExecutePost(class)[ace], @@ -270,15 +152,11 @@ File(byte[])[datasets], InputKeys(array)[datasets], InputKeysItem(string)[datasets], - Name2(anyOf)[datasets], - NameVariant1(string)[datasets], - NameVariant2(null)[datasets], + Name(string)[datasets], DataType(ref)[datasets], OutputKeys(array)[datasets], OutputKeysItem(string)[datasets], - Description5(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Description(string)[datasets], DataType(enum)[datasets, public], BodyUploadExamplesApiV1ExamplesUploadDatasetIdPost(class)[examples], File(byte[])[examples], @@ -298,9 +176,7 @@ BulkExportStatus(ref)[bulk-exports], CreatedAt(DateTime)[bulk-exports], UpdatedAt(DateTime)[bulk-exports], - FinishedAt(anyOf)[bulk-exports], - FinishedAtVariant1(DateTime)[bulk-exports], - FinishedAtVariant2(null)[bulk-exports], + FinishedAt(DateTime)[bulk-exports], BulkExportFormat(enum)[bulk-exports], BulkExportCompression(enum)[bulk-exports], BulkExportStatus(enum)[bulk-exports], @@ -324,15 +200,9 @@ BulkExportDestinationType(enum)[bulk-exports], BulkExportDestinationS3Config(class)[bulk-exports], BucketName(string)[bulk-exports], - Prefix(anyOf)[bulk-exports], - PrefixVariant1(string)[bulk-exports], - PrefixVariant2(null)[bulk-exports], - Region(anyOf)[bulk-exports], - RegionVariant1(string)[bulk-exports], - RegionVariant2(null)[bulk-exports], - EndpointUrl(anyOf)[bulk-exports], - EndpointUrlVariant1(string)[bulk-exports], - EndpointUrlVariant2(null)[bulk-exports], + Prefix(string)[bulk-exports], + Region(string)[bulk-exports], + EndpointUrl(string)[bulk-exports], BulkExportDestinationCreate(class)[bulk-exports], BulkExportDestinationType(ref)[bulk-exports], DisplayName(string)[bulk-exports], @@ -347,14 +217,10 @@ Id(string)[bulk-exports], BulkExportRunStatus(ref)[bulk-exports], RetryNumber(int)[bulk-exports], - Errors(anyOf)[bulk-exports], - BulkExportRunErrors(class)[bulk-exports], - ErrorsVariant2(null)[bulk-exports], + BulkExportRunErrors(class)[bulk-exports], CreatedAt(DateTime)[bulk-exports], UpdatedAt(DateTime)[bulk-exports], - FinishedAt2(anyOf)[bulk-exports], - FinishedAtVariant1(DateTime)[bulk-exports], - FinishedAtVariant2(null)[bulk-exports], + FinishedAt(DateTime)[bulk-exports], BulkExportRunS3Metadata(class)[bulk-exports], Prefix(string)[bulk-exports], StartTime(DateTime)[bulk-exports], @@ -369,50 +235,32 @@ Code(string)[run], Comment(class)[comments], Id(string)[comments], - CommentBy(anyOf)[comments], - CommentByVariant1(string)[comments], - CommentByVariant2(null)[comments], + CommentBy(string)[comments], CommentOn(string)[comments], - ParentId(anyOf)[comments], - ParentIdVariant1(string)[comments], - ParentIdVariant2(null)[comments], + ParentId(string)[comments], Content(string)[comments], CreatedAt(DateTime)[comments], UpdatedAt(DateTime)[comments], - CommentByName(anyOf)[comments], - CommentByNameVariant1(string)[comments], - CommentByNameVariant2(null)[comments], + CommentByName(string)[comments], NumSubComments(int)[comments], NumLikes(int)[comments], - LikedByAuthUser(anyOf)[comments], - LikedByAuthUserVariant1(bool)[comments], - LikedByAuthUserVariant2(null)[comments], + LikedByAuthUser(bool)[comments], CommitManifestResponse(class)[commits, repos], CommitHash(string)[commits, repos], CommitManifestResponseManifest(class)[commits, repos], - Examples(anyOf)[commits, repos], - ExamplesVariant1(array)[commits, repos], - RepoExampleResponse(ref)[commits, repos], - ExamplesVariant2(null)[commits, repos], + Examples(array)[commits, repos], + RepoExampleResponse(ref)[commits, repos], RepoExampleResponse(class)[commits, repos], Id(string)[commits], - StartTime5(anyOf)[commits], - StartTimeVariant1(DateTime)[commits], - StartTimeVariant2(null)[commits], - Inputs5(anyOf)[commits], - RepoExampleResponseInputs(class)[commits], - InputsVariant2(null)[commits], - Outputs9(anyOf)[commits], - RepoExampleResponseOutputs(class)[commits], - OutputsVariant2(null)[commits], + StartTime(DateTime)[commits], + RepoExampleResponseInputs(class)[commits], + RepoExampleResponseOutputs(class)[commits], SessionId(string)[commits], CommitWithLookups(class)[commits], Id(string)[commits], CommitWithLookupsManifest(class)[commits], RepoId(string)[commits], - ParentId2(anyOf)[commits], - ParentIdVariant1(string)[commits], - ParentIdVariant2(null)[commits], + ParentId(string)[commits], CommitHash(string)[commits], CreatedAt(DateTime)[commits], UpdatedAt(DateTime)[commits], @@ -420,63 +268,41 @@ ExampleRunIdsItem(string)[commits], NumDownloads(int)[commits], NumViews(int)[commits], - ParentCommitHash(anyOf)[commits], - ParentCommitHashVariant1(string)[commits], - ParentCommitHashVariant2(null)[commits], + ParentCommitHash(string)[commits], ComparativeExperiment(class)[datasets], Id(string)[datasets], - Name3(anyOf)[datasets], - NameVariant1(string)[datasets], - NameVariant2(null)[datasets], - Description6(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Name(string)[datasets], + Description(string)[datasets], TenantId(string)[datasets], CreatedAt(DateTime)[datasets], ModifiedAt(DateTime)[datasets], ReferenceDatasetId(string)[datasets], - Extra(anyOf)[datasets], - ComparativeExperimentExtra(class)[datasets], - ExtraVariant2(null)[datasets], + ComparativeExperimentExtra(class)[datasets], ExperimentsInfo(array)[datasets], SimpleExperimentInfo(ref)[datasets], - FeedbackStats(anyOf)[datasets], - ComparativeExperimentFeedbackStats(class)[datasets], - FeedbackStatsVariant2(null)[datasets], + ComparativeExperimentFeedbackStats(class)[datasets], SimpleExperimentInfo(class)[datasets, public], Id(string)[datasets, public], Name(string)[datasets, public], ComparativeExperimentBase(class)[datasets], Id(string)[datasets], - Name4(anyOf)[datasets], - NameVariant1(string)[datasets], - NameVariant2(null)[datasets], - Description7(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Name(string)[datasets], + Description(string)[datasets], TenantId(string)[datasets], CreatedAt(DateTime)[datasets], ModifiedAt(DateTime)[datasets], ReferenceDatasetId(string)[datasets], - Extra2(anyOf)[datasets], - ComparativeExperimentBaseExtra(class)[datasets], - ExtraVariant2(null)[datasets], + ComparativeExperimentBaseExtra(class)[datasets], ComparativeExperimentCreate(class)[datasets], Id(string)[datasets], ExperimentIds(array)[datasets], ExperimentIdsItem(string)[datasets], - Name5(anyOf)[datasets], - NameVariant1(string)[datasets], - NameVariant2(null)[datasets], - Description8(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Name(string)[datasets], + Description(string)[datasets], CreatedAt(DateTime)[datasets], ModifiedAt(DateTime)[datasets], ReferenceDatasetId(string)[datasets], - Extra3(anyOf)[datasets], - ComparativeExperimentCreateExtra(class)[datasets], - ExtraVariant2(null)[datasets], + ComparativeExperimentCreateExtra(class)[datasets], ConfiguredBy(enum)[orgs, ttl-settings], CreateCommentRequest(class)[comments], Content(string)[comments], @@ -484,67 +310,41 @@ CreateEventRequestEventType(enum)[events], Owner(string)[events], Repo(string)[events], - Commit(anyOf)[events], - CommitVariant1(string)[events], - CommitVariant2(null)[events], + Commit(string)[events], CreateFeedbackConfigSchema(class)[feedback-configs], FeedbackKey(string)[feedback-configs], FeedbackConfig(ref)[feedback-configs], IsLowerScoreBetter(bool)[feedback-configs], - IsLowerScoreBetterVariant1(bool)[feedback-configs], - IsLowerScoreBetterVariant2(null)[feedback-configs], FeedbackConfig(class)[feedback, feedback-configs, datasets], FeedbackType(ref)[feedback, feedback-configs, datasets], - Min(anyOf)[feedback, feedback-configs, datasets], - MinVariant1(double)[feedback, feedback-configs, datasets], - MinVariant2(null)[feedback, feedback-configs, datasets], - Max(anyOf)[feedback, feedback-configs, datasets], - MaxVariant1(double)[feedback, feedback-configs, datasets], - MaxVariant2(null)[feedback, feedback-configs, datasets], - Categories(anyOf)[feedback, feedback-configs, datasets], - CategoriesVariant1(array)[feedback, feedback-configs, datasets], - FeedbackCategory(ref)[feedback, feedback-configs, datasets], - CategoriesVariant2(null)[feedback, feedback-configs, datasets], + Min(double)[feedback, feedback-configs, datasets], + Max(double)[feedback, feedback-configs, datasets], + Categories(array)[feedback, feedback-configs, datasets], + FeedbackCategory(ref)[feedback, feedback-configs, datasets], FeedbackType(enum)[feedback, feedback-configs, datasets], FeedbackCategory(class)[feedback, feedback-configs, datasets], Value(double)[feedback, feedback-configs, datasets], - Label(anyOf)[feedback, feedback-configs, datasets], - LabelVariant1(string)[feedback, feedback-configs, datasets], - LabelVariant2(null)[feedback, feedback-configs, datasets], + Label(string)[feedback, feedback-configs, datasets], CreateRepoCommitRequest(class)[commits], CreateRepoCommitRequestManifest(class)[commits], - ParentCommit(anyOf)[commits], - ParentCommitVariant1(string)[commits], - ParentCommitVariant2(null)[commits], - ExampleRunIds(anyOf)[commits], - ExampleRunIdsVariant1(array)[commits], - ExampleRunIdsVariant1Item(string)[commits], - ExampleRunIdsVariant2(null)[commits], + ParentCommit(string)[commits], + ExampleRunIds(array)[commits], + ExampleRunIdsItem(string)[commits], CreateRepoCommitResponse(class)[commits], CommitWithLookups(ref)[commits], CreateRepoRequest(class)[repos], RepoHandle(string)[repos], - Description9(anyOf)[repos], - DescriptionVariant1(string)[repos], - DescriptionVariant2(null)[repos], - Readme(anyOf)[repos], - ReadmeVariant1(string)[repos], - ReadmeVariant2(null)[repos], + Description(string)[repos], + Readme(string)[repos], IsPublic(bool)[repos], - Tags(anyOf)[repos], - TagsVariant1(array)[repos], - TagsVariant1Item(string)[repos], - TagsVariant2(null)[repos], + Tags(array)[repos], + TagsItem(string)[repos], CreateRepoResponse(class)[repos], RepoWithLookups(ref)[repos], RepoWithLookups(class)[repos], RepoHandle(string)[repos], - Description27(anyOf)[repos], - DescriptionVariant1(string)[repos], - DescriptionVariant2(null)[repos], - Readme3(anyOf)[repos], - ReadmeVariant1(string)[repos], - ReadmeVariant2(null)[repos], + Description(string)[repos], + Readme(string)[repos], Id(string)[repos], TenantId(string)[repos], CreatedAt(DateTime)[repos], @@ -553,35 +353,19 @@ IsArchived(bool)[repos], Tags(array)[repos], TagsItem(string)[repos], - OriginalRepoId(anyOf)[repos], - OriginalRepoIdVariant1(string)[repos], - OriginalRepoIdVariant2(null)[repos], - UpstreamRepoId(anyOf)[repos], - UpstreamRepoIdVariant1(string)[repos], - UpstreamRepoIdVariant2(null)[repos], - Owner(anyOf)[repos], - OwnerVariant1(string)[repos], - OwnerVariant2(null)[repos], + OriginalRepoId(string)[repos], + UpstreamRepoId(string)[repos], + Owner(string)[repos], FullName(string)[repos], NumLikes(int)[repos], NumDownloads(int)[repos], NumViews(int)[repos], - LikedByAuthUser2(anyOf)[repos], - LikedByAuthUserVariant1(bool)[repos], - LikedByAuthUserVariant2(null)[repos], - LastCommitHash(anyOf)[repos], - LastCommitHashVariant1(string)[repos], - LastCommitHashVariant2(null)[repos], + LikedByAuthUser(bool)[repos], + LastCommitHash(string)[repos], NumCommits(int)[repos], - OriginalRepoFullName(anyOf)[repos], - OriginalRepoFullNameVariant1(string)[repos], - OriginalRepoFullNameVariant2(null)[repos], - UpstreamRepoFullName(anyOf)[repos], - UpstreamRepoFullNameVariant1(string)[repos], - UpstreamRepoFullNameVariant2(null)[repos], - LatestCommitManifest(anyOf)[repos], - CommitManifestResponse(ref)[repos], - LatestCommitManifestVariant2(null)[repos], + OriginalRepoFullName(string)[repos], + UpstreamRepoFullName(string)[repos], + CommitManifestResponse(ref)[repos], CreateRoleRequest(class)[orgs], DisplayName(string)[orgs], Description(string)[orgs], @@ -589,64 +373,36 @@ PermissionsItem(string)[orgs], CustomChartCreate(class)[charts], Title(string)[charts], - Description10(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], - Index(anyOf)[charts], - IndexVariant1(int)[charts], - IndexVariant2(null)[charts], + Description(string)[charts], + Index(int)[charts], CustomChartType(ref)[charts], Series(array)[charts], CustomChartSeriesCreate(ref)[charts], - SectionId(anyOf)[charts], - SectionIdVariant1(string)[charts], - SectionIdVariant2(null)[charts], - Metadata4(anyOf)[charts], - CustomChartCreateMetadata(class)[charts], - MetadataVariant2(null)[charts], - CommonFilters(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - CommonFiltersVariant2(null)[charts], + SectionId(string)[charts], + CustomChartCreateMetadata(class)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartType(enum)[charts], CustomChartSeriesCreate(class)[charts], Name(string)[charts], - Filters2(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - FiltersVariant2(null)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartMetric(ref)[charts], - FeedbackKey2(anyOf)[charts], - FeedbackKeyVariant1(string)[charts], - FeedbackKeyVariant2(null)[charts], + FeedbackKey(string)[charts], CustomChartSeriesFilters(class)[charts], - Filter2(anyOf)[charts], - FilterVariant1(string)[charts], - FilterVariant2(null)[charts], - TraceFilter2(anyOf)[charts], - TraceFilterVariant1(string)[charts], - TraceFilterVariant2(null)[charts], - TreeFilter2(anyOf)[charts], - TreeFilterVariant1(string)[charts], - TreeFilterVariant2(null)[charts], - Session2(anyOf)[charts], - SessionVariant1(array)[charts], - SessionVariant1Item(string)[charts], - SessionVariant2(null)[charts], + Filter(string)[charts], + TraceFilter(string)[charts], + TreeFilter(string)[charts], + Session(array)[charts], + SessionItem(string)[charts], CustomChartMetric(enum)[charts], CustomChartCreatePreview(class)[charts], Series(array)[charts], CustomChartSeries(ref)[charts], - CommonFilters2(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - CommonFiltersVariant2(null)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartSeries(class)[charts], Name(string)[charts], - Filters(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - FiltersVariant2(null)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartMetric(ref)[charts], - FeedbackKey(anyOf)[charts], - FeedbackKeyVariant1(string)[charts], - FeedbackKeyVariant2(null)[charts], + FeedbackKey(string)[charts], Id(string)[charts], CustomChartPreviewRequest(class)[charts], CustomChartsRequestBase(ref)[charts], @@ -654,9 +410,7 @@ CustomChartsRequestBase(class)[charts], Timezone(string)[charts], StartTime(DateTime)[charts], - EndTime3(anyOf)[charts], - EndTimeVariant1(DateTime)[charts], - EndTimeVariant2(null)[charts], + EndTime(DateTime)[charts], TimedeltaInput(ref)[charts], TimedeltaInput(class)[run, feedback, charts], Days(int)[run, feedback, charts], @@ -665,60 +419,45 @@ CustomChartResponse(class)[charts], Id(string)[charts], Title(string)[charts], - Description11(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], + Description(string)[charts], Index(int)[charts], CustomChartType(ref)[charts], SectionId(string)[charts], - Metadata5(anyOf)[charts], - CustomChartResponseMetadata(class)[charts], - MetadataVariant2(null)[charts], - Series(anyOf)[charts], - SeriesVariant1(array)[charts], - CustomChartSeries(ref)[charts], - SeriesVariant2(null)[charts], + CustomChartResponseMetadata(class)[charts], + Series(array)[charts], + CustomChartSeries(ref)[charts], CustomChartSeriesUpdate(class)[charts], Name(string)[charts], - Filters3(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - FiltersVariant2(null)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartMetric(ref)[charts], - FeedbackKey3(anyOf)[charts], - FeedbackKeyVariant1(string)[charts], - FeedbackKeyVariant2(null)[charts], - Id2(anyOf)[charts], - IdVariant1(string)[charts], - IdVariant2(null)[charts], + FeedbackKey(string)[charts], + Id(string)[charts], CustomChartUpdate(class)[charts], Title(anyOf)[charts], TitleVariant1(string)[charts], Missing(ref)[charts], - Description12(anyOf)[charts], + Description(anyOf)[charts], DescriptionVariant1(string)[charts], Missing(ref)[charts], - DescriptionVariant3(null)[charts], - Index2(anyOf)[charts], + Index(anyOf)[charts], IndexVariant1(int)[charts], Missing(ref)[charts], ChartType(anyOf)[charts], CustomChartType(ref)[charts], Missing(ref)[charts], - Series2(anyOf)[charts], + Series(anyOf)[charts], SeriesVariant1(array)[charts], CustomChartSeriesUpdate(ref)[charts], Missing(ref)[charts], - SectionId2(anyOf)[charts], + SectionId(anyOf)[charts], SectionIdVariant1(string)[charts], Missing(ref)[charts], - Metadata6(anyOf)[charts], + Metadata(anyOf)[charts], CustomChartUpdateMetadata(class)[charts], Missing(ref)[charts], - MetadataVariant3(null)[charts], - CommonFilters3(anyOf)[charts], + CommonFilters(anyOf)[charts], CustomChartSeriesFilters(ref)[charts], Missing(ref)[charts], - CommonFiltersVariant3(null)[charts], Missing(class)[datasets, charts], MissingMissing1(enum)[datasets, charts], CustomChartsDataPoint(class)[charts], @@ -728,32 +467,21 @@ ValueVariant1(int)[charts], ValueVariant2(double)[charts], CustomChartsDataPointValue(class)[charts], - ValueVariant4(null)[charts], CustomChartsRequest(class)[charts], Timezone(string)[charts], StartTime(DateTime)[charts], - EndTime2(anyOf)[charts], - EndTimeVariant1(DateTime)[charts], - EndTimeVariant2(null)[charts], + EndTime(DateTime)[charts], TimedeltaInput(ref)[charts], - AfterIndex(anyOf)[charts], - AfterIndexVariant1(int)[charts], - AfterIndexVariant2(null)[charts], - TagValueId(anyOf)[charts], - TagValueIdVariant1(array)[charts], - TagValueIdVariant1Item(string)[charts], - TagValueIdVariant2(null)[charts], + AfterIndex(int)[charts], + TagValueId(array)[charts], + TagValueIdItem(string)[charts], CustomChartsResponse(class)[charts], Sections(array)[charts], CustomChartsSection(ref)[charts], CustomChartsSection(class)[charts], Title(string)[charts], - Description13(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], - Index3(anyOf)[charts], - IndexVariant1(int)[charts], - IndexVariant2(null)[charts], + Description(string)[charts], + Index(int)[charts], Id(string)[charts], Charts(array)[charts], SingleCustomChartResponse(ref)[charts], @@ -762,110 +490,63 @@ CustomChartsDataPoint(ref)[charts], Id(string)[charts], Title(string)[charts], - Description28(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], - Metadata19(anyOf)[charts], - SingleCustomChartResponseMetadata(class)[charts], - MetadataVariant2(null)[charts], + Description(string)[charts], + SingleCustomChartResponseMetadata(class)[charts], Index(int)[charts], CustomChartType(ref)[charts], Series(array)[charts], CustomChartSeries(ref)[charts], - CommonFilters4(anyOf)[charts], - CustomChartSeriesFilters(ref)[charts], - CommonFiltersVariant2(null)[charts], + CustomChartSeriesFilters(ref)[charts], CustomChartsSectionCreate(class)[charts], Title(string)[charts], - Description14(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], - Index4(anyOf)[charts], - IndexVariant1(int)[charts], - IndexVariant2(null)[charts], + Description(string)[charts], + Index(int)[charts], CustomChartsSectionResponse(class)[charts], Title(string)[charts], - Description15(anyOf)[charts], - DescriptionVariant1(string)[charts], - DescriptionVariant2(null)[charts], - Index5(anyOf)[charts], - IndexVariant1(int)[charts], - IndexVariant2(null)[charts], + Description(string)[charts], + Index(int)[charts], Id(string)[charts], - ChartCount(anyOf)[charts], - ChartCountVariant1(int)[charts], - ChartCountVariant2(null)[charts], - CreatedAt3(anyOf)[charts], - CreatedAtVariant1(DateTime)[charts], - CreatedAtVariant2(null)[charts], - ModifiedAt(anyOf)[charts], - ModifiedAtVariant1(DateTime)[charts], - ModifiedAtVariant2(null)[charts], + ChartCount(int)[charts], + CreatedAt(DateTime)[charts], + ModifiedAt(DateTime)[charts], CustomChartsSectionUpdate(class)[charts], Title2(anyOf)[charts], TitleVariant1(string)[charts], Missing(ref)[charts], - Description16(anyOf)[charts], + Description2(anyOf)[charts], DescriptionVariant1(string)[charts], Missing(ref)[charts], - DescriptionVariant3(null)[charts], - Index6(anyOf)[charts], + Index2(anyOf)[charts], IndexVariant1(int)[charts], Missing(ref)[charts], CustomerVisiblePlanInfo(class)[orgs], PaymentPlanTier(ref)[orgs], StartedOn(DateTime)[orgs], - EndsOn(anyOf)[orgs], - EndsOnVariant1(DateTime)[orgs], - EndsOnVariant2(null)[orgs], + EndsOn(DateTime)[orgs], PaymentPlanTier(enum)[orgs], Dataset(class)[datasets], Name(string)[datasets], - Description17(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Description(string)[datasets], CreatedAt(DateTime)[datasets], - InputsSchemaDefinition(anyOf)[datasets], - DatasetInputsSchemaDefinition(class)[datasets], - InputsSchemaDefinitionVariant2(null)[datasets], - OutputsSchemaDefinition(anyOf)[datasets], - DatasetOutputsSchemaDefinition(class)[datasets], - OutputsSchemaDefinitionVariant2(null)[datasets], + DatasetInputsSchemaDefinition(class)[datasets], + DatasetOutputsSchemaDefinition(class)[datasets], ExternallyManaged(bool)[datasets], - ExternallyManagedVariant1(bool)[datasets], - ExternallyManagedVariant2(null)[datasets], - DataType2(anyOf)[datasets], - DataType(ref)[datasets], - DataTypeVariant2(null)[datasets], + DataType(ref)[datasets], Id(string)[datasets], TenantId(string)[datasets], ExampleCount(int)[datasets], SessionCount(int)[datasets], ModifiedAt(DateTime)[datasets], - LastSessionStartTime(anyOf)[datasets], - LastSessionStartTimeVariant1(DateTime)[datasets], - LastSessionStartTimeVariant2(null)[datasets], + LastSessionStartTime(DateTime)[datasets], DatasetCreate(class)[datasets], Name(string)[datasets], - Description18(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Description(string)[datasets], CreatedAt(DateTime)[datasets], - InputsSchemaDefinition2(anyOf)[datasets], - DatasetCreateInputsSchemaDefinition(class)[datasets], - InputsSchemaDefinitionVariant2(null)[datasets], - OutputsSchemaDefinition2(anyOf)[datasets], - DatasetCreateOutputsSchemaDefinition(class)[datasets], - OutputsSchemaDefinitionVariant2(null)[datasets], - ExternallyManaged2(bool)[datasets], - ExternallyManagedVariant1(bool)[datasets], - ExternallyManagedVariant2(null)[datasets], - Id3(anyOf)[datasets], - IdVariant1(string)[datasets], - IdVariant2(null)[datasets], - Extra4(anyOf)[datasets], - DatasetCreateExtra(class)[datasets], - ExtraVariant2(null)[datasets], + DatasetCreateInputsSchemaDefinition(class)[datasets], + DatasetCreateOutputsSchemaDefinition(class)[datasets], + ExternallyManaged(bool)[datasets], + Id(string)[datasets], + DatasetCreateExtra(class)[datasets], DataType(ref)[datasets], DatasetDiffInfo(class)[datasets], ExamplesModified(array)[datasets], @@ -876,192 +557,107 @@ ExamplesRemovedItem(string)[datasets], DatasetIndexInfo(class)[datasets], DatasetId(string)[datasets], - Tag(anyOf)[datasets], - TagVariant1(string)[datasets], - TagVariant2(null)[datasets], - LastUpdatedVersion(anyOf)[datasets], - LastUpdatedVersionVariant1(DateTime)[datasets], - LastUpdatedVersionVariant2(null)[datasets], + Tag(string)[datasets], + LastUpdatedVersion(DateTime)[datasets], DatasetIndexRequest(class)[datasets], - Tag2(anyOf)[datasets], - TagVariant1(string)[datasets], - TagVariant2(null)[datasets], + Tag(string)[datasets], DatasetPublicSchema(class)[public], Name(string)[public], - Description19(anyOf)[public], - DescriptionVariant1(string)[public], - DescriptionVariant2(null)[public], + Description(string)[public], CreatedAt(DateTime)[public], - InputsSchemaDefinition3(anyOf)[public], - DatasetPublicSchemaInputsSchemaDefinition(class)[public], - InputsSchemaDefinitionVariant2(null)[public], - OutputsSchemaDefinition3(anyOf)[public], - DatasetPublicSchemaOutputsSchemaDefinition(class)[public], - OutputsSchemaDefinitionVariant2(null)[public], - ExternallyManaged3(bool)[public], - ExternallyManagedVariant1(bool)[public], - ExternallyManagedVariant2(null)[public], - DataType3(anyOf)[public], - DataType(ref)[public], - DataTypeVariant2(null)[public], + DatasetPublicSchemaInputsSchemaDefinition(class)[public], + DatasetPublicSchemaOutputsSchemaDefinition(class)[public], + ExternallyManaged(bool)[public], + DataType(ref)[public], Id(string)[public], ExampleCount(int)[public], DatasetSchemaForUpdate(class)[datasets], Name(string)[datasets], - Description20(anyOf)[datasets], - DescriptionVariant1(string)[datasets], - DescriptionVariant2(null)[datasets], + Description(string)[datasets], CreatedAt(DateTime)[datasets], - InputsSchemaDefinition4(anyOf)[datasets], - DatasetSchemaForUpdateInputsSchemaDefinition(class)[datasets], - InputsSchemaDefinitionVariant2(null)[datasets], - OutputsSchemaDefinition4(anyOf)[datasets], - DatasetSchemaForUpdateOutputsSchemaDefinition(class)[datasets], - OutputsSchemaDefinitionVariant2(null)[datasets], - ExternallyManaged4(bool)[datasets], - ExternallyManagedVariant1(bool)[datasets], - ExternallyManagedVariant2(null)[datasets], - DataType4(anyOf)[datasets], - DataType(ref)[datasets], - DataTypeVariant2(null)[datasets], + DatasetSchemaForUpdateInputsSchemaDefinition(class)[datasets], + DatasetSchemaForUpdateOutputsSchemaDefinition(class)[datasets], + ExternallyManaged(bool)[datasets], + DataType(ref)[datasets], Id(string)[datasets], TenantId(string)[datasets], DatasetShareSchema(class)[datasets], DatasetId(string)[datasets], ShareToken(string)[datasets], DatasetUpdate(class)[datasets], - Name6(anyOf)[datasets], + Name(anyOf)[datasets], NameVariant1(string)[datasets], Missing(ref)[datasets], - NameVariant3(null)[datasets], - Description21(anyOf)[datasets], + Description3(anyOf)[datasets], DescriptionVariant1(string)[datasets], Missing(ref)[datasets], - DescriptionVariant3(null)[datasets], - InputsSchemaDefinition5(anyOf)[datasets], + InputsSchemaDefinition(anyOf)[datasets], DatasetUpdateInputsSchemaDefinition(class)[datasets], Missing(ref)[datasets], - InputsSchemaDefinitionVariant3(null)[datasets], - OutputsSchemaDefinition5(anyOf)[datasets], + OutputsSchemaDefinition(anyOf)[datasets], DatasetUpdateOutputsSchemaDefinition(class)[datasets], Missing(ref)[datasets], - OutputsSchemaDefinitionVariant3(null)[datasets], - PatchExamples(anyOf)[datasets], - DatasetUpdatePatchExamples(class)[datasets], - ExampleUpdate(ref)[datasets], - PatchExamplesVariant2(null)[datasets], + DatasetUpdatePatchExamples(class)[datasets], + ExampleUpdate(ref)[datasets], ExampleUpdate(class)[examples, datasets], - DatasetId(anyOf)[examples, datasets], - DatasetIdVariant1(string)[examples, datasets], - DatasetIdVariant2(null)[examples, datasets], - Inputs3(anyOf)[examples, datasets], - ExampleUpdateInputs(class)[examples, datasets], - InputsVariant2(null)[examples, datasets], - Outputs4(anyOf)[examples, datasets], - ExampleUpdateOutputs(class)[examples, datasets], - OutputsVariant2(null)[examples, datasets], - Metadata10(anyOf)[examples, datasets], - ExampleUpdateMetadata(class)[examples, datasets], - MetadataVariant2(null)[examples, datasets], + DatasetId(string)[examples, datasets], + ExampleUpdateInputs(class)[examples, datasets], + ExampleUpdateOutputs(class)[examples, datasets], + ExampleUpdateMetadata(class)[examples, datasets], Split3(anyOf)[examples, datasets], SplitVariant1(array)[examples, datasets], SplitVariant1Item(string)[examples, datasets], SplitVariant2(string)[examples, datasets], - SplitVariant3(null)[examples, datasets], DatasetVersion(class)[datasets], - Tags2(anyOf)[datasets], - TagsVariant1(array)[datasets], - TagsVariant1Item(string)[datasets], - TagsVariant2(null)[datasets], + Tags(array)[datasets], + TagsItem(string)[datasets], AsOf(DateTime)[datasets], EvaluatorStructuredOutput(class)[run], - HubRef(anyOf)[run], - HubRefVariant1(string)[run], - HubRefVariant2(null)[run], - Prompt(anyOf)[run], - PromptVariant1(array)[run], - PromptVariant1Item(array)[run], - PromptVariant1ItemItem(string)[run], - PromptVariant2(null)[run], - TemplateFormat(anyOf)[run], - TemplateFormatVariant1(string)[run], - TemplateFormatVariant2(null)[run], - Schema(anyOf)[run], - EvaluatorStructuredOutputSchema(class)[run], - SchemaVariant2(null)[run], - VariableMapping(anyOf)[run], - EvaluatorStructuredOutputVariableMapping(class)[run], - VariableMappingVariant1(string)[run], - VariableMappingVariant2(null)[run], + HubRef(string)[run], + Prompt(array)[run], + PromptItem(array)[run], + PromptItemItem(string)[run], + TemplateFormat(string)[run], + EvaluatorStructuredOutputSchema(class)[run], + EvaluatorStructuredOutputVariableMapping(class)[run], + VariableMapping(string)[run], EvaluatorStructuredOutputModel(class)[run], EvaluatorTopLevel(class)[run], EvaluatorStructuredOutput(ref)[run], Example(class)[examples, datasets, public], - Outputs(anyOf)[examples, datasets, public], - ExampleOutputs(class)[examples, datasets, public], - OutputsVariant2(null)[examples, datasets, public], + ExampleOutputs(class)[examples, datasets, public], DatasetId(string)[examples, datasets, public], - SourceRunId(anyOf)[examples, datasets, public], - SourceRunIdVariant1(string)[examples, datasets, public], - SourceRunIdVariant2(null)[examples, datasets, public], - Metadata7(anyOf)[examples, datasets, public], - ExampleMetadata(class)[examples, datasets, public], - MetadataVariant2(null)[examples, datasets, public], + SourceRunId(string)[examples, datasets, public], + ExampleMetadata(class)[examples, datasets, public], ExampleInputs(class)[examples, datasets, public], CreatedAt(DateTime)[examples, datasets, public], Id(string)[examples, datasets, public], Name(string)[examples, datasets, public], - ModifiedAt2(anyOf)[examples, datasets, public], - ModifiedAtVariant1(DateTime)[examples, datasets, public], - ModifiedAtVariant2(null)[examples, datasets, public], + ModifiedAt(DateTime)[examples, datasets, public], ExampleBulkCreate(class)[examples], - Outputs2(anyOf)[examples], - ExampleBulkCreateOutputs(class)[examples], - OutputsVariant2(null)[examples], + ExampleBulkCreateOutputs(class)[examples], DatasetId(string)[examples], - SourceRunId2(anyOf)[examples], - SourceRunIdVariant1(string)[examples], - SourceRunIdVariant2(null)[examples], - Metadata8(anyOf)[examples], - ExampleBulkCreateMetadata(class)[examples], - MetadataVariant2(null)[examples], - Inputs(anyOf)[examples], - ExampleBulkCreateInputs(class)[examples], - InputsVariant2(null)[examples], + SourceRunId(string)[examples], + ExampleBulkCreateMetadata(class)[examples], + ExampleBulkCreateInputs(class)[examples], Split(anyOf)[examples], SplitVariant1(array)[examples], SplitVariant1Item(string)[examples], SplitVariant2(string)[examples], - SplitVariant3(null)[examples], - Id4(anyOf)[examples], - IdVariant1(string)[examples], - IdVariant2(null)[examples], + Id(string)[examples], UseSourceRunIo(bool)[examples], - CreatedAt4(anyOf)[examples], - CreatedAtVariant1(DateTime)[examples], - CreatedAtVariant2(null)[examples], + CreatedAt(DateTime)[examples], ExampleCreate(class)[examples], - Outputs3(anyOf)[examples], - ExampleCreateOutputs(class)[examples], - OutputsVariant2(null)[examples], + ExampleCreateOutputs(class)[examples], DatasetId(string)[examples], - SourceRunId3(anyOf)[examples], - SourceRunIdVariant1(string)[examples], - SourceRunIdVariant2(null)[examples], - Metadata9(anyOf)[examples], - ExampleCreateMetadata(class)[examples], - MetadataVariant2(null)[examples], - Inputs2(anyOf)[examples], - ExampleCreateInputs(class)[examples], - InputsVariant2(null)[examples], + SourceRunId(string)[examples], + ExampleCreateMetadata(class)[examples], + ExampleCreateInputs(class)[examples], Split2(anyOf)[examples], SplitVariant1(array)[examples], SplitVariant1Item(string)[examples], SplitVariant2(string)[examples], - SplitVariant3(null)[examples], - Id5(anyOf)[examples], - IdVariant1(string)[examples], - IdVariant2(null)[examples], + Id(string)[examples], UseSourceRunIo(bool)[examples], CreatedAt(DateTime)[examples], ExampleListOrder(enum)[examples], @@ -1073,298 +669,143 @@ RunId(string)[repos], ExampleSelect(enum)[examples, public], ExampleUpdateWithID(class)[examples], - DatasetId2(anyOf)[examples], - DatasetIdVariant1(string)[examples], - DatasetIdVariant2(null)[examples], - Inputs4(anyOf)[examples], - ExampleUpdateWithIDInputs(class)[examples], - InputsVariant2(null)[examples], - Outputs5(anyOf)[examples], - ExampleUpdateWithIDOutputs(class)[examples], - OutputsVariant2(null)[examples], - Metadata11(anyOf)[examples], - ExampleUpdateWithIDMetadata(class)[examples], - MetadataVariant2(null)[examples], + DatasetId(string)[examples], + ExampleUpdateWithIDInputs(class)[examples], + ExampleUpdateWithIDOutputs(class)[examples], + ExampleUpdateWithIDMetadata(class)[examples], Split4(anyOf)[examples], SplitVariant1(array)[examples], SplitVariant1Item(string)[examples], SplitVariant2(string)[examples], - SplitVariant3(null)[examples], Id(string)[examples], ExampleWithRuns(class)[datasets], - Outputs6(anyOf)[datasets], - ExampleWithRunsOutputs(class)[datasets], - OutputsVariant2(null)[datasets], + ExampleWithRunsOutputs(class)[datasets], DatasetId(string)[datasets], - SourceRunId4(anyOf)[datasets], - SourceRunIdVariant1(string)[datasets], - SourceRunIdVariant2(null)[datasets], - Metadata12(anyOf)[datasets], - ExampleWithRunsMetadata(class)[datasets], - MetadataVariant2(null)[datasets], + SourceRunId(string)[datasets], + ExampleWithRunsMetadata(class)[datasets], ExampleWithRunsInputs(class)[datasets], CreatedAt(DateTime)[datasets], Id(string)[datasets], Name(string)[datasets], - ModifiedAt3(anyOf)[datasets], - ModifiedAtVariant1(DateTime)[datasets], - ModifiedAtVariant2(null)[datasets], + ModifiedAt(DateTime)[datasets], Runs(array)[datasets], RunSchema(ref)[datasets], RunSchema(class)[run, datasets], Name(string)[run, datasets], - Inputs8(anyOf)[run, datasets], - RunSchemaInputs(class)[run, datasets], - InputsVariant2(null)[run, datasets], - InputsPreview3(anyOf)[run, datasets], - InputsPreviewVariant1(string)[run, datasets], - InputsPreviewVariant2(null)[run, datasets], + RunSchemaInputs(class)[run, datasets], + InputsPreview(string)[run, datasets], RunTypeEnum(ref)[run, datasets], StartTime(DateTime)[run, datasets], - EndTime8(anyOf)[run, datasets], - EndTimeVariant1(DateTime)[run, datasets], - EndTimeVariant2(null)[run, datasets], - Extra8(anyOf)[run, datasets], - RunSchemaExtra(class)[run, datasets], - ExtraVariant2(null)[run, datasets], - Error7(anyOf)[run, datasets], - ErrorVariant1(string)[run, datasets], - ErrorVariant2(null)[run, datasets], + EndTime(DateTime)[run, datasets], + RunSchemaExtra(class)[run, datasets], + Error(string)[run, datasets], ExecutionOrder(int)[run, datasets], - Serialized3(anyOf)[run, datasets], - RunSchemaSerialized(class)[run, datasets], - SerializedVariant2(null)[run, datasets], - Outputs12(anyOf)[run, datasets], - RunSchemaOutputs(class)[run, datasets], - OutputsVariant2(null)[run, datasets], - OutputsPreview3(anyOf)[run, datasets], - OutputsPreviewVariant1(string)[run, datasets], - OutputsPreviewVariant2(null)[run, datasets], - ParentRunId3(anyOf)[run, datasets], - ParentRunIdVariant1(string)[run, datasets], - ParentRunIdVariant2(null)[run, datasets], - ManifestId3(anyOf)[run, datasets], - ManifestIdVariant1(string)[run, datasets], - ManifestIdVariant2(null)[run, datasets], - ManifestS3Id3(anyOf)[run, datasets], - ManifestS3IdVariant1(string)[run, datasets], - ManifestS3IdVariant2(null)[run, datasets], - Events3(anyOf)[run, datasets], - EventsVariant1(array)[run, datasets], - RunSchemaEventsVariant1Item(class)[run, datasets], - EventsVariant2(null)[run, datasets], - Tags6(anyOf)[run, datasets], - TagsVariant1(array)[run, datasets], - TagsVariant1Item(string)[run, datasets], - TagsVariant2(null)[run, datasets], - InputsS3Urls3(anyOf)[run, datasets], - RunSchemaInputsS3Urls(class)[run, datasets], - InputsS3UrlsVariant2(null)[run, datasets], - OutputsS3Urls3(anyOf)[run, datasets], - RunSchemaOutputsS3Urls(class)[run, datasets], - OutputsS3UrlsVariant2(null)[run, datasets], - S3Urls3(anyOf)[run, datasets], - RunSchemaS3Urls(class)[run, datasets], - S3UrlsVariant2(null)[run, datasets], + RunSchemaSerialized(class)[run, datasets], + RunSchemaOutputs(class)[run, datasets], + OutputsPreview(string)[run, datasets], + ParentRunId(string)[run, datasets], + ManifestId(string)[run, datasets], + ManifestS3Id(string)[run, datasets], + Events(array)[run, datasets], + RunSchemaEvent(class)[run, datasets], + Tags(array)[run, datasets], + TagsItem(string)[run, datasets], + RunSchemaInputsS3Urls(class)[run, datasets], + RunSchemaOutputsS3Urls(class)[run, datasets], + RunSchemaS3Urls(class)[run, datasets], TraceId(string)[run, datasets], DottedOrder(string)[run, datasets], Id(string)[run, datasets], Status(string)[run, datasets], - ChildRunIds3(anyOf)[run, datasets], - ChildRunIdsVariant1(array)[run, datasets], - ChildRunIdsVariant1Item(string)[run, datasets], - ChildRunIdsVariant2(null)[run, datasets], - DirectChildRunIds3(anyOf)[run, datasets], - DirectChildRunIdsVariant1(array)[run, datasets], - DirectChildRunIdsVariant1Item(string)[run, datasets], - DirectChildRunIdsVariant2(null)[run, datasets], - ParentRunIds3(anyOf)[run, datasets], - ParentRunIdsVariant1(array)[run, datasets], - ParentRunIdsVariant1Item(string)[run, datasets], - ParentRunIdsVariant2(null)[run, datasets], - FeedbackStats6(anyOf)[run, datasets], - RunSchemaFeedbackStats(class)[run, datasets], - RunSchemaFeedbackStats2(class)[run, datasets], - FeedbackStatsVariant2(null)[run, datasets], - ReferenceExampleId3(anyOf)[run, datasets], - ReferenceExampleIdVariant1(string)[run, datasets], - ReferenceExampleIdVariant2(null)[run, datasets], + ChildRunIds(array)[run, datasets], + ChildRunIdsItem(string)[run, datasets], + DirectChildRunIds(array)[run, datasets], + DirectChildRunIdsItem(string)[run, datasets], + ParentRunIds(array)[run, datasets], + ParentRunIdsItem(string)[run, datasets], + RunSchemaFeedbackStats(class)[run, datasets], + RunSchemaFeedbackStats2(class)[run, datasets], + ReferenceExampleId(string)[run, datasets], TotalTokens(int)[run, datasets], PromptTokens(int)[run, datasets], CompletionTokens(int)[run, datasets], - TotalCost4(anyOf)[run, datasets], - TotalCostVariant1(string)[run, datasets], - TotalCostVariant2(null)[run, datasets], - PromptCost6(anyOf)[run, datasets], - PromptCostVariant1(string)[run, datasets], - PromptCostVariant2(null)[run, datasets], - CompletionCost6(anyOf)[run, datasets], - CompletionCostVariant1(string)[run, datasets], - CompletionCostVariant2(null)[run, datasets], - PriceModelId3(anyOf)[run, datasets], - PriceModelIdVariant1(string)[run, datasets], - PriceModelIdVariant2(null)[run, datasets], - FirstTokenTime3(anyOf)[run, datasets], - FirstTokenTimeVariant1(DateTime)[run, datasets], - FirstTokenTimeVariant2(null)[run, datasets], + TotalCost(string)[run, datasets], + PromptCost(string)[run, datasets], + CompletionCost(string)[run, datasets], + PriceModelId(string)[run, datasets], + FirstTokenTime(DateTime)[run, datasets], SessionId(string)[run, datasets], AppPath(string)[run, datasets], - LastQueuedAt(anyOf)[run, datasets], - LastQueuedAtVariant1(DateTime)[run, datasets], - LastQueuedAtVariant2(null)[run, datasets], - InDataset(anyOf)[run, datasets], - InDatasetVariant1(bool)[run, datasets], - InDatasetVariant2(null)[run, datasets], - ShareToken(anyOf)[run, datasets], - ShareTokenVariant1(string)[run, datasets], - ShareTokenVariant2(null)[run, datasets], - TraceTier(anyOf)[run, datasets], - TraceTier3(ref)[run, datasets], - TraceTierVariant2(null)[run, datasets], - TraceFirstReceivedAt(anyOf)[run, datasets], - TraceFirstReceivedAtVariant1(DateTime)[run, datasets], - TraceFirstReceivedAtVariant2(null)[run, datasets], - TtlSeconds(anyOf)[run, datasets], - TtlSecondsVariant1(int)[run, datasets], - TtlSecondsVariant2(null)[run, datasets], + LastQueuedAt(DateTime)[run, datasets], + InDataset(bool)[run, datasets], + ShareToken(string)[run, datasets], + TraceTier(ref)[run, datasets], + TraceFirstReceivedAt(DateTime)[run, datasets], + TtlSeconds(int)[run, datasets], TraceUpgrade(bool)[run, datasets], - TraceTier3(enum)[tracer-sessions, orgs, ttl-settings, run, datasets, public, annotation-queues], + TraceTier(enum)[tracer-sessions, orgs, ttl-settings, run, datasets, public, annotation-queues], ExampleWithRunsCH(class)[datasets, public], - Outputs7(anyOf)[datasets, public], - ExampleWithRunsCHOutputs(class)[datasets, public], - OutputsVariant2(null)[datasets, public], + ExampleWithRunsCHOutputs(class)[datasets, public], DatasetId(string)[datasets, public], - SourceRunId5(anyOf)[datasets, public], - SourceRunIdVariant1(string)[datasets, public], - SourceRunIdVariant2(null)[datasets, public], - Metadata13(anyOf)[datasets, public], - ExampleWithRunsCHMetadata(class)[datasets, public], - MetadataVariant2(null)[datasets, public], + SourceRunId(string)[datasets, public], + ExampleWithRunsCHMetadata(class)[datasets, public], ExampleWithRunsCHInputs(class)[datasets, public], CreatedAt(DateTime)[datasets, public], Id(string)[datasets, public], Name(string)[datasets, public], - ModifiedAt4(anyOf)[datasets, public], - ModifiedAtVariant1(DateTime)[datasets, public], - ModifiedAtVariant2(null)[datasets, public], + ModifiedAt(DateTime)[datasets, public], Runs(array)[datasets, public], RunSchemaComparisonView(ref)[datasets, public], RunSchemaComparisonView(class)[datasets, public], Name(string)[datasets, public], - Inputs9(anyOf)[datasets, public], - RunSchemaComparisonViewInputs(class)[datasets, public], - InputsVariant2(null)[datasets, public], - InputsPreview4(anyOf)[datasets, public], - InputsPreviewVariant1(string)[datasets, public], - InputsPreviewVariant2(null)[datasets, public], + RunSchemaComparisonViewInputs(class)[datasets, public], + InputsPreview(string)[datasets, public], RunTypeEnum(ref)[datasets, public], StartTime(DateTime)[datasets, public], - EndTime9(anyOf)[datasets, public], - EndTimeVariant1(DateTime)[datasets, public], - EndTimeVariant2(null)[datasets, public], - Extra9(anyOf)[datasets, public], - RunSchemaComparisonViewExtra(class)[datasets, public], - ExtraVariant2(null)[datasets, public], - Error8(anyOf)[datasets, public], - ErrorVariant1(string)[datasets, public], - ErrorVariant2(null)[datasets, public], + EndTime(DateTime)[datasets, public], + RunSchemaComparisonViewExtra(class)[datasets, public], + Error(string)[datasets, public], ExecutionOrder(int)[datasets, public], - Serialized4(anyOf)[datasets, public], - RunSchemaComparisonViewSerialized(class)[datasets, public], - SerializedVariant2(null)[datasets, public], - Outputs13(anyOf)[datasets, public], - RunSchemaComparisonViewOutputs(class)[datasets, public], - OutputsVariant2(null)[datasets, public], - OutputsPreview4(anyOf)[datasets, public], - OutputsPreviewVariant1(string)[datasets, public], - OutputsPreviewVariant2(null)[datasets, public], - ParentRunId4(anyOf)[datasets, public], - ParentRunIdVariant1(string)[datasets, public], - ParentRunIdVariant2(null)[datasets, public], - ManifestId4(anyOf)[datasets, public], - ManifestIdVariant1(string)[datasets, public], - ManifestIdVariant2(null)[datasets, public], - ManifestS3Id4(anyOf)[datasets, public], - ManifestS3IdVariant1(string)[datasets, public], - ManifestS3IdVariant2(null)[datasets, public], - Events4(anyOf)[datasets, public], - EventsVariant1(array)[datasets, public], - RunSchemaComparisonViewEventsVariant1Item(class)[datasets, public], - EventsVariant2(null)[datasets, public], - Tags7(anyOf)[datasets, public], - TagsVariant1(array)[datasets, public], - TagsVariant1Item(string)[datasets, public], - TagsVariant2(null)[datasets, public], - InputsS3Urls4(anyOf)[datasets, public], - RunSchemaComparisonViewInputsS3Urls(class)[datasets, public], - InputsS3UrlsVariant2(null)[datasets, public], - OutputsS3Urls4(anyOf)[datasets, public], - RunSchemaComparisonViewOutputsS3Urls(class)[datasets, public], - OutputsS3UrlsVariant2(null)[datasets, public], - S3Urls4(anyOf)[datasets, public], - RunSchemaComparisonViewS3Urls(class)[datasets, public], - S3UrlsVariant2(null)[datasets, public], + RunSchemaComparisonViewSerialized(class)[datasets, public], + RunSchemaComparisonViewOutputs(class)[datasets, public], + OutputsPreview(string)[datasets, public], + ParentRunId(string)[datasets, public], + ManifestId(string)[datasets, public], + ManifestS3Id(string)[datasets, public], + Events(array)[datasets, public], + RunSchemaComparisonViewEvent(class)[datasets, public], + Tags(array)[datasets, public], + TagsItem(string)[datasets, public], + RunSchemaComparisonViewInputsS3Urls(class)[datasets, public], + RunSchemaComparisonViewOutputsS3Urls(class)[datasets, public], + RunSchemaComparisonViewS3Urls(class)[datasets, public], TraceId(string)[datasets, public], - DottedOrder(anyOf)[datasets, public], - DottedOrderVariant1(string)[datasets, public], - DottedOrderVariant2(null)[datasets, public], + DottedOrder(string)[datasets, public], Id(string)[datasets, public], SessionId(string)[datasets, public], - ReferenceExampleId4(anyOf)[datasets, public], - ReferenceExampleIdVariant1(string)[datasets, public], - ReferenceExampleIdVariant2(null)[datasets, public], - TotalTokens2(anyOf)[datasets, public], - TotalTokensVariant1(int)[datasets, public], - TotalTokensVariant2(null)[datasets, public], - PromptTokens2(anyOf)[datasets, public], - PromptTokensVariant1(int)[datasets, public], - PromptTokensVariant2(null)[datasets, public], - CompletionTokens2(anyOf)[datasets, public], - CompletionTokensVariant1(int)[datasets, public], - CompletionTokensVariant2(null)[datasets, public], - TotalCost5(anyOf)[datasets, public], - TotalCostVariant1(string)[datasets, public], - TotalCostVariant2(null)[datasets, public], - PromptCost7(anyOf)[datasets, public], - PromptCostVariant1(string)[datasets, public], - PromptCostVariant2(null)[datasets, public], - CompletionCost7(anyOf)[datasets, public], - CompletionCostVariant1(string)[datasets, public], - CompletionCostVariant2(null)[datasets, public], + ReferenceExampleId(string)[datasets, public], + TotalTokens(int)[datasets, public], + PromptTokens(int)[datasets, public], + CompletionTokens(int)[datasets, public], + TotalCost(string)[datasets, public], + PromptCost(string)[datasets, public], + CompletionCost(string)[datasets, public], Status(string)[datasets, public], - FeedbackStats7(anyOf)[datasets, public], - RunSchemaComparisonViewFeedbackStats(class)[datasets, public], - RunSchemaComparisonViewFeedbackStats2(class)[datasets, public], - FeedbackStatsVariant2(null)[datasets, public], - AppPath(anyOf)[datasets, public], - AppPathVariant1(string)[datasets, public], - AppPathVariant2(null)[datasets, public], + RunSchemaComparisonViewFeedbackStats(class)[datasets, public], + RunSchemaComparisonViewFeedbackStats2(class)[datasets, public], + AppPath(string)[datasets, public], ExperimentResultRow(class)[datasets], - RowId(anyOf)[datasets], - RowIdVariant1(string)[datasets], - RowIdVariant2(null)[datasets], + RowId(string)[datasets], ExperimentResultRowInputs(class)[datasets], - ExpectedOutputs(anyOf)[datasets], - ExperimentResultRowExpectedOutputs(class)[datasets], - ExpectedOutputsVariant2(null)[datasets], - ActualOutputs(anyOf)[datasets], - ExperimentResultRowActualOutputs(class)[datasets], - ActualOutputsVariant2(null)[datasets], - EvaluationScores(anyOf)[datasets], - EvaluationScoresVariant1(array)[datasets], - FeedbackCreateCoreSchema(ref)[datasets], - EvaluationScoresVariant2(null)[datasets], + ExperimentResultRowExpectedOutputs(class)[datasets], + ExperimentResultRowActualOutputs(class)[datasets], + EvaluationScores(array)[datasets], + FeedbackCreateCoreSchema(ref)[datasets], StartTime(DateTime)[datasets], EndTime(DateTime)[datasets], - RunName(anyOf)[datasets], - RunNameVariant1(string)[datasets], - RunNameVariant2(null)[datasets], - Error2(anyOf)[datasets], - ErrorVariant1(string)[datasets], - ErrorVariant2(null)[datasets], - RunMetadata(anyOf)[datasets], - ExperimentResultRowRunMetadata(class)[datasets], - RunMetadataVariant2(null)[datasets], + RunName(string)[datasets], + Error(string)[datasets], + ExperimentResultRowRunMetadata(class)[datasets], FeedbackCreateCoreSchema(class)[datasets], CreatedAt(DateTime)[datasets], ModifiedAt(DateTime)[datasets], @@ -1373,159 +814,81 @@ ScoreVariant1(double)[datasets], ScoreVariant2(int)[datasets], ScoreVariant3(bool)[datasets], - ScoreVariant4(null)[datasets], Value2(anyOf)[datasets], ValueVariant1(double)[datasets], ValueVariant2(int)[datasets], ValueVariant3(bool)[datasets], ValueVariant4(string)[datasets], FeedbackCreateCoreSchemaValue(class)[datasets], - ValueVariant6(null)[datasets], - Comment2(anyOf)[datasets], - CommentVariant1(string)[datasets], - CommentVariant2(null)[datasets], + Comment(string)[datasets], Correction(anyOf)[datasets], FeedbackCreateCoreSchemaCorrection(class)[datasets], CorrectionVariant2(string)[datasets], - CorrectionVariant3(null)[datasets], - FeedbackGroupId(anyOf)[datasets], - FeedbackGroupIdVariant1(string)[datasets], - FeedbackGroupIdVariant2(null)[datasets], - ComparativeExperimentId(anyOf)[datasets], - ComparativeExperimentIdVariant1(string)[datasets], - ComparativeExperimentIdVariant2(null)[datasets], + FeedbackGroupId(string)[datasets], + ComparativeExperimentId(string)[datasets], Id(string)[datasets], FeedbackSource(anyOf)[datasets], AppFeedbackSource(ref)[datasets], APIFeedbackSource(ref)[datasets], ModelFeedbackSource(ref)[datasets], AutoEvalFeedbackSource(ref)[datasets], - FeedbackSourceVariant5(null)[datasets], - FeedbackConfig2(anyOf)[datasets], - FeedbackConfig(ref)[datasets], - FeedbackConfigVariant2(null)[datasets], + FeedbackConfig(ref)[datasets], ModelFeedbackSource(class)[feedback, datasets], Type(string)[feedback, datasets], - Metadata16(anyOf)[feedback, datasets], - ModelFeedbackSourceMetadata(class)[feedback, datasets], - MetadataVariant2(null)[feedback, datasets], + ModelFeedbackSourceMetadata(class)[feedback, datasets], ExperimentResultsUpload(class)[datasets], ExperimentName(string)[datasets], - ExperimentDescription(anyOf)[datasets], - ExperimentDescriptionVariant1(string)[datasets], - ExperimentDescriptionVariant2(null)[datasets], - DatasetId3(anyOf)[datasets], - DatasetIdVariant1(string)[datasets], - DatasetIdVariant2(null)[datasets], - DatasetName(anyOf)[datasets], - DatasetNameVariant1(string)[datasets], - DatasetNameVariant2(null)[datasets], - DatasetDescription(anyOf)[datasets], - DatasetDescriptionVariant1(string)[datasets], - DatasetDescriptionVariant2(null)[datasets], - SummaryExperimentScores(anyOf)[datasets], - SummaryExperimentScoresVariant1(array)[datasets], - FeedbackCreateCoreSchema(ref)[datasets], - SummaryExperimentScoresVariant2(null)[datasets], + ExperimentDescription(string)[datasets], + DatasetId(string)[datasets], + DatasetName(string)[datasets], + DatasetDescription(string)[datasets], + SummaryExperimentScores(array)[datasets], + FeedbackCreateCoreSchema(ref)[datasets], Results(array)[datasets], ExperimentResultRow(ref)[datasets], ExperimentStartTime(DateTime)[datasets], ExperimentEndTime(DateTime)[datasets], - ExperimentMetadata(anyOf)[datasets], - ExperimentResultsUploadExperimentMetadata(class)[datasets], - ExperimentMetadataVariant2(null)[datasets], + ExperimentResultsUploadExperimentMetadata(class)[datasets], ExperimentResultsUploadResult(class)[datasets], Dataset(ref)[datasets], TracerSession(ref)[datasets], TracerSession(class)[tracer-sessions, datasets, public], StartTime(DateTime)[tracer-sessions, datasets, public], - EndTime11(anyOf)[tracer-sessions, datasets, public], - EndTimeVariant1(DateTime)[tracer-sessions, datasets, public], - EndTimeVariant2(null)[tracer-sessions, datasets, public], - Extra11(anyOf)[tracer-sessions, datasets, public], - TracerSessionExtra(class)[tracer-sessions, datasets, public], - ExtraVariant2(null)[tracer-sessions, datasets, public], + EndTime(DateTime)[tracer-sessions, datasets, public], + TracerSessionExtra(class)[tracer-sessions, datasets, public], Name(string)[tracer-sessions, datasets, public], - Description38(anyOf)[tracer-sessions, datasets, public], - DescriptionVariant1(string)[tracer-sessions, datasets, public], - DescriptionVariant2(null)[tracer-sessions, datasets, public], - DefaultDatasetId(anyOf)[tracer-sessions, datasets, public], - DefaultDatasetIdVariant1(string)[tracer-sessions, datasets, public], - DefaultDatasetIdVariant2(null)[tracer-sessions, datasets, public], - ReferenceDatasetId(anyOf)[tracer-sessions, datasets, public], - ReferenceDatasetIdVariant1(string)[tracer-sessions, datasets, public], - ReferenceDatasetIdVariant2(null)[tracer-sessions, datasets, public], - TraceTier4(anyOf)[tracer-sessions, datasets, public], - TraceTier3(ref)[tracer-sessions, datasets, public], - TraceTierVariant2(null)[tracer-sessions, datasets, public], + Description(string)[tracer-sessions, datasets, public], + DefaultDatasetId(string)[tracer-sessions, datasets, public], + ReferenceDatasetId(string)[tracer-sessions, datasets, public], + TraceTier(ref)[tracer-sessions, datasets, public], Id(string)[tracer-sessions, datasets, public], - RunCount(anyOf)[tracer-sessions, datasets, public], - RunCountVariant1(int)[tracer-sessions, datasets, public], - RunCountVariant2(null)[tracer-sessions, datasets, public], - LatencyP503(anyOf)[tracer-sessions, datasets, public], - LatencyP50Variant1(double)[tracer-sessions, datasets, public], - LatencyP50Variant2(null)[tracer-sessions, datasets, public], - LatencyP993(anyOf)[tracer-sessions, datasets, public], - LatencyP99Variant1(double)[tracer-sessions, datasets, public], - LatencyP99Variant2(null)[tracer-sessions, datasets, public], - FirstTokenP503(anyOf)[tracer-sessions, datasets, public], - FirstTokenP50Variant1(double)[tracer-sessions, datasets, public], - FirstTokenP50Variant2(null)[tracer-sessions, datasets, public], - FirstTokenP993(anyOf)[tracer-sessions, datasets, public], - FirstTokenP99Variant1(double)[tracer-sessions, datasets, public], - FirstTokenP99Variant2(null)[tracer-sessions, datasets, public], - TotalTokens4(anyOf)[tracer-sessions, datasets, public], - TotalTokensVariant1(int)[tracer-sessions, datasets, public], - TotalTokensVariant2(null)[tracer-sessions, datasets, public], - PromptTokens4(anyOf)[tracer-sessions, datasets, public], - PromptTokensVariant1(int)[tracer-sessions, datasets, public], - PromptTokensVariant2(null)[tracer-sessions, datasets, public], - CompletionTokens4(anyOf)[tracer-sessions, datasets, public], - CompletionTokensVariant1(int)[tracer-sessions, datasets, public], - CompletionTokensVariant2(null)[tracer-sessions, datasets, public], - TotalCost8(anyOf)[tracer-sessions, datasets, public], - TotalCostVariant1(string)[tracer-sessions, datasets, public], - TotalCostVariant2(null)[tracer-sessions, datasets, public], - PromptCost10(anyOf)[tracer-sessions, datasets, public], - PromptCostVariant1(string)[tracer-sessions, datasets, public], - PromptCostVariant2(null)[tracer-sessions, datasets, public], - CompletionCost10(anyOf)[tracer-sessions, datasets, public], - CompletionCostVariant1(string)[tracer-sessions, datasets, public], - CompletionCostVariant2(null)[tracer-sessions, datasets, public], + RunCount(int)[tracer-sessions, datasets, public], + LatencyP50(double)[tracer-sessions, datasets, public], + LatencyP99(double)[tracer-sessions, datasets, public], + FirstTokenP50(double)[tracer-sessions, datasets, public], + FirstTokenP99(double)[tracer-sessions, datasets, public], + TotalTokens(int)[tracer-sessions, datasets, public], + PromptTokens(int)[tracer-sessions, datasets, public], + CompletionTokens(int)[tracer-sessions, datasets, public], + TotalCost(string)[tracer-sessions, datasets, public], + PromptCost(string)[tracer-sessions, datasets, public], + CompletionCost(string)[tracer-sessions, datasets, public], TenantId(string)[tracer-sessions, datasets, public], - LastRunStartTime3(anyOf)[tracer-sessions, datasets, public], - LastRunStartTimeVariant1(DateTime)[tracer-sessions, datasets, public], - LastRunStartTimeVariant2(null)[tracer-sessions, datasets, public], - LastRunStartTimeLive(anyOf)[tracer-sessions, datasets, public], - LastRunStartTimeLiveVariant1(DateTime)[tracer-sessions, datasets, public], - LastRunStartTimeLiveVariant2(null)[tracer-sessions, datasets, public], - FeedbackStats10(anyOf)[tracer-sessions, datasets, public], - TracerSessionFeedbackStats(class)[tracer-sessions, datasets, public], - FeedbackStatsVariant2(null)[tracer-sessions, datasets, public], - SessionFeedbackStats(anyOf)[tracer-sessions, datasets, public], - TracerSessionSessionFeedbackStats(class)[tracer-sessions, datasets, public], - SessionFeedbackStatsVariant2(null)[tracer-sessions, datasets, public], - RunFacets3(anyOf)[tracer-sessions, datasets, public], - RunFacetsVariant1(array)[tracer-sessions, datasets, public], - TracerSessionRunFacetsVariant1Item(class)[tracer-sessions, datasets, public], - RunFacetsVariant2(null)[tracer-sessions, datasets, public], - ErrorRate3(anyOf)[tracer-sessions, datasets, public], - ErrorRateVariant1(double)[tracer-sessions, datasets, public], - ErrorRateVariant2(null)[tracer-sessions, datasets, public], - StreamingRate3(anyOf)[tracer-sessions, datasets, public], - StreamingRateVariant1(double)[tracer-sessions, datasets, public], - StreamingRateVariant2(null)[tracer-sessions, datasets, public], - TestRunNumber(anyOf)[tracer-sessions, datasets, public], - TestRunNumberVariant1(int)[tracer-sessions, datasets, public], - TestRunNumberVariant2(null)[tracer-sessions, datasets, public], + LastRunStartTime(DateTime)[tracer-sessions, datasets, public], + LastRunStartTimeLive(DateTime)[tracer-sessions, datasets, public], + TracerSessionFeedbackStats(class)[tracer-sessions, datasets, public], + TracerSessionSessionFeedbackStats(class)[tracer-sessions, datasets, public], + RunFacets(array)[tracer-sessions, datasets, public], + TracerSessionRunFacet(class)[tracer-sessions, datasets, public], + ErrorRate(double)[tracer-sessions, datasets, public], + StreamingRate(double)[tracer-sessions, datasets, public], + TestRunNumber(int)[tracer-sessions, datasets, public], FeedbackConfigSchema(class)[feedback-configs], FeedbackKey(string)[feedback-configs], FeedbackConfig(ref)[feedback-configs], TenantId(string)[feedback-configs], ModifiedAt(DateTime)[feedback-configs], - IsLowerScoreBetter2(anyOf)[feedback-configs], - IsLowerScoreBetterVariant1(bool)[feedback-configs], - IsLowerScoreBetterVariant2(null)[feedback-configs], + IsLowerScoreBetter(bool)[feedback-configs], FeedbackCreateSchema(class)[feedback], CreatedAt(DateTime)[feedback], ModifiedAt(DateTime)[feedback], @@ -1534,82 +897,53 @@ ScoreVariant1(double)[feedback], ScoreVariant2(int)[feedback], ScoreVariant3(bool)[feedback], - ScoreVariant4(null)[feedback], Value3(anyOf)[feedback], ValueVariant1(double)[feedback], ValueVariant2(int)[feedback], ValueVariant3(bool)[feedback], ValueVariant4(string)[feedback], FeedbackCreateSchemaValue(class)[feedback], - ValueVariant6(null)[feedback], - Comment3(anyOf)[feedback], - CommentVariant1(string)[feedback], - CommentVariant2(null)[feedback], + Comment(string)[feedback], Correction2(anyOf)[feedback], FeedbackCreateSchemaCorrection(class)[feedback], CorrectionVariant2(string)[feedback], - CorrectionVariant3(null)[feedback], - FeedbackGroupId2(anyOf)[feedback], - FeedbackGroupIdVariant1(string)[feedback], - FeedbackGroupIdVariant2(null)[feedback], - ComparativeExperimentId2(anyOf)[feedback], - ComparativeExperimentIdVariant1(string)[feedback], - ComparativeExperimentIdVariant2(null)[feedback], - RunId(anyOf)[feedback], - RunIdVariant1(string)[feedback], - RunIdVariant2(null)[feedback], - SessionId(anyOf)[feedback], - SessionIdVariant1(string)[feedback], - SessionIdVariant2(null)[feedback], + FeedbackGroupId(string)[feedback], + ComparativeExperimentId(string)[feedback], + RunId(string)[feedback], + SessionId(string)[feedback], Id(string)[feedback], FeedbackSource2(anyOf)[feedback], AppFeedbackSource(ref)[feedback], APIFeedbackSource(ref)[feedback], ModelFeedbackSource(ref)[feedback], AutoEvalFeedbackSource(ref)[feedback], - FeedbackSourceVariant5(null)[feedback], - FeedbackConfig3(anyOf)[feedback], - FeedbackConfig(ref)[feedback], - FeedbackConfigVariant2(null)[feedback], + FeedbackConfig(ref)[feedback], FeedbackCreateWithTokenExtendedSchema(class)[feedback], Score3(anyOf)[feedback], ScoreVariant1(double)[feedback], ScoreVariant2(int)[feedback], ScoreVariant3(bool)[feedback], - ScoreVariant4(null)[feedback], Value4(anyOf)[feedback], ValueVariant1(double)[feedback], ValueVariant2(int)[feedback], ValueVariant3(bool)[feedback], ValueVariant4(string)[feedback], - ValueVariant5(null)[feedback], - Comment4(anyOf)[feedback], - CommentVariant1(string)[feedback], - CommentVariant2(null)[feedback], + Comment(string)[feedback], Correction3(anyOf)[feedback], FeedbackCreateWithTokenExtendedSchemaCorrection(class)[feedback], CorrectionVariant2(string)[feedback], - CorrectionVariant3(null)[feedback], - Metadata14(anyOf)[feedback], - FeedbackCreateWithTokenExtendedSchemaMetadata(class)[feedback], - MetadataVariant2(null)[feedback], + FeedbackCreateWithTokenExtendedSchemaMetadata(class)[feedback], FeedbackDelta(class)[datasets, public], ImprovedExamples(array)[datasets, public], ImprovedExamplesItem(string)[datasets, public], RegressedExamples(array)[datasets, public], RegressedExamplesItem(string)[datasets, public], FeedbackIngestTokenCreateSchema(class)[feedback], - ExpiresIn(anyOf)[feedback], - TimedeltaInput(ref)[feedback], - ExpiresInVariant2(null)[feedback], - ExpiresAt(anyOf)[feedback], - ExpiresAtVariant1(DateTime)[feedback], - ExpiresAtVariant2(null)[feedback], + TimedeltaInput(ref)[feedback], + ExpiresAt(DateTime)[feedback], RunId(string)[feedback], FeedbackKey(string)[feedback], - FeedbackConfig4(anyOf)[feedback], - FeedbackConfig(ref)[feedback], - FeedbackConfigVariant2(null)[feedback], + FeedbackConfig(ref)[feedback], FeedbackIngestTokenSchema(class)[feedback], Id(string)[feedback], Url(string)[feedback], @@ -1624,192 +958,94 @@ ScoreVariant1(double)[feedback, public], ScoreVariant2(int)[feedback, public], ScoreVariant3(bool)[feedback, public], - ScoreVariant4(null)[feedback, public], Value5(anyOf)[feedback, public], ValueVariant1(double)[feedback, public], ValueVariant2(int)[feedback, public], ValueVariant3(bool)[feedback, public], ValueVariant4(string)[feedback, public], FeedbackSchemaValue(class)[feedback, public], - ValueVariant6(null)[feedback, public], - Comment5(anyOf)[feedback, public], - CommentVariant1(string)[feedback, public], - CommentVariant2(null)[feedback, public], + Comment(string)[feedback, public], Correction4(anyOf)[feedback, public], FeedbackSchemaCorrection(class)[feedback, public], CorrectionVariant2(string)[feedback, public], - CorrectionVariant3(null)[feedback, public], - FeedbackGroupId3(anyOf)[feedback, public], - FeedbackGroupIdVariant1(string)[feedback, public], - FeedbackGroupIdVariant2(null)[feedback, public], - ComparativeExperimentId3(anyOf)[feedback, public], - ComparativeExperimentIdVariant1(string)[feedback, public], - ComparativeExperimentIdVariant2(null)[feedback, public], - RunId2(anyOf)[feedback, public], - RunIdVariant1(string)[feedback, public], - RunIdVariant2(null)[feedback, public], - SessionId2(anyOf)[feedback, public], - SessionIdVariant1(string)[feedback, public], - SessionIdVariant2(null)[feedback, public], + FeedbackGroupId(string)[feedback, public], + ComparativeExperimentId(string)[feedback, public], + RunId(string)[feedback, public], + SessionId(string)[feedback, public], Id(string)[feedback, public], - FeedbackSource3(anyOf)[feedback, public], - FeedbackSource4(ref)[feedback, public], - FeedbackSourceVariant2(null)[feedback, public], - FeedbackSource4(class)[feedback, public], - Type(anyOf)[feedback, public], - TypeVariant1(string)[feedback, public], - TypeVariant2(null)[feedback, public], - Metadata15(anyOf)[feedback, public], - FeedbackSourceMetadata(class)[feedback, public], - MetadataVariant2(null)[feedback, public], - UserId2(anyOf)[feedback, public], - UserIdVariant1(string)[feedback, public], - UserIdVariant2(null)[feedback, public], + FeedbackSource3(ref)[feedback, public], + FeedbackSource3(class)[feedback, public], + Type(string)[feedback, public], + FeedbackSourceMetadata(class)[feedback, public], + UserId(string)[feedback, public], FeedbackUpdateSchema(class)[feedback], Score5(anyOf)[feedback], ScoreVariant1(double)[feedback], ScoreVariant2(int)[feedback], ScoreVariant3(bool)[feedback], - ScoreVariant4(null)[feedback], Value6(anyOf)[feedback], ValueVariant1(double)[feedback], ValueVariant2(int)[feedback], ValueVariant3(bool)[feedback], ValueVariant4(string)[feedback], FeedbackUpdateSchemaValue(class)[feedback], - ValueVariant6(null)[feedback], - Comment6(anyOf)[feedback], - CommentVariant1(string)[feedback], - CommentVariant2(null)[feedback], + Comment(string)[feedback], Correction5(anyOf)[feedback], FeedbackUpdateSchemaCorrection(class)[feedback], CorrectionVariant2(string)[feedback], - CorrectionVariant3(null)[feedback], - FeedbackConfig5(anyOf)[feedback], - FeedbackConfig(ref)[feedback], - FeedbackConfigVariant2(null)[feedback], + FeedbackConfig(ref)[feedback], FilterQueryParamsForRunSchema(class)[run, public], - Id6(anyOf)[run, public], - IdVariant1(array)[run, public], - IdVariant1Item(string)[run, public], - IdVariant2(null)[run, public], - Trace2(anyOf)[run, public], - TraceVariant1(string)[run, public], - TraceVariant2(null)[run, public], - ParentRun2(anyOf)[run, public], - ParentRunVariant1(string)[run, public], - ParentRunVariant2(null)[run, public], - RunType2(anyOf)[run, public], - RunTypeEnum(ref)[run, public], - RunTypeVariant2(null)[run, public], - Session3(anyOf)[run, public], - SessionVariant1(array)[run, public], - SessionVariant1Item(string)[run, public], - SessionVariant2(null)[run, public], - ReferenceExample2(anyOf)[run, public], - ReferenceExampleVariant1(array)[run, public], - ReferenceExampleVariant1Item(string)[run, public], - ReferenceExampleVariant2(null)[run, public], - ExecutionOrder2(anyOf)[run, public], - ExecutionOrderVariant1(int)[run, public], - ExecutionOrderVariant2(null)[run, public], - StartTime2(anyOf)[run, public], - StartTimeVariant1(DateTime)[run, public], - StartTimeVariant2(null)[run, public], - EndTime4(anyOf)[run, public], - EndTimeVariant1(DateTime)[run, public], - EndTimeVariant2(null)[run, public], - Error3(anyOf)[run, public], - ErrorVariant1(bool)[run, public], - ErrorVariant2(null)[run, public], - Query2(anyOf)[run, public], - QueryVariant1(string)[run, public], - QueryVariant2(null)[run, public], - Filter3(anyOf)[run, public], - FilterVariant1(string)[run, public], - FilterVariant2(null)[run, public], - TraceFilter3(anyOf)[run, public], - TraceFilterVariant1(string)[run, public], - TraceFilterVariant2(null)[run, public], - TreeFilter3(anyOf)[run, public], - TreeFilterVariant1(string)[run, public], - TreeFilterVariant2(null)[run, public], - IsRoot2(anyOf)[run, public], - IsRootVariant1(bool)[run, public], - IsRootVariant2(null)[run, public], - DataSourceType2(anyOf)[run, public], - RunsFilterDataSourceTypeEnum(ref)[run, public], - DataSourceTypeVariant2(null)[run, public], + Id(array)[run, public], + IdItem(string)[run, public], + Trace(string)[run, public], + ParentRun(string)[run, public], + RunTypeEnum(ref)[run, public], + Session(array)[run, public], + SessionItem(string)[run, public], + ReferenceExample(array)[run, public], + ReferenceExampleItem(string)[run, public], + ExecutionOrder(int)[run, public], + StartTime(DateTime)[run, public], + EndTime(DateTime)[run, public], + Error(bool)[run, public], + Query(string)[run, public], + Filter(string)[run, public], + TraceFilter(string)[run, public], + TreeFilter(string)[run, public], + IsRoot(bool)[run, public], + RunsFilterDataSourceTypeEnum(ref)[run, public], FilterView(class)[tracer-sessions], - FilterString(anyOf)[tracer-sessions], - FilterStringVariant1(string)[tracer-sessions], - FilterStringVariant2(null)[tracer-sessions], - TraceFilterString(anyOf)[tracer-sessions], - TraceFilterStringVariant1(string)[tracer-sessions], - TraceFilterStringVariant2(null)[tracer-sessions], - TreeFilterString(anyOf)[tracer-sessions], - TreeFilterStringVariant1(string)[tracer-sessions], - TreeFilterStringVariant2(null)[tracer-sessions], + FilterString(string)[tracer-sessions], + TraceFilterString(string)[tracer-sessions], + TreeFilterString(string)[tracer-sessions], DisplayName(string)[tracer-sessions], - Description22(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], + Description(string)[tracer-sessions], Id(string)[tracer-sessions], - SessionId3(anyOf)[tracer-sessions], - SessionIdVariant1(string)[tracer-sessions], - SessionIdVariant2(null)[tracer-sessions], + SessionId(string)[tracer-sessions], CreatedAt(DateTime)[tracer-sessions], UpdatedAt(DateTime)[tracer-sessions], FilterViewCreate(class)[tracer-sessions], - FilterString2(anyOf)[tracer-sessions], - FilterStringVariant1(string)[tracer-sessions], - FilterStringVariant2(null)[tracer-sessions], - TraceFilterString2(anyOf)[tracer-sessions], - TraceFilterStringVariant1(string)[tracer-sessions], - TraceFilterStringVariant2(null)[tracer-sessions], - TreeFilterString2(anyOf)[tracer-sessions], - TreeFilterStringVariant1(string)[tracer-sessions], - TreeFilterStringVariant2(null)[tracer-sessions], + FilterString(string)[tracer-sessions], + TraceFilterString(string)[tracer-sessions], + TreeFilterString(string)[tracer-sessions], DisplayName(string)[tracer-sessions], - Description23(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], + Description(string)[tracer-sessions], FilterViewUpdate(class)[tracer-sessions], - FilterString3(anyOf)[tracer-sessions], - FilterStringVariant1(string)[tracer-sessions], - FilterStringVariant2(null)[tracer-sessions], - DisplayName(anyOf)[tracer-sessions], - DisplayNameVariant1(string)[tracer-sessions], - DisplayNameVariant2(null)[tracer-sessions], - Description24(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], - TraceFilterString3(anyOf)[tracer-sessions], - TraceFilterStringVariant1(string)[tracer-sessions], - TraceFilterStringVariant2(null)[tracer-sessions], - TreeFilterString3(anyOf)[tracer-sessions], - TreeFilterStringVariant1(string)[tracer-sessions], - TreeFilterStringVariant2(null)[tracer-sessions], + FilterString(string)[tracer-sessions], + DisplayName(string)[tracer-sessions], + Description(string)[tracer-sessions], + TraceFilterString(string)[tracer-sessions], + TreeFilterString(string)[tracer-sessions], ForkRepoRequest(class)[repos], RepoHandle(string)[repos], - Readme2(anyOf)[repos], - ReadmeVariant1(string)[repos], - ReadmeVariant2(null)[repos], - Description25(anyOf)[repos], - DescriptionVariant1(string)[repos], - DescriptionVariant2(null)[repos], - Tags3(anyOf)[repos], - TagsVariant1(array)[repos], - TagsVariant1Item(string)[repos], - TagsVariant2(null)[repos], - IsPublic(anyOf)[repos], - IsPublicVariant1(bool)[repos], - IsPublicVariant2(null)[repos], + Readme(string)[repos], + Description(string)[repos], + Tags(array)[repos], + TagsItem(string)[repos], + IsPublic(bool)[repos], GenerateSyntheticExamplesBody(class)[datasets], - ExampleIds(anyOf)[datasets], - ExampleIdsVariant1(array)[datasets], - ExampleIdsVariant1Item(string)[datasets], - ExampleIdsVariant2(null)[datasets], + ExampleIds(array)[datasets], + ExampleIdsItem(string)[datasets], NumExamples(int)[datasets], GetRepoResponse(class)[repos], RepoWithLookups(ref)[repos], @@ -1826,47 +1062,27 @@ Identity(class)[orgs, workspaces], Id(string)[orgs, workspaces], OrganizationId(string)[orgs, workspaces], - TenantId(anyOf)[orgs, workspaces], - TenantIdVariant1(string)[orgs, workspaces], - TenantIdVariant2(null)[orgs, workspaces], + TenantId(string)[orgs, workspaces], CreatedAt(DateTime)[orgs, workspaces], UserId(string)[orgs, workspaces], - LsUserId2(anyOf)[orgs, workspaces], - LsUserIdVariant1(string)[orgs, workspaces], - LsUserIdVariant2(null)[orgs, workspaces], + LsUserId(string)[orgs, workspaces], ReadOnly(bool)[orgs, workspaces], - RoleId2(anyOf)[orgs, workspaces], - RoleIdVariant1(string)[orgs, workspaces], - RoleIdVariant2(null)[orgs, workspaces], - RoleName(anyOf)[orgs, workspaces], - RoleNameVariant1(string)[orgs, workspaces], - RoleNameVariant2(null)[orgs, workspaces], + RoleId(string)[orgs, workspaces], + RoleName(string)[orgs, workspaces], AccessScope(ref)[orgs, workspaces], IdentityAnnotationQueueRunStatusCreateSchema(class)[annotation-queues], - Status(anyOf)[annotation-queues], - StatusVariant1(string)[annotation-queues], - StatusVariant2(null)[annotation-queues], - OverrideAddedAt(anyOf)[annotation-queues], - OverrideAddedAtVariant1(DateTime)[annotation-queues], - OverrideAddedAtVariant2(null)[annotation-queues], + Status(string)[annotation-queues], + OverrideAddedAt(DateTime)[annotation-queues], IdentityCreate(class)[workspaces], UserId(string)[workspaces], - ReadOnly2(anyOf)[workspaces], - ReadOnlyVariant1(bool)[workspaces], - ReadOnlyVariant2(null)[workspaces], - RoleId3(anyOf)[workspaces], - RoleIdVariant1(string)[workspaces], - RoleIdVariant2(null)[workspaces], + ReadOnly(bool)[workspaces], + RoleId(string)[workspaces], IdentityPatch(class)[tenant, workspaces], - ReadOnly3(anyOf)[tenant, workspaces], - ReadOnlyVariant1(bool)[tenant, workspaces], - ReadOnlyVariant2(null)[tenant, workspaces], + ReadOnly(bool)[tenant, workspaces], RoleId(string)[tenant, workspaces], InfoGetResponse(class)[info], Version(string)[info], - LicenseExpirationTime(anyOf)[info], - LicenseExpirationTimeVariant1(DateTime)[info], - LicenseExpirationTimeVariant2(null)[info], + LicenseExpirationTime(DateTime)[info], BatchIngestConfig(ref)[info], InfoGetResponseInstanceFlags(class)[info], InvokePromptPayload(class)[prompts], @@ -1891,215 +1107,103 @@ Runs(array)[public], RunPublicDatasetSchema(ref)[public], ListPublicDatasetRunsResponseCursors(class)[public], - Cursors(anyOf)[public], - CursorsVariant1(string)[public], - CursorsVariant2(null)[public], - ParsedQuery(anyOf)[public], - ParsedQueryVariant1(string)[public], - ParsedQueryVariant2(null)[public], + Cursors(string)[public], + ParsedQuery(string)[public], RunPublicDatasetSchema(class)[public], Name(string)[public], - Inputs6(anyOf)[public], - RunPublicDatasetSchemaInputs(class)[public], - InputsVariant2(null)[public], - InputsPreview(anyOf)[public], - InputsPreviewVariant1(string)[public], - InputsPreviewVariant2(null)[public], + RunPublicDatasetSchemaInputs(class)[public], + InputsPreview(string)[public], RunTypeEnum(ref)[public], StartTime(DateTime)[public], - EndTime6(anyOf)[public], - EndTimeVariant1(DateTime)[public], - EndTimeVariant2(null)[public], - Extra6(anyOf)[public], - RunPublicDatasetSchemaExtra(class)[public], - ExtraVariant2(null)[public], - Error5(anyOf)[public], - ErrorVariant1(string)[public], - ErrorVariant2(null)[public], + EndTime(DateTime)[public], + RunPublicDatasetSchemaExtra(class)[public], + Error(string)[public], ExecutionOrder(int)[public], - Serialized(anyOf)[public], - RunPublicDatasetSchemaSerialized(class)[public], - SerializedVariant2(null)[public], - Outputs10(anyOf)[public], - RunPublicDatasetSchemaOutputs(class)[public], - OutputsVariant2(null)[public], - OutputsPreview(anyOf)[public], - OutputsPreviewVariant1(string)[public], - OutputsPreviewVariant2(null)[public], - ParentRunId(anyOf)[public], - ParentRunIdVariant1(string)[public], - ParentRunIdVariant2(null)[public], - ManifestId(anyOf)[public], - ManifestIdVariant1(string)[public], - ManifestIdVariant2(null)[public], - ManifestS3Id(anyOf)[public], - ManifestS3IdVariant1(string)[public], - ManifestS3IdVariant2(null)[public], - Events(anyOf)[public], - EventsVariant1(array)[public], - RunPublicDatasetSchemaEventsVariant1Item(class)[public], - EventsVariant2(null)[public], - Tags4(anyOf)[public], - TagsVariant1(array)[public], - TagsVariant1Item(string)[public], - TagsVariant2(null)[public], - InputsS3Urls(anyOf)[public], - RunPublicDatasetSchemaInputsS3Urls(class)[public], - InputsS3UrlsVariant2(null)[public], - OutputsS3Urls(anyOf)[public], - RunPublicDatasetSchemaOutputsS3Urls(class)[public], - OutputsS3UrlsVariant2(null)[public], - S3Urls(anyOf)[public], - RunPublicDatasetSchemaS3Urls(class)[public], - S3UrlsVariant2(null)[public], + RunPublicDatasetSchemaSerialized(class)[public], + RunPublicDatasetSchemaOutputs(class)[public], + OutputsPreview(string)[public], + ParentRunId(string)[public], + ManifestId(string)[public], + ManifestS3Id(string)[public], + Events(array)[public], + RunPublicDatasetSchemaEvent(class)[public], + Tags(array)[public], + TagsItem(string)[public], + RunPublicDatasetSchemaInputsS3Urls(class)[public], + RunPublicDatasetSchemaOutputsS3Urls(class)[public], + RunPublicDatasetSchemaS3Urls(class)[public], TraceId(string)[public], DottedOrder(string)[public], Id(string)[public], Status(string)[public], - ChildRunIds(anyOf)[public], - ChildRunIdsVariant1(array)[public], - ChildRunIdsVariant1Item(string)[public], - ChildRunIdsVariant2(null)[public], - DirectChildRunIds(anyOf)[public], - DirectChildRunIdsVariant1(array)[public], - DirectChildRunIdsVariant1Item(string)[public], - DirectChildRunIdsVariant2(null)[public], - ParentRunIds(anyOf)[public], - ParentRunIdsVariant1(array)[public], - ParentRunIdsVariant1Item(string)[public], - ParentRunIdsVariant2(null)[public], - FeedbackStats4(anyOf)[public], - RunPublicDatasetSchemaFeedbackStats(class)[public], - RunPublicDatasetSchemaFeedbackStats2(class)[public], - FeedbackStatsVariant2(null)[public], - ReferenceExampleId(anyOf)[public], - ReferenceExampleIdVariant1(string)[public], - ReferenceExampleIdVariant2(null)[public], + ChildRunIds(array)[public], + ChildRunIdsItem(string)[public], + DirectChildRunIds(array)[public], + DirectChildRunIdsItem(string)[public], + ParentRunIds(array)[public], + ParentRunIdsItem(string)[public], + RunPublicDatasetSchemaFeedbackStats(class)[public], + RunPublicDatasetSchemaFeedbackStats2(class)[public], + ReferenceExampleId(string)[public], TotalTokens(int)[public], PromptTokens(int)[public], CompletionTokens(int)[public], - TotalCost2(anyOf)[public], - TotalCostVariant1(string)[public], - TotalCostVariant2(null)[public], - PromptCost4(anyOf)[public], - PromptCostVariant1(string)[public], - PromptCostVariant2(null)[public], - CompletionCost4(anyOf)[public], - CompletionCostVariant1(string)[public], - CompletionCostVariant2(null)[public], - PriceModelId(anyOf)[public], - PriceModelIdVariant1(string)[public], - PriceModelIdVariant2(null)[public], - FirstTokenTime(anyOf)[public], - FirstTokenTimeVariant1(DateTime)[public], - FirstTokenTimeVariant2(null)[public], + TotalCost(string)[public], + PromptCost(string)[public], + CompletionCost(string)[public], + PriceModelId(string)[public], + FirstTokenTime(DateTime)[public], SessionId(string)[public], ListPublicRunsResponse(class)[public], Runs(array)[public], RunPublicSchema(ref)[public], ListPublicRunsResponseCursors(class)[public], - Cursors2(anyOf)[public], - CursorsVariant1(string)[public], - CursorsVariant2(null)[public], - ParsedQuery2(anyOf)[public], - ParsedQueryVariant1(string)[public], - ParsedQueryVariant2(null)[public], + Cursors(string)[public], + ParsedQuery(string)[public], RunPublicSchema(class)[public], Name(string)[public], - Inputs7(anyOf)[public], - RunPublicSchemaInputs(class)[public], - InputsVariant2(null)[public], - InputsPreview2(anyOf)[public], - InputsPreviewVariant1(string)[public], - InputsPreviewVariant2(null)[public], + RunPublicSchemaInputs(class)[public], + InputsPreview(string)[public], RunTypeEnum(ref)[public], StartTime(DateTime)[public], - EndTime7(anyOf)[public], - EndTimeVariant1(DateTime)[public], - EndTimeVariant2(null)[public], - Extra7(anyOf)[public], - RunPublicSchemaExtra(class)[public], - ExtraVariant2(null)[public], - Error6(anyOf)[public], - ErrorVariant1(string)[public], - ErrorVariant2(null)[public], + EndTime(DateTime)[public], + RunPublicSchemaExtra(class)[public], + Error(string)[public], ExecutionOrder(int)[public], - Serialized2(anyOf)[public], - RunPublicSchemaSerialized(class)[public], - SerializedVariant2(null)[public], - Outputs11(anyOf)[public], - RunPublicSchemaOutputs(class)[public], - OutputsVariant2(null)[public], - OutputsPreview2(anyOf)[public], - OutputsPreviewVariant1(string)[public], - OutputsPreviewVariant2(null)[public], - ParentRunId2(anyOf)[public], - ParentRunIdVariant1(string)[public], - ParentRunIdVariant2(null)[public], - ManifestId2(anyOf)[public], - ManifestIdVariant1(string)[public], - ManifestIdVariant2(null)[public], - ManifestS3Id2(anyOf)[public], - ManifestS3IdVariant1(string)[public], - ManifestS3IdVariant2(null)[public], - Events2(anyOf)[public], - EventsVariant1(array)[public], - RunPublicSchemaEventsVariant1Item(class)[public], - EventsVariant2(null)[public], - Tags5(anyOf)[public], - TagsVariant1(array)[public], - TagsVariant1Item(string)[public], - TagsVariant2(null)[public], - InputsS3Urls2(anyOf)[public], - RunPublicSchemaInputsS3Urls(class)[public], - InputsS3UrlsVariant2(null)[public], - OutputsS3Urls2(anyOf)[public], - RunPublicSchemaOutputsS3Urls(class)[public], - OutputsS3UrlsVariant2(null)[public], - S3Urls2(anyOf)[public], - RunPublicSchemaS3Urls(class)[public], - S3UrlsVariant2(null)[public], + RunPublicSchemaSerialized(class)[public], + RunPublicSchemaOutputs(class)[public], + OutputsPreview(string)[public], + ParentRunId(string)[public], + ManifestId(string)[public], + ManifestS3Id(string)[public], + Events(array)[public], + RunPublicSchemaEvent(class)[public], + Tags(array)[public], + TagsItem(string)[public], + RunPublicSchemaInputsS3Urls(class)[public], + RunPublicSchemaOutputsS3Urls(class)[public], + RunPublicSchemaS3Urls(class)[public], TraceId(string)[public], DottedOrder(string)[public], Id(string)[public], Status(string)[public], - ChildRunIds2(anyOf)[public], - ChildRunIdsVariant1(array)[public], - ChildRunIdsVariant1Item(string)[public], - ChildRunIdsVariant2(null)[public], - DirectChildRunIds2(anyOf)[public], - DirectChildRunIdsVariant1(array)[public], - DirectChildRunIdsVariant1Item(string)[public], - DirectChildRunIdsVariant2(null)[public], - ParentRunIds2(anyOf)[public], - ParentRunIdsVariant1(array)[public], - ParentRunIdsVariant1Item(string)[public], - ParentRunIdsVariant2(null)[public], - FeedbackStats5(anyOf)[public], - RunPublicSchemaFeedbackStats(class)[public], - RunPublicSchemaFeedbackStats2(class)[public], - FeedbackStatsVariant2(null)[public], - ReferenceExampleId2(anyOf)[public], - ReferenceExampleIdVariant1(string)[public], - ReferenceExampleIdVariant2(null)[public], + ChildRunIds(array)[public], + ChildRunIdsItem(string)[public], + DirectChildRunIds(array)[public], + DirectChildRunIdsItem(string)[public], + ParentRunIds(array)[public], + ParentRunIdsItem(string)[public], + RunPublicSchemaFeedbackStats(class)[public], + RunPublicSchemaFeedbackStats2(class)[public], + ReferenceExampleId(string)[public], TotalTokens(int)[public], PromptTokens(int)[public], CompletionTokens(int)[public], - TotalCost3(anyOf)[public], - TotalCostVariant1(string)[public], - TotalCostVariant2(null)[public], - PromptCost5(anyOf)[public], - PromptCostVariant1(string)[public], - PromptCostVariant2(null)[public], - CompletionCost5(anyOf)[public], - CompletionCostVariant1(string)[public], - CompletionCostVariant2(null)[public], - PriceModelId2(anyOf)[public], - PriceModelIdVariant1(string)[public], - PriceModelIdVariant2(null)[public], - FirstTokenTime2(anyOf)[public], - FirstTokenTimeVariant1(DateTime)[public], - FirstTokenTimeVariant2(null)[public], + TotalCost(string)[public], + PromptCost(string)[public], + CompletionCost(string)[public], + PriceModelId(string)[public], + FirstTokenTime(DateTime)[public], ListReposResponse(class)[repos], Repos(array)[repos], RepoWithLookups(ref)[repos], @@ -2108,12 +1212,8 @@ Runs(array)[run], RunSchema(ref)[run], ListRunsResponseCursors(class)[run], - Cursors3(anyOf)[run], - CursorsVariant1(string)[run], - CursorsVariant2(null)[run], - ParsedQuery3(anyOf)[run], - ParsedQueryVariant1(string)[run], - ParsedQueryVariant2(null)[run], + Cursors(string)[run], + ParsedQuery(string)[run], ListTagsResponse(class)[repos], Tags(array)[repos], TagCount(ref)[repos], @@ -2123,39 +1223,23 @@ MemberIdentity(class)[tenant, workspaces], Id(string)[tenant, workspaces], OrganizationId(string)[tenant, workspaces], - TenantId2(anyOf)[tenant, workspaces], - TenantIdVariant1(string)[tenant, workspaces], - TenantIdVariant2(null)[tenant, workspaces], + TenantId(string)[tenant, workspaces], CreatedAt(DateTime)[tenant, workspaces], UserId(string)[tenant, workspaces], - LsUserId3(anyOf)[tenant, workspaces], - LsUserIdVariant1(string)[tenant, workspaces], - LsUserIdVariant2(null)[tenant, workspaces], + LsUserId(string)[tenant, workspaces], ReadOnly(bool)[tenant, workspaces], - RoleId4(anyOf)[tenant, workspaces], - RoleIdVariant1(string)[tenant, workspaces], - RoleIdVariant2(null)[tenant, workspaces], - RoleName2(anyOf)[tenant, workspaces], - RoleNameVariant1(string)[tenant, workspaces], - RoleNameVariant2(null)[tenant, workspaces], + RoleId(string)[tenant, workspaces], + RoleName(string)[tenant, workspaces], AccessScope(ref)[tenant, workspaces], - Email(anyOf)[tenant, workspaces], - EmailVariant1(string)[tenant, workspaces], - EmailVariant2(null)[tenant, workspaces], - FullName3(anyOf)[tenant, workspaces], - FullNameVariant1(string)[tenant, workspaces], - FullNameVariant2(null)[tenant, workspaces], - AvatarUrl(anyOf)[tenant, workspaces], - AvatarUrlVariant1(string)[tenant, workspaces], - AvatarUrlVariant2(null)[tenant, workspaces], + Email(string)[tenant, workspaces], + FullName(string)[tenant, workspaces], + AvatarUrl(string)[tenant, workspaces], MetadataKeyValue(class)[run], Key(string)[run], Value(string)[run], ModelPriceMapCreateSchema(class)[model-price-map], Name(string)[model-price-map], - StartTime3(anyOf)[model-price-map], - StartTimeVariant1(DateTime)[model-price-map], - StartTimeVariant2(null)[model-price-map], + StartTime(DateTime)[model-price-map], MatchPath(array)[model-price-map], MatchPathItem(string)[model-price-map], MatchPattern(string)[model-price-map], @@ -2165,14 +1249,10 @@ CompletionCost(anyOf)[model-price-map], CompletionCostVariant1(double)[model-price-map], CompletionCostVariant2(string)[model-price-map], - Provider(anyOf)[model-price-map], - ProviderVariant1(string)[model-price-map], - ProviderVariant2(null)[model-price-map], + Provider(string)[model-price-map], ModelPriceMapUpdateSchema(class)[model-price-map], Name(string)[model-price-map], - StartTime4(anyOf)[model-price-map], - StartTimeVariant1(DateTime)[model-price-map], - StartTimeVariant2(null)[model-price-map], + StartTime(DateTime)[model-price-map], MatchPath(array)[model-price-map], MatchPathItem(string)[model-price-map], MatchPattern(string)[model-price-map], @@ -2182,37 +1262,25 @@ CompletionCost2(anyOf)[model-price-map], CompletionCostVariant1(double)[model-price-map], CompletionCostVariant2(string)[model-price-map], - Provider2(anyOf)[model-price-map], - ProviderVariant1(string)[model-price-map], - ProviderVariant2(null)[model-price-map], + Provider(string)[model-price-map], MonitorBlock(class)[run], Title(string)[run], Section(string)[run], Columns(array)[run], ColumnsItem(string)[run], - Subtitle(anyOf)[run], - SubtitleVariant1(string)[run], - SubtitleVariant2(null)[run], + Subtitle(string)[run], Rows(array)[run], RowsItem(array)[run], MonitorBlockRowItem(class)[run], MonitorBlockChartSpec(class)[run], - ClickTarget(anyOf)[run], - ClickTargetVariant1(string)[run], - ClickTargetVariant2(null)[run], - ToggleableMarks(anyOf)[run], - MonitorBlockToggleableMarks(class)[run], - ToggleableMarksVariant1(array)[run], - ToggleableMarksVariant1Item(int)[run], - ToggleableMarksVariant2(null)[run], + ClickTarget(string)[run], + MonitorBlockToggleableMarks(class)[run], + ToggleableMarks(array)[run], + ToggleableMarksItem(int)[run], MonitorGroupSpec(class)[run], Session(string)[run], - Tag3(anyOf)[run], - TagVariant1(string)[run], - TagVariant2(null)[run], - Metadata17(anyOf)[run], - MetadataKeyValue(ref)[run], - MetadataVariant2(null)[run], + Tag(string)[run], + MetadataKeyValue(ref)[run], MonitorRequest(class)[run], Timezone(string)[run], Groups(array)[run], @@ -2228,118 +1296,62 @@ OptimizePromptRequestMetaprompt(class)[repos], Examples(array)[repos], ExampleRunWithFeedback(ref)[repos], - OverallFeedback(anyOf)[repos], - OverallFeedbackVariant1(string)[repos], - OverallFeedbackVariant2(null)[repos], + OverallFeedback(string)[repos], OptimizePromptResponse(class)[repos], Prompt(string)[repos], - Error4(anyOf)[repos], - ErrorVariant1(string)[repos], - ErrorVariant2(null)[repos], + Error(string)[repos], OrgFeatureFlags(enum)[], OrgIdentityPatch(class)[orgs], - Password3(anyOf)[orgs], - PasswordVariant1(string)[orgs], - PasswordVariant2(null)[orgs], - FullName4(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], - RoleId5(anyOf)[orgs], - RoleIdVariant1(string)[orgs], - RoleIdVariant2(null)[orgs], + Password(string)[orgs], + FullName(string)[orgs], + RoleId(string)[orgs], OrgMemberIdentity(class)[orgs], Id(string)[orgs], OrganizationId(string)[orgs], - TenantId3(anyOf)[orgs], - TenantIdVariant1(string)[orgs], - TenantIdVariant2(null)[orgs], + TenantId(string)[orgs], CreatedAt(DateTime)[orgs], UserId(string)[orgs], - LsUserId4(anyOf)[orgs], - LsUserIdVariant1(string)[orgs], - LsUserIdVariant2(null)[orgs], + LsUserId(string)[orgs], ReadOnly(bool)[orgs], - RoleId6(anyOf)[orgs], - RoleIdVariant1(string)[orgs], - RoleIdVariant2(null)[orgs], - RoleName3(anyOf)[orgs], - RoleNameVariant1(string)[orgs], - RoleNameVariant2(null)[orgs], + RoleId(string)[orgs], + RoleName(string)[orgs], AccessScope(ref)[orgs], - Email2(anyOf)[orgs], - EmailVariant1(string)[orgs], - EmailVariant2(null)[orgs], - FullName5(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], - AvatarUrl2(anyOf)[orgs], - AvatarUrlVariant1(string)[orgs], - AvatarUrlVariant2(null)[orgs], + Email(string)[orgs], + FullName(string)[orgs], + AvatarUrl(string)[orgs], TenantIds(array)[orgs], TenantIdsItem(string)[orgs], OrgPendingIdentity(class)[orgs], Email(string)[orgs], ReadOnly(bool)[orgs], - RoleId7(anyOf)[orgs], - RoleIdVariant1(string)[orgs], - RoleIdVariant2(null)[orgs], - WorkspaceIds2(anyOf)[orgs], - WorkspaceIdsVariant1(array)[orgs], - WorkspaceIdsVariant1Item(string)[orgs], - WorkspaceIdsVariant2(null)[orgs], - WorkspaceRoleId2(anyOf)[orgs], - WorkspaceRoleIdVariant1(string)[orgs], - WorkspaceRoleIdVariant2(null)[orgs], - Password4(anyOf)[orgs], - PasswordVariant1(string)[orgs], - PasswordVariant2(null)[orgs], - FullName6(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], + RoleId(string)[orgs], + WorkspaceIds(array)[orgs], + WorkspaceIdsItem(string)[orgs], + WorkspaceRoleId(string)[orgs], + Password(string)[orgs], + FullName(string)[orgs], AccessScope(ref)[orgs], Id(string)[orgs], - UserId3(anyOf)[orgs], - UserIdVariant1(string)[orgs], - UserIdVariant2(null)[orgs], - TenantId4(anyOf)[orgs], - TenantIdVariant1(string)[orgs], - TenantIdVariant2(null)[orgs], - OrganizationId(anyOf)[orgs], - OrganizationIdVariant1(string)[orgs], - OrganizationIdVariant2(null)[orgs], + UserId(string)[orgs], + TenantId(string)[orgs], + OrganizationId(string)[orgs], CreatedAt(DateTime)[orgs], - RoleName4(anyOf)[orgs], - RoleNameVariant1(string)[orgs], - RoleNameVariant2(null)[orgs], + RoleName(string)[orgs], TenantIds(array)[orgs], TenantIdsItem(string)[orgs], Organization(class)[orgs], - Id7(anyOf)[orgs], - IdVariant1(string)[orgs], - IdVariant2(null)[orgs], - DisplayName2(anyOf)[orgs], - DisplayNameVariant1(string)[orgs], - DisplayNameVariant2(null)[orgs], + Id(string)[orgs], + DisplayName(string)[orgs], OrganizationConfig(ref)[orgs], ConnectedToStripe(bool)[orgs], ConnectedToMetronome(bool)[orgs], IsPersonal(bool)[orgs], - Tier(anyOf)[orgs], - PaymentPlanTier(ref)[orgs], - TierVariant2(null)[orgs], - PaymentMethod(anyOf)[orgs], - StripePaymentMethodInfo(ref)[orgs], - PaymentMethodVariant2(null)[orgs], + PaymentPlanTier(ref)[orgs], + StripePaymentMethodInfo(ref)[orgs], HasCancelled(bool)[orgs], - EndOfBillingPeriod(anyOf)[orgs], - EndOfBillingPeriodVariant1(DateTime)[orgs], - EndOfBillingPeriodVariant2(null)[orgs], - CurrentPlan(anyOf)[orgs], - CustomerVisiblePlanInfo(ref)[orgs], - CurrentPlanVariant2(null)[orgs], - UpcomingPlan(anyOf)[orgs], - CustomerVisiblePlanInfo(ref)[orgs], - UpcomingPlanVariant2(null)[orgs], + EndOfBillingPeriod(DateTime)[orgs], + CustomerVisiblePlanInfo(ref)[orgs], + CustomerVisiblePlanInfo(ref)[orgs], ReachedMaxWorkspaces(bool)[orgs], Permissions(array)[orgs], PermissionsItem(string)[orgs], @@ -2348,15 +1360,9 @@ MaxWorkspaces(int)[orgs], CanUseRbac(bool)[orgs], CanAddSeats(bool)[orgs], - StartupPlanApprovalDate(anyOf)[orgs], - StartupPlanApprovalDateVariant1(string)[orgs], - StartupPlanApprovalDateVariant2(null)[orgs], - PartnerPlanApprovalDate(anyOf)[orgs], - PartnerPlanApprovalDateVariant1(string)[orgs], - PartnerPlanApprovalDateVariant2(null)[orgs], - PremierPlanApprovalDate(anyOf)[orgs], - PremierPlanApprovalDateVariant1(string)[orgs], - PremierPlanApprovalDateVariant2(null)[orgs], + StartupPlanApprovalDate(string)[orgs], + PartnerPlanApprovalDate(string)[orgs], + PremierPlanApprovalDate(string)[orgs], CanServeDatasets(bool)[orgs], CanUseLanggraphCloud(bool)[orgs], MaxLanggraphCloudDeployments(int)[orgs], @@ -2366,45 +1372,23 @@ OrganizationConfigFlags(class)[orgs], Flags(bool)[orgs], StripePaymentMethodInfo(class)[orgs], - Brand(anyOf)[orgs], - BrandVariant1(string)[orgs], - BrandVariant2(null)[orgs], - Last4(anyOf)[orgs], - Last4Variant1(string)[orgs], - Last4Variant2(null)[orgs], - ExpMonth(anyOf)[orgs], - ExpMonthVariant1(int)[orgs], - ExpMonthVariant2(null)[orgs], - ExpYear(anyOf)[orgs], - ExpYearVariant1(int)[orgs], - ExpYearVariant2(null)[orgs], - Email4(anyOf)[orgs], - EmailVariant1(string)[orgs], - EmailVariant2(null)[orgs], + Brand(string)[orgs], + Last4(string)[orgs], + ExpMonth(int)[orgs], + ExpYear(int)[orgs], + Email(string)[orgs], OrganizationBillingInfo(class)[orgs], - Id8(anyOf)[orgs], - IdVariant1(string)[orgs], - IdVariant2(null)[orgs], + Id(string)[orgs], DisplayName(string)[orgs], OrganizationConfig(ref)[orgs], ConnectedToStripe(bool)[orgs], ConnectedToMetronome(bool)[orgs], IsPersonal(bool)[orgs], - Tier2(anyOf)[orgs], - PaymentPlanTier(ref)[orgs], - TierVariant2(null)[orgs], - PaymentMethod2(anyOf)[orgs], - StripePaymentMethodInfo(ref)[orgs], - PaymentMethodVariant2(null)[orgs], - EndOfBillingPeriod2(anyOf)[orgs], - EndOfBillingPeriodVariant1(DateTime)[orgs], - EndOfBillingPeriodVariant2(null)[orgs], - CurrentPlan2(anyOf)[orgs], - CustomerVisiblePlanInfo(ref)[orgs], - CurrentPlanVariant2(null)[orgs], - UpcomingPlan2(anyOf)[orgs], - CustomerVisiblePlanInfo(ref)[orgs], - UpcomingPlanVariant2(null)[orgs], + PaymentPlanTier(ref)[orgs], + StripePaymentMethodInfo(ref)[orgs], + EndOfBillingPeriod(DateTime)[orgs], + CustomerVisiblePlanInfo(ref)[orgs], + CustomerVisiblePlanInfo(ref)[orgs], ReachedMaxWorkspaces(bool)[orgs], Disabled(bool)[orgs], OrganizationCreate(class)[orgs], @@ -2415,25 +1399,17 @@ EmbeddableUrl(string)[orgs], OrganizationDashboardType(enum)[orgs], OrganizationInfo(class)[orgs], - Id9(anyOf)[orgs], - IdVariant1(string)[orgs], - IdVariant2(null)[orgs], - DisplayName3(anyOf)[orgs], - DisplayNameVariant1(string)[orgs], - DisplayNameVariant2(null)[orgs], + Id(string)[orgs], + DisplayName(string)[orgs], OrganizationConfig(ref)[orgs], IsPersonal(bool)[orgs], - Tier3(anyOf)[orgs], - PaymentPlanTier(ref)[orgs], - TierVariant2(null)[orgs], + PaymentPlanTier(ref)[orgs], ReachedMaxWorkspaces(bool)[orgs], Permissions(array)[orgs], PermissionsItem(string)[orgs], Disabled(bool)[orgs], SsoOnly(bool)[orgs], - SsoLoginSlug(anyOf)[orgs], - SsoLoginSlugVariant1(string)[orgs], - SsoLoginSlugVariant2(null)[orgs], + SsoLoginSlug(string)[orgs], OrganizationMembers(class)[orgs], OrganizationId(string)[orgs], Members(array)[orgs], @@ -2443,79 +1419,41 @@ OrganizationPGSchemaSlim(class)[orgs], Id(string)[orgs], DisplayName(string)[orgs], - CreatedAt5(anyOf)[orgs], - CreatedAtVariant1(DateTime)[orgs], - CreatedAtVariant2(null)[orgs], - CreatedByUserId(anyOf)[orgs], - CreatedByUserIdVariant1(string)[orgs], - CreatedByUserIdVariant2(null)[orgs], - ModifiedAt5(anyOf)[orgs], - ModifiedAtVariant1(DateTime)[orgs], - ModifiedAtVariant2(null)[orgs], + CreatedAt(DateTime)[orgs], + CreatedByUserId(string)[orgs], + ModifiedAt(DateTime)[orgs], IsPersonal(bool)[orgs], Disabled(bool)[orgs], - SsoLoginSlug2(anyOf)[orgs], - SsoLoginSlugVariant1(string)[orgs], - SsoLoginSlugVariant2(null)[orgs], + SsoLoginSlug(string)[orgs], SsoOnly(bool)[orgs], OrganizationUpdate(class)[orgs], - DisplayName4(anyOf)[orgs], - DisplayNameVariant1(string)[orgs], - DisplayNameVariant2(null)[orgs], + DisplayName(string)[orgs], PagerdutySeverity(enum)[run], PendingIdentity(class)[orgs, tenant, workspaces], Email(string)[orgs, tenant, workspaces], ReadOnly(bool)[orgs, tenant, workspaces], - RoleId8(anyOf)[orgs, tenant, workspaces], - RoleIdVariant1(string)[orgs, tenant, workspaces], - RoleIdVariant2(null)[orgs, tenant, workspaces], - WorkspaceIds3(anyOf)[orgs, tenant, workspaces], - WorkspaceIdsVariant1(array)[orgs, tenant, workspaces], - WorkspaceIdsVariant1Item(string)[orgs, tenant, workspaces], - WorkspaceIdsVariant2(null)[orgs, tenant, workspaces], - WorkspaceRoleId3(anyOf)[orgs, tenant, workspaces], - WorkspaceRoleIdVariant1(string)[orgs, tenant, workspaces], - WorkspaceRoleIdVariant2(null)[orgs, tenant, workspaces], - Password5(anyOf)[orgs, tenant, workspaces], - PasswordVariant1(string)[orgs, tenant, workspaces], - PasswordVariant2(null)[orgs, tenant, workspaces], - FullName7(anyOf)[orgs, tenant, workspaces], - FullNameVariant1(string)[orgs, tenant, workspaces], - FullNameVariant2(null)[orgs, tenant, workspaces], + RoleId(string)[orgs, tenant, workspaces], + WorkspaceIds(array)[orgs, tenant, workspaces], + WorkspaceIdsItem(string)[orgs, tenant, workspaces], + WorkspaceRoleId(string)[orgs, tenant, workspaces], + Password(string)[orgs, tenant, workspaces], + FullName(string)[orgs, tenant, workspaces], AccessScope(ref)[orgs, tenant, workspaces], Id(string)[orgs, tenant, workspaces], - UserId4(anyOf)[orgs, tenant, workspaces], - UserIdVariant1(string)[orgs, tenant, workspaces], - UserIdVariant2(null)[orgs, tenant, workspaces], - TenantId5(anyOf)[orgs, tenant, workspaces], - TenantIdVariant1(string)[orgs, tenant, workspaces], - TenantIdVariant2(null)[orgs, tenant, workspaces], - OrganizationId2(anyOf)[orgs, tenant, workspaces], - OrganizationIdVariant1(string)[orgs, tenant, workspaces], - OrganizationIdVariant2(null)[orgs, tenant, workspaces], + UserId(string)[orgs, tenant, workspaces], + TenantId(string)[orgs, tenant, workspaces], + OrganizationId(string)[orgs, tenant, workspaces], CreatedAt(DateTime)[orgs, tenant, workspaces], - RoleName5(anyOf)[orgs, tenant, workspaces], - RoleNameVariant1(string)[orgs, tenant, workspaces], - RoleNameVariant2(null)[orgs, tenant, workspaces], + RoleName(string)[orgs, tenant, workspaces], PendingIdentityCreate(class)[orgs, tenant, workspaces], Email(string)[orgs, tenant, workspaces], ReadOnly(bool)[orgs, tenant, workspaces], - RoleId9(anyOf)[orgs, tenant, workspaces], - RoleIdVariant1(string)[orgs, tenant, workspaces], - RoleIdVariant2(null)[orgs, tenant, workspaces], - WorkspaceIds4(anyOf)[orgs, tenant, workspaces], - WorkspaceIdsVariant1(array)[orgs, tenant, workspaces], - WorkspaceIdsVariant1Item(string)[orgs, tenant, workspaces], - WorkspaceIdsVariant2(null)[orgs, tenant, workspaces], - WorkspaceRoleId4(anyOf)[orgs, tenant, workspaces], - WorkspaceRoleIdVariant1(string)[orgs, tenant, workspaces], - WorkspaceRoleIdVariant2(null)[orgs, tenant, workspaces], - Password6(anyOf)[orgs, tenant, workspaces], - PasswordVariant1(string)[orgs, tenant, workspaces], - PasswordVariant2(null)[orgs, tenant, workspaces], - FullName8(anyOf)[orgs, tenant, workspaces], - FullNameVariant1(string)[orgs, tenant, workspaces], - FullNameVariant2(null)[orgs, tenant, workspaces], + RoleId(string)[orgs, tenant, workspaces], + WorkspaceIds(array)[orgs, tenant, workspaces], + WorkspaceIdsItem(string)[orgs, tenant, workspaces], + WorkspaceRoleId(string)[orgs, tenant, workspaces], + Password(string)[orgs, tenant, workspaces], + FullName(string)[orgs, tenant, workspaces], PermissionResponse(class)[orgs], Name(string)[orgs], Description(string)[orgs], @@ -2524,23 +1462,13 @@ PlaygroundRunOverDatasetRequestSchemaManifest(class)[datasets], PlaygroundRunOverDatasetRequestSchemaSecrets(class)[datasets], Secrets(string)[datasets], - RunId3(anyOf)[datasets], - RunIdVariant1(string)[datasets], - RunIdVariant2(null)[datasets], - RepoId(anyOf)[datasets], - RepoIdVariant1(string)[datasets], - RepoIdVariant2(null)[datasets], - Tools(anyOf)[datasets], - ToolsVariant1(array)[datasets], - PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item(class)[datasets], - ToolsVariant2(null)[datasets], - ToolChoice(anyOf)[datasets], - ToolChoiceVariant1(string)[datasets], - ToolChoiceVariant2(null)[datasets], + RunId(string)[datasets], + RepoId(string)[datasets], + Tools(array)[datasets], + PlaygroundRunOverDatasetRequestSchemaTool(class)[datasets], + ToolChoice(string)[datasets], RunnableConfig(ref)[datasets], - ProjectName(anyOf)[datasets], - ProjectNameVariant1(string)[datasets], - ProjectNameVariant2(null)[datasets], + ProjectName(string)[datasets], DatasetId(string)[datasets], Repetitions(int)[datasets], RunnableConfig(class)[datasets], @@ -2551,110 +1479,67 @@ CallbacksVariant1(array)[datasets], RunnableConfigCallback(class)[datasets], RunnableConfigCallbacks(class)[datasets], - CallbacksVariant3(null)[datasets], RunName(string)[datasets], - MaxConcurrency(anyOf)[datasets], - MaxConcurrencyVariant1(int)[datasets], - MaxConcurrencyVariant2(null)[datasets], + MaxConcurrency(int)[datasets], RecursionLimit(int)[datasets], RunnableConfigConfigurable(class)[datasets], - RunId4(anyOf)[datasets], - RunIdVariant1(string)[datasets], - RunIdVariant2(null)[datasets], + RunId(string)[datasets], PlaygroundSettingsCreateRequest(class)[playground-settings], PlaygroundSettingsCreateRequestSettings(class)[playground-settings], - Name7(anyOf)[playground-settings], - NameVariant1(string)[playground-settings], - NameVariant2(null)[playground-settings], + Name(string)[playground-settings], PlaygroundSettingsResponse(class)[playground-settings], Id(string)[playground-settings], PlaygroundSettingsResponseSettings(class)[playground-settings], - Name8(anyOf)[playground-settings], - NameVariant1(string)[playground-settings], - NameVariant2(null)[playground-settings], + Name(string)[playground-settings], CreatedAt(DateTime)[playground-settings], UpdatedAt(DateTime)[playground-settings], PlaygroundSettingsUpdateRequest(class)[playground-settings], - Name9(anyOf)[playground-settings], - NameVariant1(string)[playground-settings], - NameVariant2(null)[playground-settings], + Name(string)[playground-settings], ProviderUserSlim(class)[orgs], Id(string)[orgs], - Provider3(anyOf)[orgs], - AuthProvider(ref)[orgs], - ProviderVariant2(null)[orgs], + AuthProvider(ref)[orgs], LsUserId(string)[orgs], - SamlProviderId(anyOf)[orgs], - SamlProviderIdVariant1(string)[orgs], - SamlProviderIdVariant2(null)[orgs], - ProviderUserId(anyOf)[orgs], - ProviderUserIdVariant1(string)[orgs], - ProviderUserIdVariant2(null)[orgs], + SamlProviderId(string)[orgs], + ProviderUserId(string)[orgs], CreatedAt(DateTime)[orgs], UpdatedAt(DateTime)[orgs], - Email3(anyOf)[orgs], - EmailVariant1(string)[orgs], - EmailVariant2(null)[orgs], - FullName9(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], - EmailConfirmedAt(anyOf)[orgs], - EmailConfirmedAtVariant1(DateTime)[orgs], - EmailConfirmedAtVariant2(null)[orgs], + Email(string)[orgs], + FullName(string)[orgs], + EmailConfirmedAt(DateTime)[orgs], PublicComparativeExperiment(class)[public], Id(string)[public], - Name10(anyOf)[public], - NameVariant1(string)[public], - NameVariant2(null)[public], - Description26(anyOf)[public], - DescriptionVariant1(string)[public], - DescriptionVariant2(null)[public], + Name(string)[public], + Description(string)[public], CreatedAt(DateTime)[public], ModifiedAt(DateTime)[public], - Extra5(anyOf)[public], - PublicComparativeExperimentExtra(class)[public], - ExtraVariant2(null)[public], + PublicComparativeExperimentExtra(class)[public], ExperimentsInfo(array)[public], SimpleExperimentInfo(ref)[public], - FeedbackStats2(anyOf)[public], - PublicComparativeExperimentFeedbackStats(class)[public], - FeedbackStatsVariant2(null)[public], + PublicComparativeExperimentFeedbackStats(class)[public], PublicExampleWithRuns(class)[public], - Outputs8(anyOf)[public], - PublicExampleWithRunsOutputs(class)[public], - OutputsVariant2(null)[public], + PublicExampleWithRunsOutputs(class)[public], DatasetId(string)[public], - SourceRunId6(anyOf)[public], - SourceRunIdVariant1(string)[public], - SourceRunIdVariant2(null)[public], - Metadata18(anyOf)[public], - PublicExampleWithRunsMetadata(class)[public], - MetadataVariant2(null)[public], + SourceRunId(string)[public], + PublicExampleWithRunsMetadata(class)[public], PublicExampleWithRunsInputs(class)[public], CreatedAt(DateTime)[public], Id(string)[public], Name(string)[public], - ModifiedAt6(anyOf)[public], - ModifiedAtVariant1(DateTime)[public], - ModifiedAtVariant2(null)[public], + ModifiedAt(DateTime)[public], Runs(array)[public], RunPublicDatasetSchema(ref)[public], PutDatasetVersionsSchema(class)[datasets], - AsOf2(anyOf)[datasets], + AsOf(anyOf)[datasets], AsOfVariant1(DateTime)[datasets], AsOfVariant2(string)[datasets], Tag(string)[datasets], QueryExampleSchemaWithRuns(class)[datasets, public], SessionIds(array)[datasets, public], SessionIdsItem(string)[datasets, public], - ComparativeExperimentId4(anyOf)[datasets, public], - ComparativeExperimentIdVariant1(string)[datasets, public], - ComparativeExperimentIdVariant2(null)[datasets, public], - Filters4(anyOf)[datasets, public], - QueryExampleSchemaWithRunsFilters(class)[datasets, public], - FiltersVariant1(array)[datasets, public], - FiltersVariant1Item(string)[datasets, public], - FiltersVariant2(null)[datasets, public], + ComparativeExperimentId(string)[datasets, public], + QueryExampleSchemaWithRunsFilters(class)[datasets, public], + Filters(array)[datasets, public], + FiltersItem(string)[datasets, public], Offset(int)[datasets, public], Limit(int)[datasets, public], QueryFeedbackDelta(class)[datasets, public], @@ -2662,21 +1547,15 @@ ComparisonSessionIds(array)[datasets, public], ComparisonSessionIdsItem(string)[datasets, public], FeedbackKey(string)[datasets, public], - Filters5(anyOf)[datasets, public], - QueryFeedbackDeltaFilters(class)[datasets, public], - FiltersVariant1(array)[datasets, public], - FiltersVariant1Item(string)[datasets, public], - FiltersVariant2(null)[datasets, public], + QueryFeedbackDeltaFilters(class)[datasets, public], + Filters(array)[datasets, public], + FiltersItem(string)[datasets, public], Offset(int)[datasets, public], Limit(int)[datasets, public], - ComparativeExperimentId5(anyOf)[datasets, public], - ComparativeExperimentIdVariant1(string)[datasets, public], - ComparativeExperimentIdVariant2(null)[datasets, public], + ComparativeExperimentId(string)[datasets, public], QueryParamsForPublicRunSchema(class)[public], - Id10(anyOf)[public], - IdVariant1(array)[public], - IdVariant1Item(string)[public], - IdVariant2(null)[public], + Id(array)[public], + IdItem(string)[public], RequestBodyForRunsGenerateQuery(class)[run, public], Query(string)[run, public], FeedbackKeys(array)[run, public], @@ -2696,437 +1575,205 @@ Name(string)[orgs, tenant], DisplayName(string)[orgs, tenant], Description(string)[orgs, tenant], - OrganizationId3(anyOf)[orgs, tenant], - OrganizationIdVariant1(string)[orgs, tenant], - OrganizationIdVariant2(null)[orgs, tenant], + OrganizationId(string)[orgs, tenant], Permissions(array)[orgs, tenant], PermissionsItem(string)[orgs, tenant], - AccessScope2(anyOf)[orgs, tenant], - AccessScope(ref)[orgs, tenant], - AccessScopeVariant2(null)[orgs, tenant], + AccessScope(ref)[orgs, tenant], RootModelDictStrListStr(class)[tracer-sessions], RootModelDictStrListStr(array)[tracer-sessions], RootModelDictStrListStrItem(string)[tracer-sessions], RuleLogActionOutcome(enum)[run], RuleLogActionResponse(class)[run], RuleLogActionOutcome(ref)[run], - Payload(anyOf)[run], - RuleLogActionResponsePayload(class)[run], - PayloadVariant2(null)[run], + RuleLogActionResponsePayload(class)[run], RuleLogSchema(class)[run], RuleId(string)[run], RunId(string)[run], - RunName2(anyOf)[run], - RunNameVariant1(string)[run], - RunNameVariant2(null)[run], - RunType3(anyOf)[run], - RunTypeVariant1(string)[run], - RunTypeVariant2(null)[run], - RunSessionId(anyOf)[run], - RunSessionIdVariant1(string)[run], - RunSessionIdVariant2(null)[run], + RunName(string)[run], + RunType(string)[run], + RunSessionId(string)[run], StartTime(DateTime)[run], EndTime(DateTime)[run], - AddToAnnotationQueue(anyOf)[run], - RuleLogActionResponse(ref)[run], - AddToAnnotationQueueVariant2(null)[run], - AddToDataset(anyOf)[run], - RuleLogActionResponse(ref)[run], - AddToDatasetVariant2(null)[run], - Evaluators(anyOf)[run], - RuleLogActionResponse(ref)[run], - EvaluatorsVariant2(null)[run], - Alerts(anyOf)[run], - RuleLogActionResponse(ref)[run], - AlertsVariant2(null)[run], - Webhooks(anyOf)[run], - RuleLogActionResponse(ref)[run], - WebhooksVariant2(null)[run], + RuleLogActionResponse(ref)[run], + RuleLogActionResponse(ref)[run], + RuleLogActionResponse(ref)[run], + RuleLogActionResponse(ref)[run], + RuleLogActionResponse(ref)[run], RunGroupBy(enum)[run], RunGroupRequest(class)[run], SessionId(string)[run], RunGroupBy(ref)[run], - Filter4(anyOf)[run], - FilterVariant1(string)[run], - FilterVariant2(null)[run], - StartTime6(anyOf)[run], - StartTimeVariant1(DateTime)[run], - StartTimeVariant2(null)[run], - EndTime5(anyOf)[run], - EndTimeVariant1(DateTime)[run], - EndTimeVariant2(null)[run], + Filter(string)[run], + StartTime(DateTime)[run], + EndTime(DateTime)[run], Offset(int)[run], Limit(int)[run], RunGroupStats(class)[run], RunCount(int)[run], - LatencyP50(anyOf)[run], - LatencyP50Variant1(double)[run], - LatencyP50Variant2(null)[run], - LatencyP99(anyOf)[run], - LatencyP99Variant1(double)[run], - LatencyP99Variant2(null)[run], - FirstTokenP50(anyOf)[run], - FirstTokenP50Variant1(double)[run], - FirstTokenP50Variant2(null)[run], - FirstTokenP99(anyOf)[run], - FirstTokenP99Variant1(double)[run], - FirstTokenP99Variant2(null)[run], - TotalTokens(anyOf)[run], - TotalTokensVariant1(int)[run], - TotalTokensVariant2(null)[run], - PromptTokens(anyOf)[run], - PromptTokensVariant1(int)[run], - PromptTokensVariant2(null)[run], - CompletionTokens(anyOf)[run], - CompletionTokensVariant1(int)[run], - CompletionTokensVariant2(null)[run], - MedianTokens(anyOf)[run], - MedianTokensVariant1(int)[run], - MedianTokensVariant2(null)[run], - LastRunStartTime(anyOf)[run], - LastRunStartTimeVariant1(DateTime)[run], - LastRunStartTimeVariant2(null)[run], - FeedbackStats3(anyOf)[run], - RunGroupStatsFeedbackStats(class)[run], - FeedbackStatsVariant2(null)[run], - RunFacets(anyOf)[run], - RunFacetsVariant1(array)[run], - RunGroupStatsRunFacetsVariant1Item(class)[run], - RunFacetsVariant2(null)[run], - ErrorRate(anyOf)[run], - ErrorRateVariant1(double)[run], - ErrorRateVariant2(null)[run], - StreamingRate(anyOf)[run], - StreamingRateVariant1(double)[run], - StreamingRateVariant2(null)[run], - TotalCost(anyOf)[run], - TotalCostVariant1(string)[run], - TotalCostVariant2(null)[run], - PromptCost3(anyOf)[run], - PromptCostVariant1(string)[run], - PromptCostVariant2(null)[run], - CompletionCost3(anyOf)[run], - CompletionCostVariant1(string)[run], - CompletionCostVariant2(null)[run], + LatencyP50(double)[run], + LatencyP99(double)[run], + FirstTokenP50(double)[run], + FirstTokenP99(double)[run], + TotalTokens(int)[run], + PromptTokens(int)[run], + CompletionTokens(int)[run], + MedianTokens(int)[run], + LastRunStartTime(DateTime)[run], + RunGroupStatsFeedbackStats(class)[run], + RunFacets(array)[run], + RunGroupStatsRunFacet(class)[run], + ErrorRate(double)[run], + StreamingRate(double)[run], + TotalCost(string)[run], + PromptCost(string)[run], + CompletionCost(string)[run], GroupCount(int)[run], RunRulesAlertType(enum)[run], RunRulesCreateSchema(class)[run], DisplayName(string)[run], - SessionId4(anyOf)[run], - SessionIdVariant1(string)[run], - SessionIdVariant2(null)[run], + SessionId(string)[run], IsEnabled(bool)[run], - DatasetId4(anyOf)[run], - DatasetIdVariant1(string)[run], - DatasetIdVariant2(null)[run], + DatasetId(string)[run], SamplingRate(double)[run], - Filter5(anyOf)[run], - FilterVariant1(string)[run], - FilterVariant2(null)[run], - TraceFilter4(anyOf)[run], - TraceFilterVariant1(string)[run], - TraceFilterVariant2(null)[run], - TreeFilter4(anyOf)[run], - TreeFilterVariant1(string)[run], - TreeFilterVariant2(null)[run], - BackfillFrom(anyOf)[run], - BackfillFromVariant1(DateTime)[run], - BackfillFromVariant2(null)[run], + Filter(string)[run], + TraceFilter(string)[run], + TreeFilter(string)[run], + BackfillFrom(DateTime)[run], UseCorrectionsDataset(bool)[run], - NumFewShotExamples(anyOf)[run], - NumFewShotExamplesVariant1(int)[run], - NumFewShotExamplesVariant2(null)[run], + NumFewShotExamples(int)[run], ExtendOnly(bool)[run], - AddToAnnotationQueueId(anyOf)[run], - AddToAnnotationQueueIdVariant1(string)[run], - AddToAnnotationQueueIdVariant2(null)[run], - AddToDatasetId(anyOf)[run], - AddToDatasetIdVariant1(string)[run], - AddToDatasetIdVariant2(null)[run], + AddToAnnotationQueueId(string)[run], + AddToDatasetId(string)[run], AddToDatasetPreferCorrection(bool)[run], - Evaluators2(anyOf)[run], - EvaluatorsVariant1(array)[run], - EvaluatorTopLevel(ref)[run], - EvaluatorsVariant2(null)[run], - CodeEvaluators(anyOf)[run], - CodeEvaluatorsVariant1(array)[run], - CodeEvaluatorTopLevel(ref)[run], - CodeEvaluatorsVariant2(null)[run], - Alerts2(anyOf)[run], - AlertsVariant1(array)[run], - RunRulesPagerdutyAlertSchema(ref)[run], - AlertsVariant2(null)[run], - Webhooks2(anyOf)[run], - WebhooksVariant1(array)[run], - RunRulesWebhookSchema(ref)[run], - WebhooksVariant2(null)[run], + Evaluators(array)[run], + EvaluatorTopLevel(ref)[run], + CodeEvaluators(array)[run], + CodeEvaluatorTopLevel(ref)[run], + Alerts(array)[run], + RunRulesPagerdutyAlertSchema(ref)[run], + Webhooks(array)[run], + RunRulesWebhookSchema(ref)[run], RunRulesPagerdutyAlertSchema(class)[run], - Type2(anyOf)[run], - RunRulesAlertType(ref)[run], - TypeVariant2(null)[run], + RunRulesAlertType(ref)[run], RoutingKey(string)[run], - Summary(anyOf)[run], - SummaryVariant1(string)[run], - SummaryVariant2(null)[run], - Severity(anyOf)[run], - PagerdutySeverity(ref)[run], - SeverityVariant2(null)[run], + Summary(string)[run], + PagerdutySeverity(ref)[run], RunRulesWebhookSchema(class)[run], Url(string)[run], - Headers(anyOf)[run], - RunRulesWebhookSchemaHeaders(class)[run], - HeadersVariant1(string)[run], - HeadersVariant2(null)[run], + RunRulesWebhookSchemaHeaders(class)[run], + Headers(string)[run], RunRulesSchema(class)[run], Id(string)[run], TenantId(string)[run], IsEnabled(bool)[run], - SessionId5(anyOf)[run], - SessionIdVariant1(string)[run], - SessionIdVariant2(null)[run], - SessionName(anyOf)[run], - SessionNameVariant1(string)[run], - SessionNameVariant2(null)[run], - DatasetId5(anyOf)[run], - DatasetIdVariant1(string)[run], - DatasetIdVariant2(null)[run], - DatasetName2(anyOf)[run], - DatasetNameVariant1(string)[run], - DatasetNameVariant2(null)[run], + SessionId(string)[run], + SessionName(string)[run], + DatasetId(string)[run], + DatasetName(string)[run], DisplayName(string)[run], SamplingRate(double)[run], - Filter6(anyOf)[run], - FilterVariant1(string)[run], - FilterVariant2(null)[run], - TraceFilter5(anyOf)[run], - TraceFilterVariant1(string)[run], - TraceFilterVariant2(null)[run], - TreeFilter5(anyOf)[run], - TreeFilterVariant1(string)[run], - TreeFilterVariant2(null)[run], - AddToAnnotationQueueId2(anyOf)[run], - AddToAnnotationQueueIdVariant1(string)[run], - AddToAnnotationQueueIdVariant2(null)[run], - AddToAnnotationQueueName(anyOf)[run], - AddToAnnotationQueueNameVariant1(string)[run], - AddToAnnotationQueueNameVariant2(null)[run], - AddToDatasetId2(anyOf)[run], - AddToDatasetIdVariant1(string)[run], - AddToDatasetIdVariant2(null)[run], - AddToDatasetName(anyOf)[run], - AddToDatasetNameVariant1(string)[run], - AddToDatasetNameVariant2(null)[run], + Filter(string)[run], + TraceFilter(string)[run], + TreeFilter(string)[run], + AddToAnnotationQueueId(string)[run], + AddToAnnotationQueueName(string)[run], + AddToDatasetId(string)[run], + AddToDatasetName(string)[run], AddToDatasetPreferCorrection(bool)[run], - CorrectionsDatasetId(anyOf)[run], - CorrectionsDatasetIdVariant1(string)[run], - CorrectionsDatasetIdVariant2(null)[run], + CorrectionsDatasetId(string)[run], UseCorrectionsDataset(bool)[run], - NumFewShotExamples2(anyOf)[run], - NumFewShotExamplesVariant1(int)[run], - NumFewShotExamplesVariant2(null)[run], - Evaluators3(anyOf)[run], - EvaluatorsVariant1(array)[run], - EvaluatorTopLevel(ref)[run], - EvaluatorsVariant2(null)[run], - CodeEvaluators2(anyOf)[run], - CodeEvaluatorsVariant1(array)[run], - CodeEvaluatorTopLevel(ref)[run], - CodeEvaluatorsVariant2(null)[run], - Alerts3(anyOf)[run], - AlertsVariant1(array)[run], - RunRulesPagerdutyAlertSchema(ref)[run], - AlertsVariant2(null)[run], - Webhooks3(anyOf)[run], - WebhooksVariant1(array)[run], - RunRulesWebhookSchema(ref)[run], - WebhooksVariant2(null)[run], + NumFewShotExamples(int)[run], + Evaluators(array)[run], + EvaluatorTopLevel(ref)[run], + CodeEvaluators(array)[run], + CodeEvaluatorTopLevel(ref)[run], + Alerts(array)[run], + RunRulesPagerdutyAlertSchema(ref)[run], + Webhooks(array)[run], + RunRulesWebhookSchema(ref)[run], ExtendOnly(bool)[run], CreatedAt(DateTime)[run], UpdatedAt(DateTime)[run], - BackfillFrom2(anyOf)[run], - BackfillFromVariant1(DateTime)[run], - BackfillFromVariant2(null)[run], + BackfillFrom(DateTime)[run], RunSchemaWithAnnotationQueueInfo(class)[annotation-queues], Name(string)[annotation-queues], - Inputs10(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoInputs(class)[annotation-queues], - InputsVariant2(null)[annotation-queues], - InputsPreview5(anyOf)[annotation-queues], - InputsPreviewVariant1(string)[annotation-queues], - InputsPreviewVariant2(null)[annotation-queues], + RunSchemaWithAnnotationQueueInfoInputs(class)[annotation-queues], + InputsPreview(string)[annotation-queues], RunTypeEnum(ref)[annotation-queues], StartTime(DateTime)[annotation-queues], - EndTime10(anyOf)[annotation-queues], - EndTimeVariant1(DateTime)[annotation-queues], - EndTimeVariant2(null)[annotation-queues], - Extra10(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoExtra(class)[annotation-queues], - ExtraVariant2(null)[annotation-queues], - Error9(anyOf)[annotation-queues], - ErrorVariant1(string)[annotation-queues], - ErrorVariant2(null)[annotation-queues], + EndTime(DateTime)[annotation-queues], + RunSchemaWithAnnotationQueueInfoExtra(class)[annotation-queues], + Error(string)[annotation-queues], ExecutionOrder(int)[annotation-queues], - Serialized5(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoSerialized(class)[annotation-queues], - SerializedVariant2(null)[annotation-queues], - Outputs14(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoOutputs(class)[annotation-queues], - OutputsVariant2(null)[annotation-queues], - OutputsPreview5(anyOf)[annotation-queues], - OutputsPreviewVariant1(string)[annotation-queues], - OutputsPreviewVariant2(null)[annotation-queues], - ParentRunId5(anyOf)[annotation-queues], - ParentRunIdVariant1(string)[annotation-queues], - ParentRunIdVariant2(null)[annotation-queues], - ManifestId5(anyOf)[annotation-queues], - ManifestIdVariant1(string)[annotation-queues], - ManifestIdVariant2(null)[annotation-queues], - ManifestS3Id5(anyOf)[annotation-queues], - ManifestS3IdVariant1(string)[annotation-queues], - ManifestS3IdVariant2(null)[annotation-queues], - Events5(anyOf)[annotation-queues], - EventsVariant1(array)[annotation-queues], - RunSchemaWithAnnotationQueueInfoEventsVariant1Item(class)[annotation-queues], - EventsVariant2(null)[annotation-queues], - Tags8(anyOf)[annotation-queues], - TagsVariant1(array)[annotation-queues], - TagsVariant1Item(string)[annotation-queues], - TagsVariant2(null)[annotation-queues], - InputsS3Urls5(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoInputsS3Urls(class)[annotation-queues], - InputsS3UrlsVariant2(null)[annotation-queues], - OutputsS3Urls5(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoOutputsS3Urls(class)[annotation-queues], - OutputsS3UrlsVariant2(null)[annotation-queues], - S3Urls5(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoS3Urls(class)[annotation-queues], - S3UrlsVariant2(null)[annotation-queues], + RunSchemaWithAnnotationQueueInfoSerialized(class)[annotation-queues], + RunSchemaWithAnnotationQueueInfoOutputs(class)[annotation-queues], + OutputsPreview(string)[annotation-queues], + ParentRunId(string)[annotation-queues], + ManifestId(string)[annotation-queues], + ManifestS3Id(string)[annotation-queues], + Events(array)[annotation-queues], + RunSchemaWithAnnotationQueueInfoEvent(class)[annotation-queues], + Tags(array)[annotation-queues], + TagsItem(string)[annotation-queues], + RunSchemaWithAnnotationQueueInfoInputsS3Urls(class)[annotation-queues], + RunSchemaWithAnnotationQueueInfoOutputsS3Urls(class)[annotation-queues], + RunSchemaWithAnnotationQueueInfoS3Urls(class)[annotation-queues], TraceId(string)[annotation-queues], DottedOrder(string)[annotation-queues], Id(string)[annotation-queues], Status(string)[annotation-queues], - ChildRunIds4(anyOf)[annotation-queues], - ChildRunIdsVariant1(array)[annotation-queues], - ChildRunIdsVariant1Item(string)[annotation-queues], - ChildRunIdsVariant2(null)[annotation-queues], - DirectChildRunIds4(anyOf)[annotation-queues], - DirectChildRunIdsVariant1(array)[annotation-queues], - DirectChildRunIdsVariant1Item(string)[annotation-queues], - DirectChildRunIdsVariant2(null)[annotation-queues], - ParentRunIds4(anyOf)[annotation-queues], - ParentRunIdsVariant1(array)[annotation-queues], - ParentRunIdsVariant1Item(string)[annotation-queues], - ParentRunIdsVariant2(null)[annotation-queues], - FeedbackStats8(anyOf)[annotation-queues], - RunSchemaWithAnnotationQueueInfoFeedbackStats(class)[annotation-queues], - RunSchemaWithAnnotationQueueInfoFeedbackStats2(class)[annotation-queues], - FeedbackStatsVariant2(null)[annotation-queues], - ReferenceExampleId5(anyOf)[annotation-queues], - ReferenceExampleIdVariant1(string)[annotation-queues], - ReferenceExampleIdVariant2(null)[annotation-queues], + ChildRunIds(array)[annotation-queues], + ChildRunIdsItem(string)[annotation-queues], + DirectChildRunIds(array)[annotation-queues], + DirectChildRunIdsItem(string)[annotation-queues], + ParentRunIds(array)[annotation-queues], + ParentRunIdsItem(string)[annotation-queues], + RunSchemaWithAnnotationQueueInfoFeedbackStats(class)[annotation-queues], + RunSchemaWithAnnotationQueueInfoFeedbackStats2(class)[annotation-queues], + ReferenceExampleId(string)[annotation-queues], TotalTokens(int)[annotation-queues], PromptTokens(int)[annotation-queues], CompletionTokens(int)[annotation-queues], - TotalCost6(anyOf)[annotation-queues], - TotalCostVariant1(string)[annotation-queues], - TotalCostVariant2(null)[annotation-queues], - PromptCost8(anyOf)[annotation-queues], - PromptCostVariant1(string)[annotation-queues], - PromptCostVariant2(null)[annotation-queues], - CompletionCost8(anyOf)[annotation-queues], - CompletionCostVariant1(string)[annotation-queues], - CompletionCostVariant2(null)[annotation-queues], - PriceModelId4(anyOf)[annotation-queues], - PriceModelIdVariant1(string)[annotation-queues], - PriceModelIdVariant2(null)[annotation-queues], - FirstTokenTime4(anyOf)[annotation-queues], - FirstTokenTimeVariant1(DateTime)[annotation-queues], - FirstTokenTimeVariant2(null)[annotation-queues], + TotalCost(string)[annotation-queues], + PromptCost(string)[annotation-queues], + CompletionCost(string)[annotation-queues], + PriceModelId(string)[annotation-queues], + FirstTokenTime(DateTime)[annotation-queues], SessionId(string)[annotation-queues], AppPath(string)[annotation-queues], - LastQueuedAt2(anyOf)[annotation-queues], - LastQueuedAtVariant1(DateTime)[annotation-queues], - LastQueuedAtVariant2(null)[annotation-queues], - InDataset2(anyOf)[annotation-queues], - InDatasetVariant1(bool)[annotation-queues], - InDatasetVariant2(null)[annotation-queues], - ShareToken2(anyOf)[annotation-queues], - ShareTokenVariant1(string)[annotation-queues], - ShareTokenVariant2(null)[annotation-queues], - TraceTier2(anyOf)[annotation-queues], - TraceTier3(ref)[annotation-queues], - TraceTierVariant2(null)[annotation-queues], - TraceFirstReceivedAt2(anyOf)[annotation-queues], - TraceFirstReceivedAtVariant1(DateTime)[annotation-queues], - TraceFirstReceivedAtVariant2(null)[annotation-queues], - TtlSeconds2(anyOf)[annotation-queues], - TtlSecondsVariant1(int)[annotation-queues], - TtlSecondsVariant2(null)[annotation-queues], + LastQueuedAt(DateTime)[annotation-queues], + InDataset(bool)[annotation-queues], + ShareToken(string)[annotation-queues], + TraceTier(ref)[annotation-queues], + TraceFirstReceivedAt(DateTime)[annotation-queues], + TtlSeconds(int)[annotation-queues], TraceUpgrade(bool)[annotation-queues], QueueRunId(string)[annotation-queues], - LastReviewedTime3(anyOf)[annotation-queues], - LastReviewedTimeVariant1(DateTime)[annotation-queues], - LastReviewedTimeVariant2(null)[annotation-queues], - AddedAt2(anyOf)[annotation-queues], - AddedAtVariant1(DateTime)[annotation-queues], - AddedAtVariant2(null)[annotation-queues], - EffectiveAddedAt(anyOf)[annotation-queues], - EffectiveAddedAtVariant1(DateTime)[annotation-queues], - EffectiveAddedAtVariant2(null)[annotation-queues], + LastReviewedTime(DateTime)[annotation-queues], + AddedAt(DateTime)[annotation-queues], + EffectiveAddedAt(DateTime)[annotation-queues], RunShareSchema(class)[run], RunId(string)[run], ShareToken(string)[run], RunStats(class)[run, public], RunCount(int)[run, public], - LatencyP502(anyOf)[run, public], - LatencyP50Variant1(double)[run, public], - LatencyP50Variant2(null)[run, public], - LatencyP992(anyOf)[run, public], - LatencyP99Variant1(double)[run, public], - LatencyP99Variant2(null)[run, public], - FirstTokenP502(anyOf)[run, public], - FirstTokenP50Variant1(double)[run, public], - FirstTokenP50Variant2(null)[run, public], - FirstTokenP992(anyOf)[run, public], - FirstTokenP99Variant1(double)[run, public], - FirstTokenP99Variant2(null)[run, public], - TotalTokens3(anyOf)[run, public], - TotalTokensVariant1(int)[run, public], - TotalTokensVariant2(null)[run, public], - PromptTokens3(anyOf)[run, public], - PromptTokensVariant1(int)[run, public], - PromptTokensVariant2(null)[run, public], - CompletionTokens3(anyOf)[run, public], - CompletionTokensVariant1(int)[run, public], - CompletionTokensVariant2(null)[run, public], - MedianTokens2(anyOf)[run, public], - MedianTokensVariant1(int)[run, public], - MedianTokensVariant2(null)[run, public], - LastRunStartTime2(anyOf)[run, public], - LastRunStartTimeVariant1(DateTime)[run, public], - LastRunStartTimeVariant2(null)[run, public], - FeedbackStats9(anyOf)[run, public], - RunStatsFeedbackStats(class)[run, public], - FeedbackStatsVariant2(null)[run, public], - RunFacets2(anyOf)[run, public], - RunFacetsVariant1(array)[run, public], - RunStatsRunFacetsVariant1Item(class)[run, public], - RunFacetsVariant2(null)[run, public], - ErrorRate2(anyOf)[run, public], - ErrorRateVariant1(double)[run, public], - ErrorRateVariant2(null)[run, public], - StreamingRate2(anyOf)[run, public], - StreamingRateVariant1(double)[run, public], - StreamingRateVariant2(null)[run, public], - TotalCost7(anyOf)[run, public], - TotalCostVariant1(string)[run, public], - TotalCostVariant2(null)[run, public], - PromptCost9(anyOf)[run, public], - PromptCostVariant1(string)[run, public], - PromptCostVariant2(null)[run, public], - CompletionCost9(anyOf)[run, public], - CompletionCostVariant1(string)[run, public], - CompletionCostVariant2(null)[run, public], + LatencyP50(double)[run, public], + LatencyP99(double)[run, public], + FirstTokenP50(double)[run, public], + FirstTokenP99(double)[run, public], + TotalTokens(int)[run, public], + PromptTokens(int)[run, public], + CompletionTokens(int)[run, public], + MedianTokens(int)[run, public], + LastRunStartTime(DateTime)[run, public], + RunStatsFeedbackStats(class)[run, public], + RunFacets(array)[run, public], + RunStatsRunFacet(class)[run, public], + ErrorRate(double)[run, public], + StreamingRate(double)[run, public], + TotalCost(string)[run, public], + PromptCost(string)[run, public], + CompletionCost(string)[run, public], SSOConfirmEmailRequest(class)[auth], Token(string)[auth], SSOEmailVerificationSendRequest(class)[auth], @@ -3136,9 +1783,7 @@ Email(string)[auth], SamlProviderId(string)[auth], SSOEmailVerificationStatusResponse(class)[auth], - EmailConfirmedAt2(anyOf)[auth], - EmailConfirmedAtVariant1(DateTime)[auth], - EmailConfirmedAtVariant2(null)[auth], + EmailConfirmedAt(DateTime)[auth], SSOProvider(class)[orgs], Id(string)[orgs], OrganizationId(string)[orgs], @@ -3146,12 +1791,8 @@ DefaultWorkspaceRoleId(string)[orgs], DefaultWorkspaceIds(array)[orgs], DefaultWorkspaceIdsItem(string)[orgs], - MetadataUrl(anyOf)[orgs], - MetadataUrlVariant1(string)[orgs], - MetadataUrlVariant2(null)[orgs], - MetadataXml(anyOf)[orgs], - MetadataXmlVariant1(string)[orgs], - MetadataXmlVariant2(null)[orgs], + MetadataUrl(string)[orgs], + MetadataXml(string)[orgs], SSOProviderSlim(class)[auth], ProviderId(string)[auth], OrganizationId(string)[auth], @@ -3160,35 +1801,21 @@ DefaultWorkspaceRoleId(string)[orgs], DefaultWorkspaceIds(array)[orgs], DefaultWorkspaceIdsItem(string)[orgs], - MetadataXml2(anyOf)[orgs], - MetadataXmlVariant1(string)[orgs], - MetadataXmlVariant2(null)[orgs], - MetadataUrl2(anyOf)[orgs], - MetadataUrlVariant1(string)[orgs], - MetadataUrlVariant2(null)[orgs], + MetadataXml(string)[orgs], + MetadataUrl(string)[orgs], SSOSettingsCreateAttributeMapping(class)[orgs], AttributeMapping(string)[orgs], SSOSettingsUpdate(class)[orgs], - DefaultWorkspaceRoleId(anyOf)[orgs], - DefaultWorkspaceRoleIdVariant1(string)[orgs], - DefaultWorkspaceRoleIdVariant2(null)[orgs], - DefaultWorkspaceIds(anyOf)[orgs], - DefaultWorkspaceIdsVariant1(array)[orgs], - DefaultWorkspaceIdsVariant1Item(string)[orgs], - DefaultWorkspaceIdsVariant2(null)[orgs], - MetadataUrl3(anyOf)[orgs], - MetadataUrlVariant1(string)[orgs], - MetadataUrlVariant2(null)[orgs], - MetadataXml3(anyOf)[orgs], - MetadataXmlVariant1(string)[orgs], - MetadataXmlVariant2(null)[orgs], + DefaultWorkspaceRoleId(string)[orgs], + DefaultWorkspaceIds(array)[orgs], + DefaultWorkspaceIdsItem(string)[orgs], + MetadataUrl(string)[orgs], + MetadataXml(string)[orgs], SearchDatasetRequest(class)[datasets], SearchDatasetRequestInputs(class)[datasets], Limit(int)[datasets], Debug(bool)[datasets], - Filter7(anyOf)[datasets], - FilterVariant1(string)[datasets], - FilterVariant2(null)[datasets], + Filter(string)[datasets], SearchDatasetResponse(class)[datasets], Examples(array)[datasets], SearchedFewShotExample(ref)[datasets], @@ -3196,25 +1823,19 @@ SearchedFewShotExampleInputs(class)[datasets], SearchedFewShotExampleOutputs(class)[datasets], Id(string)[datasets], - DebugInfo(anyOf)[datasets], - SearchedFewShotExampleDebugInfo(class)[datasets], - DebugInfoVariant2(null)[datasets], + SearchedFewShotExampleDebugInfo(class)[datasets], SecretKey(class)[tenant, workspaces], Key(string)[tenant, workspaces], SecretUpsert(class)[tenant, workspaces], Key(string)[tenant, workspaces], - Value7(anyOf)[tenant, workspaces], - ValueVariant1(string)[tenant, workspaces], - ValueVariant2(null)[tenant, workspaces], + Value(string)[tenant, workspaces], ServiceAccount(class)[service-accounts], Id(string)[service-accounts], CreatedAt(DateTime)[service-accounts], UpdatedAt(DateTime)[service-accounts], Name(string)[service-accounts], OrganizationId(string)[service-accounts], - DefaultWorkspaceId(anyOf)[service-accounts], - DefaultWorkspaceIdVariant1(string)[service-accounts], - DefaultWorkspaceIdVariant2(null)[service-accounts], + DefaultWorkspaceId(string)[service-accounts], ServiceAccountCreateRequest(class)[service-accounts], Name(string)[service-accounts], ServiceAccountCreateResponse(class)[service-accounts], @@ -3223,9 +1844,7 @@ UpdatedAt(DateTime)[service-accounts], Name(string)[service-accounts], OrganizationId(string)[service-accounts], - DefaultWorkspaceId2(anyOf)[service-accounts], - DefaultWorkspaceIdVariant1(string)[service-accounts], - DefaultWorkspaceIdVariant2(null)[service-accounts], + DefaultWorkspaceId(string)[service-accounts], OrganizationIdentityId(string)[service-accounts], ServiceAccountDeleteResponse(class)[service-accounts], Id(string)[service-accounts], @@ -3233,9 +1852,7 @@ UpdatedAt(DateTime)[service-accounts], Name(string)[service-accounts], OrganizationId(string)[service-accounts], - DefaultWorkspaceId3(anyOf)[service-accounts], - DefaultWorkspaceIdVariant1(string)[service-accounts], - DefaultWorkspaceIdVariant2(null)[service-accounts], + DefaultWorkspaceId(string)[service-accounts], SessionFeedbackDelta(class)[datasets, public], SessionFeedbackDeltaFeedbackDeltas(class)[datasets, public], FeedbackDelta(ref)[datasets, public], @@ -3250,44 +1867,26 @@ SourceType(enum)[feedback, public], StripeBusinessBillingInfo(class)[orgs], Name(string)[orgs], - Address(anyOf)[orgs], - StripeCustomerAddress(ref)[orgs], - AddressVariant2(null)[orgs], + StripeCustomerAddress(ref)[orgs], StripeCustomerAddress(class)[orgs], Line1(string)[orgs], - Line2(anyOf)[orgs], - Line2Variant1(string)[orgs], - Line2Variant2(null)[orgs], + Line2(string)[orgs], City(string)[orgs], - State(anyOf)[orgs], - StateVariant1(string)[orgs], - StateVariant2(null)[orgs], + State(string)[orgs], PostalCode(string)[orgs], Country(string)[orgs], StripeBusinessInfoInput(class)[orgs], - CompanyInfo(anyOf)[orgs], - StripeBusinessBillingInfo(ref)[orgs], - CompanyInfoVariant2(null)[orgs], - TaxId(anyOf)[orgs], - StripeTaxId(ref)[orgs], - TaxIdVariant2(null)[orgs], - InvoiceEmail(anyOf)[orgs], - InvoiceEmailVariant1(string)[orgs], - InvoiceEmailVariant2(null)[orgs], + StripeBusinessBillingInfo(ref)[orgs], + StripeTaxId(ref)[orgs], + InvoiceEmail(string)[orgs], IsBusiness(bool)[orgs], StripeTaxId(class)[orgs], Value(string)[orgs], Type(string)[orgs], StripeBusinessInfoOutput(class)[orgs], - CompanyInfo2(anyOf)[orgs], - StripeBusinessBillingInfo(ref)[orgs], - CompanyInfoVariant2(null)[orgs], - TaxId2(anyOf)[orgs], - StripeTaxId(ref)[orgs], - TaxIdVariant2(null)[orgs], - InvoiceEmail2(anyOf)[orgs], - InvoiceEmailVariant1(string)[orgs], - InvoiceEmailVariant2(null)[orgs], + StripeBusinessBillingInfo(ref)[orgs], + StripeTaxId(ref)[orgs], + InvoiceEmail(string)[orgs], IsBusiness(bool)[orgs], StripeCustomerBillingInfo(class)[orgs], Name(string)[orgs], @@ -3298,10 +1897,8 @@ StripeSetupIntentResponse(class)[orgs], ClientSecret(string)[orgs], TTLSettings(class)[orgs, ttl-settings], - TenantId6(anyOf)[orgs, ttl-settings], - TenantIdVariant1(string)[orgs, ttl-settings], - TenantIdVariant2(null)[orgs, ttl-settings], - TraceTier3(ref)[orgs, ttl-settings], + TenantId(string)[orgs, ttl-settings], + TraceTier(ref)[orgs, ttl-settings], ApplyToAllProjects(bool)[orgs, ttl-settings], Id(string)[orgs, ttl-settings], OrganizationId(string)[orgs, ttl-settings], @@ -3310,29 +1907,19 @@ ConfiguredBy(ref)[orgs, ttl-settings], TagKey(class)[workspaces], Key(string)[workspaces], - Description29(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], Id(string)[workspaces], CreatedAt(DateTime)[workspaces], UpdatedAt(DateTime)[workspaces], TagKeyCreate(class)[workspaces], Key(string)[workspaces], - Description30(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], TagKeyUpdate(class)[workspaces], - Key(anyOf)[workspaces], - KeyVariant1(string)[workspaces], - KeyVariant2(null)[workspaces], - Description31(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Key(string)[workspaces], + Description(string)[workspaces], TagKeyWithValues(class)[workspaces], Key(string)[workspaces], - Description32(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], Id(string)[workspaces], CreatedAt(DateTime)[workspaces], UpdatedAt(DateTime)[workspaces], @@ -3340,18 +1927,14 @@ TagValue(ref)[workspaces], TagValue(class)[workspaces], Value(string)[workspaces], - Description34(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], Id(string)[workspaces], TagKeyId(string)[workspaces], CreatedAt(DateTime)[workspaces], UpdatedAt(DateTime)[workspaces], TagKeyWithValuesAndTaggings(class)[workspaces], Key(string)[workspaces], - Description33(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], Id(string)[workspaces], CreatedAt(DateTime)[workspaces], UpdatedAt(DateTime)[workspaces], @@ -3359,9 +1942,7 @@ TagValueWithTaggings(ref)[workspaces], TagValueWithTaggings(class)[workspaces], Value(string)[workspaces], - Description37(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], Id(string)[workspaces], TagKeyId(string)[workspaces], CreatedAt(DateTime)[workspaces], @@ -3376,16 +1957,10 @@ CreatedAt(DateTime)[workspaces], TagValueCreate(class)[workspaces], Value(string)[workspaces], - Description35(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Description(string)[workspaces], TagValueUpdate(class)[workspaces], - Value8(anyOf)[workspaces], - ValueVariant1(string)[workspaces], - ValueVariant2(null)[workspaces], - Description36(anyOf)[workspaces], - DescriptionVariant1(string)[workspaces], - DescriptionVariant2(null)[workspaces], + Value(string)[workspaces], + Description(string)[workspaces], TaggingCreate(class)[workspaces], TagValueId(string)[workspaces], ResourceType(ref)[workspaces], @@ -3416,36 +1991,22 @@ ShareTokensItem(string)[tenant, workspaces], TenantCreate(class)[tenant], Id(string)[tenant], - OrganizationId4(anyOf)[tenant], - OrganizationIdVariant1(string)[tenant], - OrganizationIdVariant2(null)[tenant], + OrganizationId(string)[tenant], DisplayName(string)[tenant], - TenantHandle(anyOf)[tenant], - TenantHandleVariant1(string)[tenant], - TenantHandleVariant2(null)[tenant], + TenantHandle(string)[tenant], IsPersonal(bool)[tenant], TenantForUser(class)[tenant, workspaces], Id(string)[tenant, workspaces], - OrganizationId5(anyOf)[tenant, workspaces], - OrganizationIdVariant1(string)[tenant, workspaces], - OrganizationIdVariant2(null)[tenant, workspaces], + OrganizationId(string)[tenant, workspaces], CreatedAt(DateTime)[tenant, workspaces], DisplayName(string)[tenant, workspaces], IsPersonal(bool)[tenant, workspaces], - TenantHandle2(anyOf)[tenant, workspaces], - TenantHandleVariant1(string)[tenant, workspaces], - TenantHandleVariant2(null)[tenant, workspaces], + TenantHandle(string)[tenant, workspaces], ReadOnly(bool)[tenant, workspaces], - RoleId10(anyOf)[tenant, workspaces], - RoleIdVariant1(string)[tenant, workspaces], - RoleIdVariant2(null)[tenant, workspaces], - RoleName6(anyOf)[tenant, workspaces], - RoleNameVariant1(string)[tenant, workspaces], - RoleNameVariant2(null)[tenant, workspaces], - Permissions(anyOf)[tenant, workspaces], - PermissionsVariant1(array)[tenant, workspaces], - PermissionsVariant1Item(string)[tenant, workspaces], - PermissionsVariant2(null)[tenant, workspaces], + RoleId(string)[tenant, workspaces], + RoleName(string)[tenant, workspaces], + Permissions(array)[tenant, workspaces], + PermissionsItem(string)[tenant, workspaces], TenantMembers(class)[tenant, workspaces], TenantId(string)[tenant, workspaces], Members(array)[tenant, workspaces], @@ -3457,26 +2018,16 @@ ShareToken(string)[tenant, workspaces], CreatedAt(DateTime)[tenant, workspaces], DatasetId(string)[tenant, workspaces], - DatasetName3(anyOf)[tenant, workspaces], - DatasetNameVariant1(string)[tenant, workspaces], - DatasetNameVariant2(null)[tenant, workspaces], + DatasetName(string)[tenant, workspaces], TenantShareRunToken(class)[tenant, workspaces], TenantShareRunTokenType(enum)[tenant, workspaces], ShareToken(string)[tenant, workspaces], CreatedAt(DateTime)[tenant, workspaces], RunId(string)[tenant, workspaces], - RunName3(anyOf)[tenant, workspaces], - RunNameVariant1(string)[tenant, workspaces], - RunNameVariant2(null)[tenant, workspaces], - RunType4(anyOf)[tenant, workspaces], - RunTypeVariant1(string)[tenant, workspaces], - RunTypeVariant2(null)[tenant, workspaces], - SessionId6(anyOf)[tenant, workspaces], - SessionIdVariant1(string)[tenant, workspaces], - SessionIdVariant2(null)[tenant, workspaces], - SessionName2(anyOf)[tenant, workspaces], - SessionNameVariant1(string)[tenant, workspaces], - SessionNameVariant2(null)[tenant, workspaces], + RunName(string)[tenant, workspaces], + RunType(string)[tenant, workspaces], + SessionId(string)[tenant, workspaces], + SessionName(string)[tenant, workspaces], TenantShareTokensResponse(class)[tenant, workspaces], Entities(array)[tenant, workspaces], EntitiesItem(oneOf)[tenant, workspaces], @@ -3492,133 +2043,69 @@ DashboardsCount(int)[tenant, workspaces], TenantUsageLimitInfo(class)[tenant, workspaces], InRejectSet(bool)[tenant, workspaces], - UsageLimitType(anyOf)[tenant, workspaces], - TenantUsageLimitType(ref)[tenant, workspaces], - UsageLimitTypeVariant2(null)[tenant, workspaces], - TenantLimit(anyOf)[tenant, workspaces], - TenantLimitVariant1(int)[tenant, workspaces], - TenantLimitVariant2(null)[tenant, workspaces], + TenantUsageLimitType(ref)[tenant, workspaces], + TenantLimit(int)[tenant, workspaces], TenantUsageLimitType(enum)[tenant, workspaces], TracerSessionCreate(class)[tracer-sessions], StartTime(DateTime)[tracer-sessions], - EndTime12(anyOf)[tracer-sessions], - EndTimeVariant1(DateTime)[tracer-sessions], - EndTimeVariant2(null)[tracer-sessions], - Extra12(anyOf)[tracer-sessions], - TracerSessionCreateExtra(class)[tracer-sessions], - ExtraVariant2(null)[tracer-sessions], + EndTime(DateTime)[tracer-sessions], + TracerSessionCreateExtra(class)[tracer-sessions], Name(string)[tracer-sessions], - Description39(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], - DefaultDatasetId2(anyOf)[tracer-sessions], - DefaultDatasetIdVariant1(string)[tracer-sessions], - DefaultDatasetIdVariant2(null)[tracer-sessions], - ReferenceDatasetId2(anyOf)[tracer-sessions], - ReferenceDatasetIdVariant1(string)[tracer-sessions], - ReferenceDatasetIdVariant2(null)[tracer-sessions], - TraceTier5(anyOf)[tracer-sessions], - TraceTier3(ref)[tracer-sessions], - TraceTierVariant2(null)[tracer-sessions], - Id11(anyOf)[tracer-sessions], - IdVariant1(string)[tracer-sessions], - IdVariant2(null)[tracer-sessions], + Description(string)[tracer-sessions], + DefaultDatasetId(string)[tracer-sessions], + ReferenceDatasetId(string)[tracer-sessions], + TraceTier(ref)[tracer-sessions], + Id(string)[tracer-sessions], TracerSessionUpdate(class)[tracer-sessions], - Name11(anyOf)[tracer-sessions], - NameVariant1(string)[tracer-sessions], - NameVariant2(null)[tracer-sessions], - Description40(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], - DefaultDatasetId3(anyOf)[tracer-sessions], - DefaultDatasetIdVariant1(string)[tracer-sessions], - DefaultDatasetIdVariant2(null)[tracer-sessions], - EndTime13(anyOf)[tracer-sessions], - EndTimeVariant1(DateTime)[tracer-sessions], - EndTimeVariant2(null)[tracer-sessions], - Extra13(anyOf)[tracer-sessions], - TracerSessionUpdateExtra(class)[tracer-sessions], - ExtraVariant2(null)[tracer-sessions], - TraceTier6(anyOf)[tracer-sessions], - TraceTier3(ref)[tracer-sessions], - TraceTierVariant2(null)[tracer-sessions], + Name(string)[tracer-sessions], + Description(string)[tracer-sessions], + DefaultDatasetId(string)[tracer-sessions], + EndTime(DateTime)[tracer-sessions], + TracerSessionUpdateExtra(class)[tracer-sessions], + TraceTier(ref)[tracer-sessions], TracerSessionWithoutVirtualFields(class)[tracer-sessions], StartTime(DateTime)[tracer-sessions], - EndTime14(anyOf)[tracer-sessions], - EndTimeVariant1(DateTime)[tracer-sessions], - EndTimeVariant2(null)[tracer-sessions], - Extra14(anyOf)[tracer-sessions], - TracerSessionWithoutVirtualFieldsExtra(class)[tracer-sessions], - ExtraVariant2(null)[tracer-sessions], + EndTime(DateTime)[tracer-sessions], + TracerSessionWithoutVirtualFieldsExtra(class)[tracer-sessions], Name(string)[tracer-sessions], - Description41(anyOf)[tracer-sessions], - DescriptionVariant1(string)[tracer-sessions], - DescriptionVariant2(null)[tracer-sessions], - DefaultDatasetId4(anyOf)[tracer-sessions], - DefaultDatasetIdVariant1(string)[tracer-sessions], - DefaultDatasetIdVariant2(null)[tracer-sessions], - ReferenceDatasetId3(anyOf)[tracer-sessions], - ReferenceDatasetIdVariant1(string)[tracer-sessions], - ReferenceDatasetIdVariant2(null)[tracer-sessions], - TraceTier7(anyOf)[tracer-sessions], - TraceTier3(ref)[tracer-sessions], - TraceTierVariant2(null)[tracer-sessions], + Description(string)[tracer-sessions], + DefaultDatasetId(string)[tracer-sessions], + ReferenceDatasetId(string)[tracer-sessions], + TraceTier(ref)[tracer-sessions], Id(string)[tracer-sessions], TenantId(string)[tracer-sessions], - LastRunStartTimeLive2(anyOf)[tracer-sessions], - LastRunStartTimeLiveVariant1(DateTime)[tracer-sessions], - LastRunStartTimeLiveVariant2(null)[tracer-sessions], + LastRunStartTimeLive(DateTime)[tracer-sessions], TriggerRulesRequest(class)[run], - RuleIds(anyOf)[run], - RuleIdsVariant1(array)[run], - RuleIdsVariant1Item(string)[run], - RuleIdsVariant2(null)[run], - DatasetId6(anyOf)[run], - DatasetIdVariant1(string)[run], - DatasetIdVariant2(null)[run], + RuleIds(array)[run], + RuleIdsItem(string)[run], + DatasetId(string)[run], UpdateFeedbackConfigSchema(class)[feedback-configs], FeedbackKey(string)[feedback-configs], - FeedbackConfig6(anyOf)[feedback-configs], - FeedbackConfig(ref)[feedback-configs], - FeedbackConfigVariant2(null)[feedback-configs], - IsLowerScoreBetter3(anyOf)[feedback-configs], - IsLowerScoreBetterVariant1(bool)[feedback-configs], - IsLowerScoreBetterVariant2(null)[feedback-configs], + FeedbackConfig(ref)[feedback-configs], + IsLowerScoreBetter(bool)[feedback-configs], UpdateRepoRequest(class)[repos], - Description42(anyOf)[repos], - DescriptionVariant1(string)[repos], - DescriptionVariant2(null)[repos], - Readme4(anyOf)[repos], - ReadmeVariant1(string)[repos], - ReadmeVariant2(null)[repos], - Tags9(anyOf)[repos], - TagsVariant1(array)[repos], - TagsVariant1Item(string)[repos], - TagsVariant2(null)[repos], - IsPublic2(anyOf)[repos], - IsPublicVariant1(bool)[repos], - IsPublicVariant2(null)[repos], - IsArchived(anyOf)[repos], - IsArchivedVariant1(bool)[repos], - IsArchivedVariant2(null)[repos], + Description(string)[repos], + Readme(string)[repos], + Tags(array)[repos], + TagsItem(string)[repos], + IsPublic(bool)[repos], + IsArchived(bool)[repos], UpdateRoleRequest(class)[orgs], DisplayName(string)[orgs], Description(string)[orgs], Permissions(array)[orgs], PermissionsItem(string)[orgs], UpsertTTLSettingsRequest(class)[orgs, ttl-settings], - TenantId7(anyOf)[orgs, ttl-settings], - TenantIdVariant1(string)[orgs, ttl-settings], - TenantIdVariant2(null)[orgs, ttl-settings], - TraceTier3(ref)[orgs, ttl-settings], + TenantId(string)[orgs, ttl-settings], + TraceTier(ref)[orgs, ttl-settings], ApplyToAllProjects(bool)[orgs, ttl-settings], UpsertUsageLimit(class)[usage-limits], - UsageLimitType2(ref)[usage-limits], + UsageLimitType(ref)[usage-limits], LimitValue(int)[usage-limits], Id(string)[usage-limits], - UsageLimitType2(enum)[usage-limits], + UsageLimitType(enum)[usage-limits], UsageLimit(class)[usage-limits], - UsageLimitType2(ref)[usage-limits], + UsageLimitType(ref)[usage-limits], LimitValue(int)[usage-limits], Id(string)[usage-limits], TenantId(string)[usage-limits], @@ -3630,239 +2117,121 @@ CreatedAt(DateTime)[orgs], UpdatedAt(DateTime)[orgs], Email(string)[orgs], - FullName10(anyOf)[orgs], - FullNameVariant1(string)[orgs], - FullNameVariant2(null)[orgs], - AvatarUrl3(anyOf)[orgs], - AvatarUrlVariant1(string)[orgs], - AvatarUrlVariant2(null)[orgs], - Password7(anyOf)[orgs], - PasswordVariant1(string)[orgs], - PasswordVariant2(null)[orgs], + FullName(string)[orgs], + AvatarUrl(string)[orgs], + Password(string)[orgs], WorkspaceCreate(class)[workspaces], Id(string)[workspaces], DisplayName(string)[workspaces], - TenantHandle3(anyOf)[workspaces], - TenantHandleVariant1(string)[workspaces], - TenantHandleVariant2(null)[workspaces], + TenantHandle(string)[workspaces], WorkspacePatch(class)[workspaces], DisplayName(string)[workspaces], AppHubCrudTenantsTenant(class)[settings], Id(string)[settings], DisplayName(string)[settings], CreatedAt(DateTime)[settings], - TenantHandle4(anyOf)[settings], - TenantHandleVariant1(string)[settings], - TenantHandleVariant2(null)[settings], + TenantHandle(string)[settings], AppSchemasTenant(class)[tenant, workspaces], Id(string)[tenant, workspaces], - OrganizationId6(anyOf)[tenant, workspaces], - OrganizationIdVariant1(string)[tenant, workspaces], - OrganizationIdVariant2(null)[tenant, workspaces], + OrganizationId(string)[tenant, workspaces], CreatedAt(DateTime)[tenant, workspaces], DisplayName(string)[tenant, workspaces], IsPersonal(bool)[tenant, workspaces], - TenantHandle5(anyOf)[tenant, workspaces], - TenantHandleVariant1(string)[tenant, workspaces], - TenantHandleVariant2(null)[tenant, workspaces], + TenantHandle(string)[tenant, workspaces], CreateRunRequest(class)[run], Name(string)[run], - Inputs11(oneOf)[run], - CreateRunRequestInputs(class)[run], - InputsVariant2(null)[run], + CreateRunRequestInputs(class)[run], CreateRunRequestRunType(enum)[run], - StartTime7(oneOf)[run], + StartTime(oneOf)[run], StartTimeVariant1(string)[run], StartTimeVariant2(double)[run], - StartTimeVariant3(null)[run], - EndTime15(oneOf)[run], + EndTime(oneOf)[run], EndTimeVariant1(string)[run], EndTimeVariant2(double)[run], - EndTimeVariant3(null)[run], - Extra15(oneOf)[run], - CreateRunRequestExtra(class)[run], - ExtraVariant2(null)[run], - Error10(oneOf)[run], - ErrorVariant1(string)[run], - ErrorVariant2(null)[run], - Serialized6(oneOf)[run], - CreateRunRequestSerialized(class)[run], - SerializedVariant2(null)[run], - Outputs15(oneOf)[run], - CreateRunRequestOutputs(class)[run], - OutputsVariant2(null)[run], - ParentRunId6(oneOf)[run], - ParentRunIdVariant1(string)[run], - ParentRunIdVariant2(null)[run], - Events6(oneOf)[run], - EventsVariant1(array)[run], - CreateRunRequestEventsVariant1Item(class)[run], - EventsVariant2(null)[run], - Tags10(oneOf)[run], - TagsVariant1(array)[run], - TagsVariant1Item(string)[run], - TagsVariant2(null)[run], - TraceId(oneOf)[run], - TraceIdVariant1(string)[run], - TraceIdVariant2(null)[run], - DottedOrder2(oneOf)[run], - DottedOrderVariant1(string)[run], - DottedOrderVariant2(null)[run], - Id12(oneOf)[run], - IdVariant1(string)[run], - IdVariant2(null)[run], - SessionId7(oneOf)[run], - SessionIdVariant1(string)[run], - SessionIdVariant2(null)[run], - SessionName3(oneOf)[run], - SessionNameVariant1(string)[run], - SessionNameVariant2(null)[run], - ReferenceExampleId6(oneOf)[run], - ReferenceExampleIdVariant1(string)[run], - ReferenceExampleIdVariant2(null)[run], - InputAttachments(oneOf)[run], - CreateRunRequestInputAttachments(class)[run], - InputAttachmentsVariant2(null)[run], - OutputAttachments(oneOf)[run], - CreateRunRequestOutputAttachments(class)[run], - OutputAttachmentsVariant2(null)[run], + CreateRunRequestExtra(class)[run], + Error(string)[run], + CreateRunRequestSerialized(class)[run], + CreateRunRequestOutputs(class)[run], + ParentRunId(string)[run], + Events(array)[run], + CreateRunRequestEvent(class)[run], + Tags(array)[run], + TagsItem(string)[run], + TraceId(string)[run], + DottedOrder(string)[run], + Id(string)[run], + SessionId(string)[run], + SessionName(string)[run], + ReferenceExampleId(string)[run], + CreateRunRequestInputAttachments(class)[run], + CreateRunRequestOutputAttachments(class)[run], BatchIngestRunsRequest(class)[run], Post(array)[run], BatchIngestRunsRequestPostItem(class)[run], Name(string)[run], BatchIngestRunsRequestPostItemInputs(class)[run], BatchIngestRunsRequestPostItemRunType(enum)[run], - StartTime8(oneOf)[run], + StartTime2(oneOf)[run], StartTimeVariant1(string)[run], StartTimeVariant2(double)[run], - EndTime16(oneOf)[run], + EndTime2(oneOf)[run], EndTimeVariant1(string)[run], EndTimeVariant2(double)[run], - EndTimeVariant3(null)[run], - Extra16(oneOf)[run], - BatchIngestRunsRequestPostItemExtra(class)[run], - ExtraVariant2(null)[run], - Error11(oneOf)[run], - ErrorVariant1(string)[run], - ErrorVariant2(null)[run], - Serialized7(oneOf)[run], - BatchIngestRunsRequestPostItemSerialized(class)[run], - SerializedVariant2(null)[run], - Outputs16(oneOf)[run], - BatchIngestRunsRequestPostItemOutputs(class)[run], - OutputsVariant2(null)[run], - ParentRunId7(oneOf)[run], - ParentRunIdVariant1(string)[run], - ParentRunIdVariant2(null)[run], - Events7(oneOf)[run], - EventsVariant1(array)[run], - BatchIngestRunsRequestPostItemEventsVariant1Item(class)[run], - EventsVariant2(null)[run], - Tags11(oneOf)[run], - TagsVariant1(array)[run], - TagsVariant1Item(string)[run], - TagsVariant2(null)[run], + BatchIngestRunsRequestPostItemExtra(class)[run], + Error(string)[run], + BatchIngestRunsRequestPostItemSerialized(class)[run], + BatchIngestRunsRequestPostItemOutputs(class)[run], + ParentRunId(string)[run], + Events(array)[run], + BatchIngestRunsRequestPostItemEvent(class)[run], + Tags(array)[run], + TagsItem(string)[run], TraceId(string)[run], DottedOrder(string)[run], Id(string)[run], - SessionId8(oneOf)[run], - SessionIdVariant1(string)[run], - SessionIdVariant2(null)[run], - SessionName4(oneOf)[run], - SessionNameVariant1(string)[run], - SessionNameVariant2(null)[run], - ReferenceExampleId7(oneOf)[run], - ReferenceExampleIdVariant1(string)[run], - ReferenceExampleIdVariant2(null)[run], - InputAttachments2(oneOf)[run], - BatchIngestRunsRequestPostItemInputAttachments(class)[run], - InputAttachmentsVariant2(null)[run], - OutputAttachments2(oneOf)[run], - BatchIngestRunsRequestPostItemOutputAttachments(class)[run], - OutputAttachmentsVariant2(null)[run], + SessionId(string)[run], + SessionName(string)[run], + ReferenceExampleId(string)[run], + BatchIngestRunsRequestPostItemInputAttachments(class)[run], + BatchIngestRunsRequestPostItemOutputAttachments(class)[run], Patch(array)[run], BatchIngestRunsRequestPatchItem(class)[run], TraceId(string)[run], DottedOrder(string)[run], - ParentRunId8(oneOf)[run], - ParentRunIdVariant1(string)[run], - ParentRunIdVariant2(null)[run], - EndTime17(oneOf)[run], + ParentRunId(string)[run], + EndTime3(oneOf)[run], EndTimeVariant1(string)[run], EndTimeVariant2(double)[run], - Error12(oneOf)[run], - ErrorVariant1(string)[run], - ErrorVariant2(null)[run], - Inputs12(oneOf)[run], - BatchIngestRunsRequestPatchItemInputs(class)[run], - InputsVariant2(null)[run], - Outputs17(oneOf)[run], - BatchIngestRunsRequestPatchItemOutputs(class)[run], - OutputsVariant2(null)[run], - Events8(oneOf)[run], - EventsVariant1(array)[run], - BatchIngestRunsRequestPatchItemEventsVariant1Item(class)[run], - EventsVariant2(null)[run], - Tags12(oneOf)[run], - TagsVariant1(array)[run], - TagsVariant1Item(string)[run], - TagsVariant2(null)[run], - Extra17(oneOf)[run], - BatchIngestRunsRequestPatchItemExtra(class)[run], - ExtraVariant2(null)[run], - InputAttachments3(oneOf)[run], - BatchIngestRunsRequestPatchItemInputAttachments(class)[run], - InputAttachmentsVariant2(null)[run], - OutputAttachments3(oneOf)[run], - BatchIngestRunsRequestPatchItemOutputAttachments(class)[run], - OutputAttachmentsVariant2(null)[run], + Error(string)[run], + BatchIngestRunsRequestPatchItemInputs(class)[run], + BatchIngestRunsRequestPatchItemOutputs(class)[run], + Events(array)[run], + BatchIngestRunsRequestPatchItemEvent(class)[run], + Tags(array)[run], + TagsItem(string)[run], + BatchIngestRunsRequestPatchItemExtra(class)[run], + BatchIngestRunsRequestPatchItemInputAttachments(class)[run], + BatchIngestRunsRequestPatchItemOutputAttachments(class)[run], Id(string)[run], UpdateRunRequest(class)[run], - TraceId2(oneOf)[run], - TraceIdVariant1(string)[run], - TraceIdVariant2(null)[run], - DottedOrder3(oneOf)[run], - DottedOrderVariant1(string)[run], - DottedOrderVariant2(null)[run], - ParentRunId9(oneOf)[run], - ParentRunIdVariant1(string)[run], - ParentRunIdVariant2(null)[run], - EndTime18(oneOf)[run], + TraceId(string)[run], + DottedOrder(string)[run], + ParentRunId(string)[run], + EndTime4(oneOf)[run], EndTimeVariant1(string)[run], EndTimeVariant2(double)[run], - EndTimeVariant3(null)[run], - Error13(oneOf)[run], - ErrorVariant1(string)[run], - ErrorVariant2(null)[run], - Inputs13(oneOf)[run], - UpdateRunRequestInputs(class)[run], - InputsVariant2(null)[run], - Outputs18(oneOf)[run], - UpdateRunRequestOutputs(class)[run], - OutputsVariant2(null)[run], - Events9(oneOf)[run], - EventsVariant1(array)[run], - UpdateRunRequestEventsVariant1Item(class)[run], - EventsVariant2(null)[run], - Tags13(oneOf)[run], - TagsVariant1(array)[run], - TagsVariant1Item(string)[run], - TagsVariant2(null)[run], - Extra18(oneOf)[run], - UpdateRunRequestExtra(class)[run], - ExtraVariant2(null)[run], - InputAttachments4(oneOf)[run], - UpdateRunRequestInputAttachments(class)[run], - InputAttachmentsVariant2(null)[run], - OutputAttachments4(oneOf)[run], - UpdateRunRequestOutputAttachments(class)[run], - OutputAttachmentsVariant2(null)[run], - SessionId9(oneOf)[run], - SessionIdVariant1(string)[run], - SessionIdVariant2(null)[run], - SessionName5(oneOf)[run], - SessionNameVariant1(string)[run], - SessionNameVariant2(null)[run], + Error(string)[run], + UpdateRunRequestInputs(class)[run], + UpdateRunRequestOutputs(class)[run], + Events(array)[run], + UpdateRunRequestEvent(class)[run], + Tags(array)[run], + TagsItem(string)[run], + UpdateRunRequestExtra(class)[run], + UpdateRunRequestInputAttachments(class)[run], + UpdateRunRequestOutputAttachments(class)[run], + SessionId(string)[run], + SessionName(string)[run], TracerSessionUpdate(ref)[tracer-sessions], TracerSessionCreate(ref)[tracer-sessions], FilterViewCreate(ref)[tracer-sessions], @@ -3998,60 +2367,34 @@ CreateCommentRequest(ref)[comments], ReadTracerSessionApiV1SessionsSessionIdGetSessionId(string)[tracer-sessions], ReadTracerSessionApiV1SessionsSessionIdGetIncludeStats(bool)[tracer-sessions], - ReadTracerSessionApiV1SessionsSessionIdGetAccept(anyOf)[tracer-sessions], - ReadTracerSessionApiV1SessionsSessionIdGetAcceptVariant1(string)[tracer-sessions], - ReadTracerSessionApiV1SessionsSessionIdGetAcceptVariant2(null)[tracer-sessions], + ReadTracerSessionApiV1SessionsSessionIdGetAccept(string)[tracer-sessions], UpdateTracerSessionApiV1SessionsSessionIdPatchSessionId(string)[tracer-sessions], DeleteTracerSessionApiV1SessionsSessionIdDeleteSessionId(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceFree(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceFreeVariant1(bool)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceFreeVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceDataset(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant1(array)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant1Item(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetId(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetIdVariant1(array)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetIdVariant1Item(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetIdVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetName(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetNameVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetNameVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetNameContains(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetNameContainsVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetNameContainsVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetDatasetVersion(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetDatasetVersionVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetDatasetVersionVariant2(null)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetReferenceFree(bool)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetReferenceDataset(array)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetReferenceDatasetItem(string)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetId(array)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetIdItem(string)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetName(string)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetNameContains(string)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetDatasetVersion(string)[tracer-sessions], SessionSortableColumns(ref)[tracer-sessions], ReadTracerSessionsApiV1SessionsGetSortByDesc(bool)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetMetadata(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetMetadataVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetMetadataVariant2(null)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKey(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKeyVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKeyVariant2(null)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetMetadata(string)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetSortByFeedbackKey(string)[tracer-sessions], ReadTracerSessionsApiV1SessionsGetOffset(int)[tracer-sessions], ReadTracerSessionsApiV1SessionsGetLimit(int)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetTagValueId(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant1(array)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant1Item(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant2(null)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetTagValueId(array)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetTagValueIdItem(string)[tracer-sessions], ReadTracerSessionsApiV1SessionsGetFacets(bool)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetAccept(anyOf)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetAcceptVariant1(string)[tracer-sessions], - ReadTracerSessionsApiV1SessionsGetAcceptVariant2(null)[tracer-sessions], + ReadTracerSessionsApiV1SessionsGetAccept(string)[tracer-sessions], CreateTracerSessionApiV1SessionsPostUpsert(bool)[tracer-sessions], DeleteTracerSessionsApiV1SessionsDeleteSessionIds(array)[tracer-sessions], DeleteTracerSessionsApiV1SessionsDeleteSessionIdsItem(string)[tracer-sessions], ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetSessionId(string)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeys(anyOf)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant1(array)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant1Item(string)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant2(null)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTime(anyOf)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTimeVariant1(DateTime)[tracer-sessions], - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTimeVariant2(null)[tracer-sessions], + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeys(array)[tracer-sessions], + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysItem(string)[tracer-sessions], + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTime(DateTime)[tracer-sessions], ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetK(int)[tracer-sessions], ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetRootRunsOnly(bool)[tracer-sessions], ReadFilterViewsApiV1SessionsSessionIdViewsGetSessionId(string)[tracer-sessions], @@ -4064,9 +2407,7 @@ DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteViewId(string)[tracer-sessions], ListOrganizationsApiV1OrgsGetSkipCreate(bool)[orgs], OrganizationDashboardType(ref)[orgs], - GetDashboardApiV1OrgsCurrentDashboardGetColorScheme(anyOf)[orgs], - OrganizationDashboardColorScheme(ref)[orgs], - GetDashboardApiV1OrgsCurrentDashboardGetColorSchemeVariant2(null)[orgs], + OrganizationDashboardColorScheme(ref)[orgs], DeleteOrganizationRolesApiV1OrgsCurrentRolesRoleIdDeleteRoleId(string)[orgs], UpdateOrganizationRolesApiV1OrgsCurrentRolesRoleIdPatchRoleId(string)[orgs], DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteIdentityId(string)[orgs], @@ -4082,107 +2423,66 @@ GetSsoSettingsApiV1SsoSettingsSsoLoginSlugGetSsoLoginSlug(string)[auth], DeleteApiKeyApiV1ApiKeyApiKeyIdDeleteApiKeyId(string)[api-key], DeletePersonalAccessTokenApiV1ApiKeyCurrentPatIdDeletePatId(string)[api-key], - CountExamplesApiV1ExamplesCountGetId(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetIdVariant1(array)[examples], - CountExamplesApiV1ExamplesCountGetIdVariant1Item(string)[examples], - CountExamplesApiV1ExamplesCountGetIdVariant2(null)[examples], + CountExamplesApiV1ExamplesCountGetId(array)[examples], + CountExamplesApiV1ExamplesCountGetIdItem(string)[examples], CountExamplesApiV1ExamplesCountGetAsOf(anyOf)[examples], CountExamplesApiV1ExamplesCountGetAsOfVariant1(DateTime)[examples], CountExamplesApiV1ExamplesCountGetAsOfVariant2(string)[examples], - CountExamplesApiV1ExamplesCountGetMetadata(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetMetadataVariant1(string)[examples], - CountExamplesApiV1ExamplesCountGetMetadataVariant2(null)[examples], - CountExamplesApiV1ExamplesCountGetFullTextContains(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant1(array)[examples], - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant1Item(string)[examples], - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant2(null)[examples], - CountExamplesApiV1ExamplesCountGetSplits(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetSplitsVariant1(array)[examples], - CountExamplesApiV1ExamplesCountGetSplitsVariant1Item(string)[examples], - CountExamplesApiV1ExamplesCountGetSplitsVariant2(null)[examples], - CountExamplesApiV1ExamplesCountGetDataset(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetDatasetVariant1(string)[examples], - CountExamplesApiV1ExamplesCountGetDatasetVariant2(null)[examples], - CountExamplesApiV1ExamplesCountGetFilter(anyOf)[examples], - CountExamplesApiV1ExamplesCountGetFilterVariant1(string)[examples], - CountExamplesApiV1ExamplesCountGetFilterVariant2(null)[examples], + CountExamplesApiV1ExamplesCountGetMetadata(string)[examples], + CountExamplesApiV1ExamplesCountGetFullTextContains(array)[examples], + CountExamplesApiV1ExamplesCountGetFullTextContainsItem(string)[examples], + CountExamplesApiV1ExamplesCountGetSplits(array)[examples], + CountExamplesApiV1ExamplesCountGetSplitsItem(string)[examples], + CountExamplesApiV1ExamplesCountGetDataset(string)[examples], + CountExamplesApiV1ExamplesCountGetFilter(string)[examples], ReadExampleApiV1ExamplesExampleIdGetExampleId(string)[examples], ReadExampleApiV1ExamplesExampleIdGetAsOf(anyOf)[examples], ReadExampleApiV1ExamplesExampleIdGetAsOfVariant1(DateTime)[examples], ReadExampleApiV1ExamplesExampleIdGetAsOfVariant2(string)[examples], UpdateExampleApiV1ExamplesExampleIdPatchExampleId(string)[examples], DeleteExampleApiV1ExamplesExampleIdDeleteExampleId(string)[examples], - ReadExamplesApiV1ExamplesGetId(anyOf)[examples], - ReadExamplesApiV1ExamplesGetIdVariant1(array)[examples], - ReadExamplesApiV1ExamplesGetIdVariant1Item(string)[examples], - ReadExamplesApiV1ExamplesGetIdVariant2(null)[examples], + ReadExamplesApiV1ExamplesGetId(array)[examples], + ReadExamplesApiV1ExamplesGetIdItem(string)[examples], ReadExamplesApiV1ExamplesGetAsOf(anyOf)[examples], ReadExamplesApiV1ExamplesGetAsOfVariant1(DateTime)[examples], ReadExamplesApiV1ExamplesGetAsOfVariant2(string)[examples], - ReadExamplesApiV1ExamplesGetMetadata(anyOf)[examples], - ReadExamplesApiV1ExamplesGetMetadataVariant1(string)[examples], - ReadExamplesApiV1ExamplesGetMetadataVariant2(null)[examples], - ReadExamplesApiV1ExamplesGetFullTextContains(anyOf)[examples], - ReadExamplesApiV1ExamplesGetFullTextContainsVariant1(array)[examples], - ReadExamplesApiV1ExamplesGetFullTextContainsVariant1Item(string)[examples], - ReadExamplesApiV1ExamplesGetFullTextContainsVariant2(null)[examples], - ReadExamplesApiV1ExamplesGetSplits(anyOf)[examples], - ReadExamplesApiV1ExamplesGetSplitsVariant1(array)[examples], - ReadExamplesApiV1ExamplesGetSplitsVariant1Item(string)[examples], - ReadExamplesApiV1ExamplesGetSplitsVariant2(null)[examples], - ReadExamplesApiV1ExamplesGetDataset(anyOf)[examples], - ReadExamplesApiV1ExamplesGetDatasetVariant1(string)[examples], - ReadExamplesApiV1ExamplesGetDatasetVariant2(null)[examples], + ReadExamplesApiV1ExamplesGetMetadata(string)[examples], + ReadExamplesApiV1ExamplesGetFullTextContains(array)[examples], + ReadExamplesApiV1ExamplesGetFullTextContainsItem(string)[examples], + ReadExamplesApiV1ExamplesGetSplits(array)[examples], + ReadExamplesApiV1ExamplesGetSplitsItem(string)[examples], + ReadExamplesApiV1ExamplesGetDataset(string)[examples], ReadExamplesApiV1ExamplesGetOffset(int)[examples], ReadExamplesApiV1ExamplesGetLimit(int)[examples], ExampleListOrder(ref)[examples], - ReadExamplesApiV1ExamplesGetRandomSeed(anyOf)[examples], - ReadExamplesApiV1ExamplesGetRandomSeedVariant1(double)[examples], - ReadExamplesApiV1ExamplesGetRandomSeedVariant2(null)[examples], + ReadExamplesApiV1ExamplesGetRandomSeed(double)[examples], ReadExamplesApiV1ExamplesGetSelect(array)[examples], ExampleSelect(ref)[examples], - ReadExamplesApiV1ExamplesGetFilter(anyOf)[examples], - ReadExamplesApiV1ExamplesGetFilterVariant1(string)[examples], - ReadExamplesApiV1ExamplesGetFilterVariant2(null)[examples], + ReadExamplesApiV1ExamplesGetFilter(string)[examples], DeleteExamplesApiV1ExamplesDeleteExampleIds(array)[examples], DeleteExamplesApiV1ExamplesDeleteExampleIdsItem(string)[examples], UploadExamplesApiV1ExamplesUploadDatasetIdPostDatasetId(string)[examples], ReadDatasetApiV1DatasetsDatasetIdGetDatasetId(string)[datasets], DeleteDatasetApiV1DatasetsDatasetIdDeleteDatasetId(string)[datasets], UpdateDatasetApiV1DatasetsDatasetIdPatchDatasetId(string)[datasets], - ReadDatasetsApiV1DatasetsGetId(anyOf)[datasets], - ReadDatasetsApiV1DatasetsGetIdVariant1(array)[datasets], - ReadDatasetsApiV1DatasetsGetIdVariant1Item(string)[datasets], - ReadDatasetsApiV1DatasetsGetIdVariant2(null)[datasets], + ReadDatasetsApiV1DatasetsGetId(array)[datasets], + ReadDatasetsApiV1DatasetsGetIdItem(string)[datasets], ReadDatasetsApiV1DatasetsGetDataType(anyOf)[datasets], ReadDatasetsApiV1DatasetsGetDataTypeVariant1(array)[datasets], DataType(ref)[datasets], DataType(ref)[datasets], - ReadDatasetsApiV1DatasetsGetDataTypeVariant3(null)[datasets], - ReadDatasetsApiV1DatasetsGetName(anyOf)[datasets], - ReadDatasetsApiV1DatasetsGetNameVariant1(string)[datasets], - ReadDatasetsApiV1DatasetsGetNameVariant2(null)[datasets], - ReadDatasetsApiV1DatasetsGetNameContains(anyOf)[datasets], - ReadDatasetsApiV1DatasetsGetNameContainsVariant1(string)[datasets], - ReadDatasetsApiV1DatasetsGetNameContainsVariant2(null)[datasets], - ReadDatasetsApiV1DatasetsGetMetadata(anyOf)[datasets], - ReadDatasetsApiV1DatasetsGetMetadataVariant1(string)[datasets], - ReadDatasetsApiV1DatasetsGetMetadataVariant2(null)[datasets], + ReadDatasetsApiV1DatasetsGetName(string)[datasets], + ReadDatasetsApiV1DatasetsGetNameContains(string)[datasets], + ReadDatasetsApiV1DatasetsGetMetadata(string)[datasets], ReadDatasetsApiV1DatasetsGetOffset(int)[datasets], ReadDatasetsApiV1DatasetsGetLimit(int)[datasets], SortByDatasetColumn(ref)[datasets], ReadDatasetsApiV1DatasetsGetSortByDesc(bool)[datasets], - ReadDatasetsApiV1DatasetsGetTagValueId(anyOf)[datasets], - ReadDatasetsApiV1DatasetsGetTagValueIdVariant1(array)[datasets], - ReadDatasetsApiV1DatasetsGetTagValueIdVariant1Item(string)[datasets], - ReadDatasetsApiV1DatasetsGetTagValueIdVariant2(null)[datasets], + ReadDatasetsApiV1DatasetsGetTagValueId(array)[datasets], + ReadDatasetsApiV1DatasetsGetTagValueIdItem(string)[datasets], GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetDatasetId(string)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearch(anyOf)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearchVariant1(string)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearchVariant2(null)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExample(anyOf)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExampleVariant1(string)[datasets], - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExampleVariant2(null)[datasets], + GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearch(string)[datasets], + GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExample(string)[datasets], GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetLimit(int)[datasets], GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetOffset(int)[datasets], DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetDatasetId(string)[datasets], @@ -4193,25 +2493,15 @@ DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetToVersionVariant1(DateTime)[datasets], DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetToVersionVariant2(string)[datasets], GetDatasetVersionApiV1DatasetsDatasetIdVersionGetDatasetId(string)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOf(anyOf)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOfVariant1(DateTime)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOfVariant2(null)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTag(anyOf)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTagVariant1(string)[datasets], - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTagVariant2(null)[datasets], + GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOf(DateTime)[datasets], + GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTag(string)[datasets], UpdateDatasetVersionApiV1DatasetsDatasetIdTagsPutDatasetId(string)[datasets], DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetDatasetId(string)[datasets], - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOf(anyOf)[datasets], - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOfVariant1(DateTime)[datasets], - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOfVariant2(null)[datasets], + DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOf(DateTime)[datasets], DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetDatasetId(string)[datasets], - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOf(anyOf)[datasets], - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOfVariant1(DateTime)[datasets], - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOfVariant2(null)[datasets], + DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOf(DateTime)[datasets], DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetDatasetId(string)[datasets], - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOf(anyOf)[datasets], - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOfVariant1(DateTime)[datasets], - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOfVariant2(null)[datasets], + DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOf(DateTime)[datasets], ReadExamplesWithRunsApiV1DatasetsDatasetIdRunsPostDatasetId(string)[datasets], ReadDeltaApiV1DatasetsDatasetIdRunsDeltaPostDatasetId(string)[datasets], ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetDatasetId(string)[datasets], @@ -4219,16 +2509,10 @@ ShareDatasetApiV1DatasetsDatasetIdSharePutShareProjects(bool)[datasets], UnshareDatasetApiV1DatasetsDatasetIdShareDeleteDatasetId(string)[datasets], ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetDatasetId(string)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetName(anyOf)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameVariant1(string)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameVariant2(null)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContains(anyOf)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContainsVariant1(string)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContainsVariant2(null)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetId(anyOf)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant1(array)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant1Item(string)[datasets], - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant2(null)[datasets], + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetName(string)[datasets], + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContains(string)[datasets], + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetId(array)[datasets], + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdItem(string)[datasets], ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetOffset(int)[datasets], ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetLimit(int)[datasets], SortByComparativeExperimentColumn(ref)[datasets], @@ -4244,29 +2528,17 @@ GetIndexInfoApiV1DatasetsDatasetIdIndexGetDatasetId(string)[datasets], SearchApiV1DatasetsDatasetIdSearchPostDatasetId(string)[datasets], GenerateApiV1DatasetsDatasetIdGeneratePostDatasetId(string)[datasets], - ListRulesApiV1RunsRulesGetDatasetId(anyOf)[run], - ListRulesApiV1RunsRulesGetDatasetIdVariant1(string)[run], - ListRulesApiV1RunsRulesGetDatasetIdVariant2(null)[run], - ListRulesApiV1RunsRulesGetSessionId(anyOf)[run], - ListRulesApiV1RunsRulesGetSessionIdVariant1(string)[run], - ListRulesApiV1RunsRulesGetSessionIdVariant2(null)[run], - ListRulesApiV1RunsRulesGetType(anyOf)[run], - ListRulesApiV1RunsRulesGetType2(enum)[run], - ListRulesApiV1RunsRulesGetTypeVariant2(null)[run], - ListRulesApiV1RunsRulesGetNameContains(anyOf)[run], - ListRulesApiV1RunsRulesGetNameContainsVariant1(string)[run], - ListRulesApiV1RunsRulesGetNameContainsVariant2(null)[run], + ListRulesApiV1RunsRulesGetDatasetId(string)[run], + ListRulesApiV1RunsRulesGetSessionId(string)[run], + ListRulesApiV1RunsRulesGetType(enum)[run], + ListRulesApiV1RunsRulesGetNameContains(string)[run], UpdateRuleApiV1RunsRulesRuleIdPatchRuleId(string)[run], DeleteRuleApiV1RunsRulesRuleIdDeleteRuleId(string)[run], ListRuleLogsApiV1RunsRulesRuleIdLogsGetRuleId(string)[run], ListRuleLogsApiV1RunsRulesRuleIdLogsGetLimit(int)[run], ListRuleLogsApiV1RunsRulesRuleIdLogsGetOffset(int)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTime(anyOf)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTimeVariant1(DateTime)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTimeVariant2(null)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTime(anyOf)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTimeVariant1(DateTime)[run], - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTimeVariant2(null)[run], + ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTime(DateTime)[run], + ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTime(DateTime)[run], TriggerRuleApiV1RunsRulesRuleIdTriggerPostRuleId(string)[run], ReadRunApiV1RunsRunIdGetRunId(string)[run], ReadRunApiV1RunsRunIdGetExcludeS3StoredAttributes(bool)[run], @@ -4274,68 +2546,40 @@ ReadRunShareStateApiV1RunsRunIdShareGetRunId(string)[run], ShareRunApiV1RunsRunIdSharePutRunId(string)[run], UnshareRunApiV1RunsRunIdShareDeleteRunId(string)[run], - GroupRunsApiV1RunsGroupPostAccept(anyOf)[run], - GroupRunsApiV1RunsGroupPostAcceptVariant1(string)[run], - GroupRunsApiV1RunsGroupPostAcceptVariant2(null)[run], + GroupRunsApiV1RunsGroupPostAccept(string)[run], ReadFeedbackApiV1FeedbackFeedbackIdGetFeedbackId(string)[feedback], UpdateFeedbackApiV1FeedbackFeedbackIdPatchFeedbackId(string)[feedback], DeleteFeedbackApiV1FeedbackFeedbackIdDeleteFeedbackId(string)[feedback], - ReadFeedbacksApiV1FeedbackGetRun(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetRunVariant1(array)[feedback], - ReadFeedbacksApiV1FeedbackGetRunVariant1Item(string)[feedback], - ReadFeedbacksApiV1FeedbackGetRunVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetKey(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetKeyVariant1(array)[feedback], - ReadFeedbacksApiV1FeedbackGetKeyVariant1Item(string)[feedback], - ReadFeedbacksApiV1FeedbackGetKeyVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetSession(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetSessionVariant1(array)[feedback], - ReadFeedbacksApiV1FeedbackGetSessionVariant1Item(string)[feedback], - ReadFeedbacksApiV1FeedbackGetSessionVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetSource(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetSourceVariant1(array)[feedback], - SourceType(ref)[feedback], - ReadFeedbacksApiV1FeedbackGetSourceVariant2(null)[feedback], + ReadFeedbacksApiV1FeedbackGetRun(array)[feedback], + ReadFeedbacksApiV1FeedbackGetRunItem(string)[feedback], + ReadFeedbacksApiV1FeedbackGetKey(array)[feedback], + ReadFeedbacksApiV1FeedbackGetKeyItem(string)[feedback], + ReadFeedbacksApiV1FeedbackGetSession(array)[feedback], + ReadFeedbacksApiV1FeedbackGetSessionItem(string)[feedback], + ReadFeedbacksApiV1FeedbackGetSource(array)[feedback], + SourceType(ref)[feedback], ReadFeedbacksApiV1FeedbackGetLimit(int)[feedback], ReadFeedbacksApiV1FeedbackGetOffset(int)[feedback], - ReadFeedbacksApiV1FeedbackGetUser(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetUserVariant1(array)[feedback], - ReadFeedbacksApiV1FeedbackGetUserVariant1Item(string)[feedback], - ReadFeedbacksApiV1FeedbackGetUserVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetHasComment(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetHasCommentVariant1(bool)[feedback], - ReadFeedbacksApiV1FeedbackGetHasCommentVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetHasScore(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetHasScoreVariant1(bool)[feedback], - ReadFeedbacksApiV1FeedbackGetHasScoreVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetLevel(anyOf)[feedback], - FeedbackLevel(ref)[feedback], - ReadFeedbacksApiV1FeedbackGetLevelVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetMaxCreatedAt(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetMaxCreatedAtVariant1(DateTime)[feedback], - ReadFeedbacksApiV1FeedbackGetMaxCreatedAtVariant2(null)[feedback], - ReadFeedbacksApiV1FeedbackGetMinCreatedAt(anyOf)[feedback], - ReadFeedbacksApiV1FeedbackGetMinCreatedAtVariant1(DateTime)[feedback], - ReadFeedbacksApiV1FeedbackGetMinCreatedAtVariant2(null)[feedback], + ReadFeedbacksApiV1FeedbackGetUser(array)[feedback], + ReadFeedbacksApiV1FeedbackGetUserItem(string)[feedback], + ReadFeedbacksApiV1FeedbackGetHasComment(bool)[feedback], + ReadFeedbacksApiV1FeedbackGetHasScore(bool)[feedback], + FeedbackLevel(ref)[feedback], + ReadFeedbacksApiV1FeedbackGetMaxCreatedAt(DateTime)[feedback], + ReadFeedbacksApiV1FeedbackGetMinCreatedAt(DateTime)[feedback], ListFeedbackIngestTokensApiV1FeedbackTokensGetRunId(string)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetToken(string)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScore(anyOf)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant1(double)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant2(int)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant3(bool)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant4(null)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValue(anyOf)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant1(double)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant2(int)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant3(bool)[feedback], CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant4(string)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant5(null)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetComment(anyOf)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCommentVariant1(string)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCommentVariant2(null)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrection(anyOf)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrectionVariant1(string)[feedback], - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrectionVariant2(null)[feedback], + CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetComment(string)[feedback], + CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrection(string)[feedback], CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostToken(string)[feedback], GetSharedRunApiV1PublicShareTokenRunGetShareToken(string)[public], GetSharedRunApiV1PublicShareTokenRunGetExcludeS3StoredAttributes(bool)[public], @@ -4344,99 +2588,59 @@ GetSharedRunByIdApiV1PublicShareTokenRunIdGetExcludeS3StoredAttributes(bool)[public], QuerySharedRunsApiV1PublicShareTokenRunsQueryPostShareToken(string)[public], ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetShareToken(string)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRun(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant1(array)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant1Item(string)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKey(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant1(array)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant1Item(string)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSession(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant1(array)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant1Item(string)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSource(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSourceVariant1(array)[public], - SourceType(ref)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSourceVariant2(null)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRun(array)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunItem(string)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKey(array)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyItem(string)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSession(array)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionItem(string)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSource(array)[public], + SourceType(ref)[public], ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLimit(int)[public], ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetOffset(int)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUser(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant1(array)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant1Item(string)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasComment(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasCommentVariant1(bool)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasCommentVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScore(anyOf)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScoreVariant1(bool)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScoreVariant2(null)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLevel(anyOf)[public], - FeedbackLevel(ref)[public], - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLevelVariant2(null)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUser(array)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserItem(string)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasComment(bool)[public], + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScore(bool)[public], + FeedbackLevel(ref)[public], ReadSharedDatasetApiV1PublicShareTokenDatasetsGetShareToken(string)[public], ReadSharedDatasetApiV1PublicShareTokenDatasetsGetOffset(int)[public], ReadSharedDatasetApiV1PublicShareTokenDatasetsGetLimit(int)[public], SortByDatasetColumn(ref)[public], ReadSharedDatasetApiV1PublicShareTokenDatasetsGetSortByDesc(bool)[public], CountSharedExamplesApiV1PublicShareTokenExamplesCountGetShareToken(string)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetId(anyOf)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant1(array)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant1Item(string)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant2(null)[public], + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetId(array)[public], + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdItem(string)[public], CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOf(anyOf)[public], CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOfVariant1(DateTime)[public], CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOfVariant2(string)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadata(anyOf)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadataVariant1(string)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadataVariant2(null)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilter(anyOf)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilterVariant1(string)[public], - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilterVariant2(null)[public], + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadata(string)[public], + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilter(string)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetShareToken(string)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetId(anyOf)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant1(array)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant1Item(string)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant2(null)[public], + ReadSharedExamplesApiV1PublicShareTokenExamplesGetId(array)[public], + ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdItem(string)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOf(anyOf)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOfVariant1(DateTime)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOfVariant2(string)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadata(anyOf)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadataVariant1(string)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadataVariant2(null)[public], + ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadata(string)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetOffset(int)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetLimit(int)[public], ReadSharedExamplesApiV1PublicShareTokenExamplesGetSelect(array)[public], ExampleSelect(ref)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilter(anyOf)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilterVariant1(string)[public], - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilterVariant2(null)[public], + ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilter(string)[public], ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetShareToken(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetId(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant1(array)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant1Item(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant2(null)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetName(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameVariant1(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameVariant2(null)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContains(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContainsVariant1(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContainsVariant2(null)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersion(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersionVariant1(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersionVariant2(null)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetId(array)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdItem(string)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetName(string)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContains(string)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersion(string)[public], SessionSortableColumns(ref)[public], ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByDesc(bool)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKey(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKeyVariant1(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKeyVariant2(null)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKey(string)[public], ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetOffset(int)[public], ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetLimit(int)[public], ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetFacets(bool)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAccept(anyOf)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAcceptVariant1(string)[public], - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAcceptVariant2(null)[public], + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAccept(string)[public], ReadSharedDatasetExamplesWithRunsApiV1PublicShareTokenExamplesRunsPostShareToken(string)[public], ReadSharedDeltaApiV1PublicShareTokenDatasetsRunsDeltaPostShareToken(string)[public], QuerySharedDatasetRunsApiV1PublicShareTokenDatasetsRunsQueryPostShareToken(string)[public], @@ -4446,64 +2650,36 @@ ReadSharedDatasetRunApiV1PublicShareTokenDatasetsRunsRunIdGetShareToken(string)[public], ReadSharedDatasetRunApiV1PublicShareTokenDatasetsRunsRunIdGetExcludeS3StoredAttributes(bool)[public], ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetShareToken(string)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRun(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant1(array)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant1Item(string)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKey(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant1(array)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant1Item(string)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSession(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant1(array)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant1Item(string)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSource(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSourceVariant1(array)[public], - SourceType(ref)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSourceVariant2(null)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRun(array)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunItem(string)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKey(array)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyItem(string)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSession(array)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionItem(string)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSource(array)[public], + SourceType(ref)[public], ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLimit(int)[public], ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetOffset(int)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUser(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant1(array)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant1Item(string)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasComment(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasCommentVariant1(bool)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasCommentVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScore(anyOf)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScoreVariant1(bool)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScoreVariant2(null)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLevel(anyOf)[public], - FeedbackLevel(ref)[public], - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLevelVariant2(null)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUser(array)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserItem(string)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasComment(bool)[public], + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScore(bool)[public], + FeedbackLevel(ref)[public], ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetShareToken(string)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetName(anyOf)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameVariant1(string)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameVariant2(null)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContains(anyOf)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContainsVariant1(string)[public], - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContainsVariant2(null)[public], + ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetName(string)[public], + ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContains(string)[public], ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetOffset(int)[public], ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetLimit(int)[public], SortByComparativeExperimentColumn(ref)[public], ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetSortByDesc(bool)[public], - GetAnnotationQueuesApiV1AnnotationQueuesGetIds(anyOf)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant1(array)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant1Item(string)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant2(null)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetName(anyOf)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetNameVariant1(string)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetNameVariant2(null)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContains(anyOf)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContainsVariant1(string)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContainsVariant2(null)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetIds(array)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetIdsItem(string)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetName(string)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetNameContains(string)[annotation-queues], GetAnnotationQueuesApiV1AnnotationQueuesGetOffset(int)[annotation-queues], GetAnnotationQueuesApiV1AnnotationQueuesGetLimit(int)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueId(anyOf)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant1(array)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant1Item(string)[annotation-queues], - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant2(null)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueId(array)[annotation-queues], + GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdItem(string)[annotation-queues], DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteQueueId(string)[annotation-queues], UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchQueueId(string)[annotation-queues], AddRunsToAnnotationQueueApiV1AnnotationQueuesQueueIdRunsPostQueueId(string)[annotation-queues], @@ -4531,20 +2707,16 @@ DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteIdentityId(string)[tenant], PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchIdentityId(string)[tenant], DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteIdentityId(string)[tenant], - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKey(anyOf)[feedback-configs], - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant1(array)[feedback-configs], - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant1Item(string)[feedback-configs], - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant2(null)[feedback-configs], + ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKey(array)[feedback-configs], + ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyItem(string)[feedback-configs], UpdateModelPriceApiV1ModelPriceMapIdPutId(string)[model-price-map], DeleteModelPriceApiV1ModelPriceMapIdDeleteId(string)[model-price-map], DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteUsageLimitId(string)[usage-limits], PatchWorkspaceApiV1WorkspacesWorkspaceIdPatchWorkspaceId(string)[workspaces], DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteId(string)[workspaces], ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostWorkspaceId(string)[workspaces], - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueId(anyOf)[workspaces], - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant1(array)[workspaces], - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant1Item(string)[workspaces], - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant2(null)[workspaces], + GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueId(array)[workspaces], + GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdItem(string)[workspaces], GetSharedTokensApiV1WorkspacesCurrentSharedGetLimit(int)[workspaces], GetSharedTokensApiV1WorkspacesCurrentSharedGetOffset(int)[workspaces], DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteIdentityId(string)[workspaces], @@ -4561,9 +2733,7 @@ UpdateTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdPatchTagValueId(string)[workspaces], DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteTagKeyId(string)[workspaces], DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteTagValueId(string)[workspaces], - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueId(anyOf)[workspaces], - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueIdVariant1(string)[workspaces], - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueIdVariant2(null)[workspaces], + ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueId(string)[workspaces], DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteTaggingId(string)[workspaces], ResourceType(ref)[workspaces], ListTagsForResourceApiV1WorkspacesCurrentTagsResourceGetResourceId(string)[workspaces], @@ -4572,23 +2742,13 @@ DeleteServiceAccountApiV1ServiceAccountsServiceAccountIdDeleteServiceAccountId(string)[service-accounts], ReadSectionsApiV1ChartsSectionGetLimit(int)[charts], ReadSectionsApiV1ChartsSectionGetOffset(int)[charts], - ReadSectionsApiV1ChartsSectionGetTitleContains(anyOf)[charts], - ReadSectionsApiV1ChartsSectionGetTitleContainsVariant1(string)[charts], - ReadSectionsApiV1ChartsSectionGetTitleContainsVariant2(null)[charts], - ReadSectionsApiV1ChartsSectionGetIds(anyOf)[charts], - ReadSectionsApiV1ChartsSectionGetIdsVariant1(array)[charts], - ReadSectionsApiV1ChartsSectionGetIdsVariant1Item(string)[charts], - ReadSectionsApiV1ChartsSectionGetIdsVariant2(null)[charts], - ReadSectionsApiV1ChartsSectionGetSortBy(anyOf)[charts], - ReadSectionsApiV1ChartsSectionGetSortByVariant1(string)[charts], - ReadSectionsApiV1ChartsSectionGetSortByVariant2(null)[charts], + ReadSectionsApiV1ChartsSectionGetTitleContains(string)[charts], + ReadSectionsApiV1ChartsSectionGetIds(array)[charts], + ReadSectionsApiV1ChartsSectionGetIdsItem(string)[charts], + ReadSectionsApiV1ChartsSectionGetSortBy(string)[charts], ReadSectionsApiV1ChartsSectionGetSortByDesc(bool)[charts], - ReadSectionsApiV1ChartsSectionGetSortByDescVariant1(bool)[charts], - ReadSectionsApiV1ChartsSectionGetSortByDescVariant2(null)[charts], - ReadSectionsApiV1ChartsSectionGetTagValueId(anyOf)[charts], - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant1(array)[charts], - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant1Item(string)[charts], - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant2(null)[charts], + ReadSectionsApiV1ChartsSectionGetTagValueId(array)[charts], + ReadSectionsApiV1ChartsSectionGetTagValueIdItem(string)[charts], ReadSingleChartApiV1ChartsChartIdPostChartId(string)[charts], UpdateChartApiV1ChartsChartIdPatchChartId(string)[charts], DeleteChartApiV1ChartsChartIdDeleteChartId(string)[charts], @@ -4598,48 +2758,23 @@ ListReposApiV1ReposGetWithLatestManifest(bool)[repos], ListReposApiV1ReposGetLimit(int)[repos], ListReposApiV1ReposGetOffset(int)[repos], - ListReposApiV1ReposGetTenantHandle(anyOf)[repos], - ListReposApiV1ReposGetTenantHandleVariant1(string)[repos], - ListReposApiV1ReposGetTenantHandleVariant2(null)[repos], - ListReposApiV1ReposGetTenantId(anyOf)[repos], - ListReposApiV1ReposGetTenantIdVariant1(string)[repos], - ListReposApiV1ReposGetTenantIdVariant2(null)[repos], - ListReposApiV1ReposGetQuery(anyOf)[repos], - ListReposApiV1ReposGetQueryVariant1(string)[repos], - ListReposApiV1ReposGetQueryVariant2(null)[repos], - ListReposApiV1ReposGetHasCommits(anyOf)[repos], - ListReposApiV1ReposGetHasCommitsVariant1(bool)[repos], - ListReposApiV1ReposGetHasCommitsVariant2(null)[repos], - ListReposApiV1ReposGetTags(anyOf)[repos], - ListReposApiV1ReposGetTagsVariant1(array)[repos], - ListReposApiV1ReposGetTagsVariant1Item(string)[repos], - ListReposApiV1ReposGetTagsVariant2(null)[repos], - ListReposApiV1ReposGetIsArchived(anyOf)[repos], - ListReposApiV1ReposGetIsArchived2(enum)[repos], - ListReposApiV1ReposGetIsArchivedVariant2(null)[repos], - ListReposApiV1ReposGetIsPublic(anyOf)[repos], - ListReposApiV1ReposGetIsPublic2(enum)[repos], - ListReposApiV1ReposGetIsPublicVariant2(null)[repos], - ListReposApiV1ReposGetUpstreamRepoOwner(anyOf)[repos], - ListReposApiV1ReposGetUpstreamRepoOwnerVariant1(string)[repos], - ListReposApiV1ReposGetUpstreamRepoOwnerVariant2(null)[repos], - ListReposApiV1ReposGetUpstreamRepoHandle(anyOf)[repos], - ListReposApiV1ReposGetUpstreamRepoHandleVariant1(string)[repos], - ListReposApiV1ReposGetUpstreamRepoHandleVariant2(null)[repos], + ListReposApiV1ReposGetTenantHandle(string)[repos], + ListReposApiV1ReposGetTenantId(string)[repos], + ListReposApiV1ReposGetQuery(string)[repos], + ListReposApiV1ReposGetHasCommits(bool)[repos], + ListReposApiV1ReposGetTags(array)[repos], + ListReposApiV1ReposGetTagsItem(string)[repos], + ListReposApiV1ReposGetIsArchived(enum)[repos], + ListReposApiV1ReposGetIsPublic(enum)[repos], + ListReposApiV1ReposGetUpstreamRepoOwner(string)[repos], + ListReposApiV1ReposGetUpstreamRepoHandle(string)[repos], ListReposApiV1ReposGetMatchPrefix(bool)[repos], - ListReposApiV1ReposGetMatchPrefixVariant1(bool)[repos], - ListReposApiV1ReposGetMatchPrefixVariant2(null)[repos], - ListReposApiV1ReposGetTagValueId(anyOf)[repos], - ListReposApiV1ReposGetTagValueIdVariant1(array)[repos], - ListReposApiV1ReposGetTagValueIdVariant1Item(string)[repos], - ListReposApiV1ReposGetTagValueIdVariant2(null)[repos], - ListReposApiV1ReposGetSortField(anyOf)[repos], - ListReposApiV1ReposGetSortFieldVariant1(string)[repos], - ListReposApiV1ReposGetSortFieldVariant2(null)[repos], + ListReposApiV1ReposGetTagValueId(array)[repos], + ListReposApiV1ReposGetTagValueIdItem(string)[repos], + ListReposApiV1ReposGetSortField(string)[repos], ListReposApiV1ReposGetSortDirection(anyOf)[repos], ListReposApiV1ReposGetSortDirectionVariant1(enum)[repos], ListReposApiV1ReposGetSortDirectionVariant2(enum)[repos], - ListReposApiV1ReposGetSortDirectionVariant3(null)[repos], GetRepoApiV1ReposOwnerRepoGetOwner(string)[repos], GetRepoApiV1ReposOwnerRepoGetRepo(string)[repos], UpdateRepoApiV1ReposOwnerRepoPatchOwner(string)[repos], @@ -4650,41 +2785,19 @@ ForkRepoApiV1ReposOwnerRepoForkPostRepo(string)[repos], ListRepoTagsApiV1ReposTagsGetLimit(int)[repos], ListRepoTagsApiV1ReposTagsGetOffset(int)[repos], - ListRepoTagsApiV1ReposTagsGetTenantHandle(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetTenantHandleVariant1(string)[repos], - ListRepoTagsApiV1ReposTagsGetTenantHandleVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetTenantId(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetTenantIdVariant1(string)[repos], - ListRepoTagsApiV1ReposTagsGetTenantIdVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetQuery(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetQueryVariant1(string)[repos], - ListRepoTagsApiV1ReposTagsGetQueryVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetHasCommits(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetHasCommitsVariant1(bool)[repos], - ListRepoTagsApiV1ReposTagsGetHasCommitsVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetTags(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetTagsVariant1(array)[repos], - ListRepoTagsApiV1ReposTagsGetTagsVariant1Item(string)[repos], - ListRepoTagsApiV1ReposTagsGetTagsVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetIsArchived(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetIsArchived2(enum)[repos], - ListRepoTagsApiV1ReposTagsGetIsArchivedVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetIsPublic(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetIsPublic2(enum)[repos], - ListRepoTagsApiV1ReposTagsGetIsPublicVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwner(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwnerVariant1(string)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwnerVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandle(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandleVariant1(string)[repos], - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandleVariant2(null)[repos], + ListRepoTagsApiV1ReposTagsGetTenantHandle(string)[repos], + ListRepoTagsApiV1ReposTagsGetTenantId(string)[repos], + ListRepoTagsApiV1ReposTagsGetQuery(string)[repos], + ListRepoTagsApiV1ReposTagsGetHasCommits(bool)[repos], + ListRepoTagsApiV1ReposTagsGetTags(array)[repos], + ListRepoTagsApiV1ReposTagsGetTagsItem(string)[repos], + ListRepoTagsApiV1ReposTagsGetIsArchived(enum)[repos], + ListRepoTagsApiV1ReposTagsGetIsPublic(enum)[repos], + ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwner(string)[repos], + ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandle(string)[repos], ListRepoTagsApiV1ReposTagsGetMatchPrefix(bool)[repos], - ListRepoTagsApiV1ReposTagsGetMatchPrefixVariant1(bool)[repos], - ListRepoTagsApiV1ReposTagsGetMatchPrefixVariant2(null)[repos], - ListRepoTagsApiV1ReposTagsGetTagValueId(anyOf)[repos], - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant1(array)[repos], - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant1Item(string)[repos], - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant2(null)[repos], + ListRepoTagsApiV1ReposTagsGetTagValueId(array)[repos], + ListRepoTagsApiV1ReposTagsGetTagValueIdItem(string)[repos], LikeRepoApiV1LikesOwnerRepoPostOwner(string)[likes], LikeRepoApiV1LikesOwnerRepoPostRepo(string)[likes], ListCommitsApiV1CommitsOwnerRepoGetOwner(string)[commits], @@ -4699,8 +2812,6 @@ GetCommitApiV1CommitsOwnerRepoCommitGetGetExamples(bool)[commits], GetCommitApiV1CommitsOwnerRepoCommitGetIsView(bool)[commits], GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModel(bool)[commits], - GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModelVariant1(bool)[commits], - GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModelVariant2(null)[commits], CreateCommentApiV1CommentsOwnerRepoPostOwner(string)[comments], CreateCommentApiV1CommentsOwnerRepoPostRepo(string)[comments], GetCommentsApiV1CommentsOwnerRepoGetOwner(string)[comments], @@ -4905,9 +3016,7 @@ HTTPValidationError(ref)[datasets], SessionFeedbackDelta(ref)[datasets], HTTPValidationError(ref)[datasets], - ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetResponse(anyOf)[datasets], - DatasetShareSchema(ref)[datasets], - ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetResponseVariant2(null)[datasets], + DatasetShareSchema(ref)[datasets], HTTPValidationError(ref)[datasets], DatasetShareSchema(ref)[datasets], HTTPValidationError(ref)[datasets], @@ -4963,9 +3072,7 @@ HTTPValidationError(ref)[run], UpdateRunApiV1RunsRunIdPatchResponse(class)[run], HTTPValidationError(ref)[run], - ReadRunShareStateApiV1RunsRunIdShareGetResponse(anyOf)[run], - RunShareSchema(ref)[run], - ReadRunShareStateApiV1RunsRunIdShareGetResponseVariant2(null)[run], + RunShareSchema(ref)[run], HTTPValidationError(ref)[run], RunShareSchema(ref)[run], HTTPValidationError(ref)[run], diff --git a/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/Schemas/_.verified.txt b/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/Schemas/_.verified.txt index 85f682493e..9dfd58eb3e 100644 --- a/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/Schemas/_.verified.txt +++ b/src/tests/AutoSDK.UnitTests/Snapshots/LangSmith/Schemas/_.verified.txt @@ -1,182 +1,102 @@ [ APIFeedbackSource(class), Type(string), - Metadata(anyOf), - APIFeedbackSourceMetadata(class), - MetadataVariant2(null), + APIFeedbackSourceMetadata(class), APIKeyCreateRequest(class), Description(string), ReadOnly(bool), APIKeyCreateResponse(class), - CreatedAt(anyOf), - CreatedAtVariant1(DateTime), - CreatedAtVariant2(null), + CreatedAt(DateTime), Id(string), ShortKey(string), Description(string), ReadOnly(bool), - LastUsedAt(anyOf), - LastUsedAtVariant1(DateTime), - LastUsedAtVariant2(null), + LastUsedAt(DateTime), Key(string), APIKeyGetResponse(class), - CreatedAt2(anyOf), - CreatedAtVariant1(DateTime), - CreatedAtVariant2(null), + CreatedAt(DateTime), Id(string), ShortKey(string), Description(string), ReadOnly(bool), - LastUsedAt2(anyOf), - LastUsedAtVariant1(DateTime), - LastUsedAtVariant2(null), + LastUsedAt(DateTime), AccessScope(enum), AllowedLoginMethodsUpdate(class), SsoOnly(bool), AnnotationQueueCreateSchema(class), Name(string), - Description(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), UpdatedAt(DateTime), - DefaultDataset(anyOf), - DefaultDatasetVariant1(string), - DefaultDatasetVariant2(null), - NumReviewersPerItem(anyOf), - NumReviewersPerItemVariant1(int), - NumReviewersPerItemVariant2(null), + DefaultDataset(string), + NumReviewersPerItem(int), EnableReservations(bool), - EnableReservationsVariant1(bool), - EnableReservationsVariant2(null), - ReservationMinutes(anyOf), - ReservationMinutesVariant1(int), - ReservationMinutesVariant2(null), + ReservationMinutes(int), Id(string), AnnotationQueueRunSchema(class), RunId(string), QueueId(string), - LastReviewedTime(anyOf), - LastReviewedTimeVariant1(DateTime), - LastReviewedTimeVariant2(null), + LastReviewedTime(DateTime), AddedAt(DateTime), Id(string), AnnotationQueueRunUpdateSchema(class), - LastReviewedTime2(anyOf), - LastReviewedTimeVariant1(DateTime), - LastReviewedTimeVariant2(null), - AddedAt(anyOf), - AddedAtVariant1(DateTime), - AddedAtVariant2(null), + LastReviewedTime(DateTime), + AddedAt(DateTime), AnnotationQueueSchema(class), Name(string), - Description2(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), UpdatedAt(DateTime), - DefaultDataset2(anyOf), - DefaultDatasetVariant1(string), - DefaultDatasetVariant2(null), - NumReviewersPerItem2(anyOf), - NumReviewersPerItemVariant1(int), - NumReviewersPerItemVariant2(null), - EnableReservations2(bool), - EnableReservationsVariant1(bool), - EnableReservationsVariant2(null), - ReservationMinutes2(anyOf), - ReservationMinutesVariant1(int), - ReservationMinutesVariant2(null), + DefaultDataset(string), + NumReviewersPerItem(int), + EnableReservations(bool), + ReservationMinutes(int), Id(string), TenantId(string), AnnotationQueueSchemaWithSize(class), Name(string), - Description3(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), UpdatedAt(DateTime), - DefaultDataset3(anyOf), - DefaultDatasetVariant1(string), - DefaultDatasetVariant2(null), - NumReviewersPerItem3(anyOf), - NumReviewersPerItemVariant1(int), - NumReviewersPerItemVariant2(null), - EnableReservations3(bool), - EnableReservationsVariant1(bool), - EnableReservationsVariant2(null), - ReservationMinutes3(anyOf), - ReservationMinutesVariant1(int), - ReservationMinutesVariant2(null), + DefaultDataset(string), + NumReviewersPerItem(int), + EnableReservations(bool), + ReservationMinutes(int), Id(string), TenantId(string), TotalRuns(int), AnnotationQueueSizeSchema(class), Size(int), AnnotationQueueUpdateSchema(class), - Name(anyOf), - NameVariant1(string), - NameVariant2(null), - Description4(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - DefaultDataset4(anyOf), - DefaultDatasetVariant1(string), - DefaultDatasetVariant2(null), - NumReviewersPerItem4(anyOf), - NumReviewersPerItemVariant1(int), - NumReviewersPerItemVariant2(null), + Name(string), + Description(string), + DefaultDataset(string), + NumReviewersPerItem(int), EnableReservations(bool), - ReservationMinutes4(anyOf), - ReservationMinutesVariant1(int), - ReservationMinutesVariant2(null), + ReservationMinutes(int), AppFeedbackSource(class), Type(string), - Metadata2(anyOf), - AppFeedbackSourceMetadata(class), - MetadataVariant2(null), + AppFeedbackSourceMetadata(class), AuthProvider(enum), AutoEvalFeedbackSource(class), Type(string), - Metadata3(anyOf), - AutoEvalFeedbackSourceMetadata(class), - MetadataVariant2(null), + AutoEvalFeedbackSourceMetadata(class), BasicAuthMemberCreate(class), - UserId(anyOf), - UserIdVariant1(string), - UserIdVariant2(null), - LsUserId(anyOf), - LsUserIdVariant1(string), - LsUserIdVariant2(null), + UserId(string), + LsUserId(string), Email(string), - ReadOnly(anyOf), - ReadOnlyVariant1(bool), - ReadOnlyVariant2(null), - RoleId(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - Password(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - WorkspaceRoleId(anyOf), - WorkspaceRoleIdVariant1(string), - WorkspaceRoleIdVariant2(null), - WorkspaceIds(anyOf), - WorkspaceIdsVariant1(array), - WorkspaceIdsVariant1Item(string), - WorkspaceIdsVariant2(null), + ReadOnly(bool), + RoleId(string), + Password(string), + FullName(string), + WorkspaceRoleId(string), + WorkspaceIds(array), + WorkspaceIdsItem(string), BasicAuthResponse(class), AccessToken(string), BasicAuthUserPatch(class), - Password2(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName2(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), + Password(string), + FullName(string), BatchIngestConfig(class), UseMultipartEndpoint(bool), ScaleUpQsizeTrigger(int), @@ -185,60 +105,26 @@ SizeLimit(int), SizeLimitBytes(int), BodyParamsForRunSchema(class), - Id(anyOf), - IdVariant1(array), - IdVariant1Item(string), - IdVariant2(null), - Trace(anyOf), - TraceVariant1(string), - TraceVariant2(null), - ParentRun(anyOf), - ParentRunVariant1(string), - ParentRunVariant2(null), - RunType(anyOf), - RunTypeEnum(ref), - RunTypeVariant2(null), - Session(anyOf), - SessionVariant1(array), - SessionVariant1Item(string), - SessionVariant2(null), - ReferenceExample(anyOf), - ReferenceExampleVariant1(array), - ReferenceExampleVariant1Item(string), - ReferenceExampleVariant2(null), - ExecutionOrder(anyOf), - ExecutionOrderVariant1(int), - ExecutionOrderVariant2(null), - StartTime(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), - EndTime(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Error(anyOf), - ErrorVariant1(bool), - ErrorVariant2(null), - Query(anyOf), - QueryVariant1(string), - QueryVariant2(null), - Filter(anyOf), - FilterVariant1(string), - FilterVariant2(null), - TraceFilter(anyOf), - TraceFilterVariant1(string), - TraceFilterVariant2(null), - TreeFilter(anyOf), - TreeFilterVariant1(string), - TreeFilterVariant2(null), - IsRoot(anyOf), - IsRootVariant1(bool), - IsRootVariant2(null), - DataSourceType(anyOf), - RunsFilterDataSourceTypeEnum(ref), - DataSourceTypeVariant2(null), - Cursor(anyOf), - CursorVariant1(string), - CursorVariant2(null), + Id(array), + IdItem(string), + Trace(string), + ParentRun(string), + RunTypeEnum(ref), + Session(array), + SessionItem(string), + ReferenceExample(array), + ReferenceExampleItem(string), + ExecutionOrder(int), + StartTime(DateTime), + EndTime(DateTime), + Error(bool), + Query(string), + Filter(string), + TraceFilter(string), + TreeFilter(string), + IsRoot(bool), + RunsFilterDataSourceTypeEnum(ref), + Cursor(string), Limit(int), Select(array), RunSelect(ref), @@ -246,11 +132,7 @@ BodyCloneDatasetApiV1DatasetsClonePost(class), TargetDatasetId(string), SourceDatasetId(string), - AsOf(anyOf), - AsOfVariant1(anyOf), - AsOfVariant1Variant1(DateTime), - AsOfVariant1Variant2(string), - AsOfVariant2(null), + AsOf(null), Examples(array), ExamplesItem(string), BodyExecuteApiV1AceExecutePost(class), @@ -266,15 +148,11 @@ File(byte[]), InputKeys(array), InputKeysItem(string), - Name2(anyOf), - NameVariant1(string), - NameVariant2(null), + Name(string), DataType(ref), OutputKeys(array), OutputKeysItem(string), - Description5(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), BodyUploadExamplesApiV1ExamplesUploadDatasetIdPost(class), File(byte[]), InputKeys(array), @@ -293,9 +171,7 @@ BulkExportStatus(ref), CreatedAt(DateTime), UpdatedAt(DateTime), - FinishedAt(anyOf), - FinishedAtVariant1(DateTime), - FinishedAtVariant2(null), + FinishedAt(DateTime), BulkExportCompression(enum), BulkExportCreate(class), BulkExportDestinationId(string), @@ -321,15 +197,9 @@ BulkExportDestinationS3Credentials(ref), BulkExportDestinationS3Config(class), BucketName(string), - Prefix(anyOf), - PrefixVariant1(string), - PrefixVariant2(null), - Region(anyOf), - RegionVariant1(string), - RegionVariant2(null), - EndpointUrl(anyOf), - EndpointUrlVariant1(string), - EndpointUrlVariant2(null), + Prefix(string), + Region(string), + EndpointUrl(string), BulkExportDestinationS3Credentials(class), AccessKeyId(string), SecretAccessKey(string), @@ -341,14 +211,10 @@ Id(string), BulkExportRunStatus(ref), RetryNumber(int), - Errors(anyOf), - BulkExportRunErrors(class), - ErrorsVariant2(null), + BulkExportRunErrors(class), CreatedAt(DateTime), UpdatedAt(DateTime), - FinishedAt2(anyOf), - FinishedAtVariant1(DateTime), - FinishedAtVariant2(null), + FinishedAt(DateTime), BulkExportRunS3Metadata(class), Prefix(string), StartTime(DateTime), @@ -364,38 +230,26 @@ Code(string), Comment(class), Id(string), - CommentBy(anyOf), - CommentByVariant1(string), - CommentByVariant2(null), + CommentBy(string), CommentOn(string), - ParentId(anyOf), - ParentIdVariant1(string), - ParentIdVariant2(null), + ParentId(string), Content(string), CreatedAt(DateTime), UpdatedAt(DateTime), - CommentByName(anyOf), - CommentByNameVariant1(string), - CommentByNameVariant2(null), + CommentByName(string), NumSubComments(int), NumLikes(int), - LikedByAuthUser(anyOf), - LikedByAuthUserVariant1(bool), - LikedByAuthUserVariant2(null), + LikedByAuthUser(bool), CommitManifestResponse(class), CommitHash(string), CommitManifestResponseManifest(class), - Examples(anyOf), - ExamplesVariant1(array), - RepoExampleResponse(ref), - ExamplesVariant2(null), + Examples(array), + RepoExampleResponse(ref), CommitWithLookups(class), Id(string), CommitWithLookupsManifest(class), RepoId(string), - ParentId2(anyOf), - ParentIdVariant1(string), - ParentIdVariant2(null), + ParentId(string), CommitHash(string), CreatedAt(DateTime), UpdatedAt(DateTime), @@ -403,60 +257,38 @@ ExampleRunIdsItem(string), NumDownloads(int), NumViews(int), - ParentCommitHash(anyOf), - ParentCommitHashVariant1(string), - ParentCommitHashVariant2(null), + ParentCommitHash(string), ComparativeExperiment(class), Id(string), - Name3(anyOf), - NameVariant1(string), - NameVariant2(null), - Description6(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Name(string), + Description(string), TenantId(string), CreatedAt(DateTime), ModifiedAt(DateTime), ReferenceDatasetId(string), - Extra(anyOf), - ComparativeExperimentExtra(class), - ExtraVariant2(null), + ComparativeExperimentExtra(class), ExperimentsInfo(array), SimpleExperimentInfo(ref), - FeedbackStats(anyOf), - ComparativeExperimentFeedbackStats(class), - FeedbackStatsVariant2(null), + ComparativeExperimentFeedbackStats(class), ComparativeExperimentBase(class), Id(string), - Name4(anyOf), - NameVariant1(string), - NameVariant2(null), - Description7(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Name(string), + Description(string), TenantId(string), CreatedAt(DateTime), ModifiedAt(DateTime), ReferenceDatasetId(string), - Extra2(anyOf), - ComparativeExperimentBaseExtra(class), - ExtraVariant2(null), + ComparativeExperimentBaseExtra(class), ComparativeExperimentCreate(class), Id(string), ExperimentIds(array), ExperimentIdsItem(string), - Name5(anyOf), - NameVariant1(string), - NameVariant2(null), - Description8(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Name(string), + Description(string), CreatedAt(DateTime), ModifiedAt(DateTime), ReferenceDatasetId(string), - Extra3(anyOf), - ComparativeExperimentCreateExtra(class), - ExtraVariant2(null), + ComparativeExperimentCreateExtra(class), ConfiguredBy(enum), CreateCommentRequest(class), Content(string), @@ -464,39 +296,25 @@ CreateEventRequestEventType(enum), Owner(string), Repo(string), - Commit(anyOf), - CommitVariant1(string), - CommitVariant2(null), + Commit(string), CreateFeedbackConfigSchema(class), FeedbackKey(string), FeedbackConfig(ref), IsLowerScoreBetter(bool), - IsLowerScoreBetterVariant1(bool), - IsLowerScoreBetterVariant2(null), CreateRepoCommitRequest(class), CreateRepoCommitRequestManifest(class), - ParentCommit(anyOf), - ParentCommitVariant1(string), - ParentCommitVariant2(null), - ExampleRunIds(anyOf), - ExampleRunIdsVariant1(array), - ExampleRunIdsVariant1Item(string), - ExampleRunIdsVariant2(null), + ParentCommit(string), + ExampleRunIds(array), + ExampleRunIdsItem(string), CreateRepoCommitResponse(class), CommitWithLookups(ref), CreateRepoRequest(class), RepoHandle(string), - Description9(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Readme(anyOf), - ReadmeVariant1(string), - ReadmeVariant2(null), + Description(string), + Readme(string), IsPublic(bool), - Tags(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), + Tags(array), + TagsItem(string), CreateRepoResponse(class), RepoWithLookups(ref), CreateRoleRequest(class), @@ -506,30 +324,18 @@ PermissionsItem(string), CustomChartCreate(class), Title(string), - Description10(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Index(anyOf), - IndexVariant1(int), - IndexVariant2(null), + Description(string), + Index(int), CustomChartType(ref), Series(array), CustomChartSeriesCreate(ref), - SectionId(anyOf), - SectionIdVariant1(string), - SectionIdVariant2(null), - Metadata4(anyOf), - CustomChartCreateMetadata(class), - MetadataVariant2(null), - CommonFilters(anyOf), - CustomChartSeriesFilters(ref), - CommonFiltersVariant2(null), + SectionId(string), + CustomChartCreateMetadata(class), + CustomChartSeriesFilters(ref), CustomChartCreatePreview(class), Series(array), CustomChartSeries(ref), - CommonFilters2(anyOf), - CustomChartSeriesFilters(ref), - CommonFiltersVariant2(null), + CustomChartSeriesFilters(ref), CustomChartMetric(enum), CustomChartPreviewRequest(class), CustomChartsRequestBase(ref), @@ -537,94 +343,63 @@ CustomChartResponse(class), Id(string), Title(string), - Description11(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Index(int), CustomChartType(ref), SectionId(string), - Metadata5(anyOf), - CustomChartResponseMetadata(class), - MetadataVariant2(null), - Series(anyOf), - SeriesVariant1(array), - CustomChartSeries(ref), - SeriesVariant2(null), + CustomChartResponseMetadata(class), + Series(array), + CustomChartSeries(ref), CustomChartSeries(class), Name(string), - Filters(anyOf), - CustomChartSeriesFilters(ref), - FiltersVariant2(null), + CustomChartSeriesFilters(ref), CustomChartMetric(ref), - FeedbackKey(anyOf), - FeedbackKeyVariant1(string), - FeedbackKeyVariant2(null), + FeedbackKey(string), Id(string), CustomChartSeriesCreate(class), Name(string), - Filters2(anyOf), - CustomChartSeriesFilters(ref), - FiltersVariant2(null), + CustomChartSeriesFilters(ref), CustomChartMetric(ref), - FeedbackKey2(anyOf), - FeedbackKeyVariant1(string), - FeedbackKeyVariant2(null), + FeedbackKey(string), CustomChartSeriesFilters(class), - Filter2(anyOf), - FilterVariant1(string), - FilterVariant2(null), - TraceFilter2(anyOf), - TraceFilterVariant1(string), - TraceFilterVariant2(null), - TreeFilter2(anyOf), - TreeFilterVariant1(string), - TreeFilterVariant2(null), - Session2(anyOf), - SessionVariant1(array), - SessionVariant1Item(string), - SessionVariant2(null), + Filter(string), + TraceFilter(string), + TreeFilter(string), + Session(array), + SessionItem(string), CustomChartSeriesUpdate(class), Name(string), - Filters3(anyOf), - CustomChartSeriesFilters(ref), - FiltersVariant2(null), + CustomChartSeriesFilters(ref), CustomChartMetric(ref), - FeedbackKey3(anyOf), - FeedbackKeyVariant1(string), - FeedbackKeyVariant2(null), - Id2(anyOf), - IdVariant1(string), - IdVariant2(null), + FeedbackKey(string), + Id(string), CustomChartType(enum), CustomChartUpdate(class), Title(anyOf), TitleVariant1(string), Missing(ref), - Description12(anyOf), + Description(anyOf), DescriptionVariant1(string), Missing(ref), - DescriptionVariant3(null), - Index2(anyOf), + Index(anyOf), IndexVariant1(int), Missing(ref), ChartType(anyOf), CustomChartType(ref), Missing(ref), - Series2(anyOf), + Series(anyOf), SeriesVariant1(array), CustomChartSeriesUpdate(ref), Missing(ref), - SectionId2(anyOf), + SectionId(anyOf), SectionIdVariant1(string), Missing(ref), - Metadata6(anyOf), + Metadata(anyOf), CustomChartUpdateMetadata(class), Missing(ref), - MetadataVariant3(null), - CommonFilters3(anyOf), + CommonFilters(anyOf), CustomChartSeriesFilters(ref), Missing(ref), - CommonFiltersVariant3(null), CustomChartsDataPoint(class), SeriesId(string), Timestamp(DateTime), @@ -632,133 +407,79 @@ ValueVariant1(int), ValueVariant2(double), CustomChartsDataPointValue(class), - ValueVariant4(null), CustomChartsRequest(class), Timezone(string), StartTime(DateTime), - EndTime2(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), + EndTime(DateTime), TimedeltaInput(ref), - AfterIndex(anyOf), - AfterIndexVariant1(int), - AfterIndexVariant2(null), - TagValueId(anyOf), - TagValueIdVariant1(array), - TagValueIdVariant1Item(string), - TagValueIdVariant2(null), + AfterIndex(int), + TagValueId(array), + TagValueIdItem(string), CustomChartsRequestBase(class), Timezone(string), StartTime(DateTime), - EndTime3(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), + EndTime(DateTime), TimedeltaInput(ref), CustomChartsResponse(class), Sections(array), CustomChartsSection(ref), CustomChartsSection(class), Title(string), - Description13(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Index3(anyOf), - IndexVariant1(int), - IndexVariant2(null), + Description(string), + Index(int), Id(string), Charts(array), SingleCustomChartResponse(ref), CustomChartsSectionCreate(class), Title(string), - Description14(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Index4(anyOf), - IndexVariant1(int), - IndexVariant2(null), + Description(string), + Index(int), CustomChartsSectionResponse(class), Title(string), - Description15(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Index5(anyOf), - IndexVariant1(int), - IndexVariant2(null), + Description(string), + Index(int), Id(string), - ChartCount(anyOf), - ChartCountVariant1(int), - ChartCountVariant2(null), - CreatedAt3(anyOf), - CreatedAtVariant1(DateTime), - CreatedAtVariant2(null), - ModifiedAt(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + ChartCount(int), + CreatedAt(DateTime), + ModifiedAt(DateTime), CustomChartsSectionUpdate(class), Title2(anyOf), TitleVariant1(string), Missing(ref), - Description16(anyOf), + Description2(anyOf), DescriptionVariant1(string), Missing(ref), - DescriptionVariant3(null), - Index6(anyOf), + Index2(anyOf), IndexVariant1(int), Missing(ref), CustomerVisiblePlanInfo(class), PaymentPlanTier(ref), StartedOn(DateTime), - EndsOn(anyOf), - EndsOnVariant1(DateTime), - EndsOnVariant2(null), + EndsOn(DateTime), DataType(enum), Dataset(class), Name(string), - Description17(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), - InputsSchemaDefinition(anyOf), - DatasetInputsSchemaDefinition(class), - InputsSchemaDefinitionVariant2(null), - OutputsSchemaDefinition(anyOf), - DatasetOutputsSchemaDefinition(class), - OutputsSchemaDefinitionVariant2(null), + DatasetInputsSchemaDefinition(class), + DatasetOutputsSchemaDefinition(class), ExternallyManaged(bool), - ExternallyManagedVariant1(bool), - ExternallyManagedVariant2(null), - DataType2(anyOf), - DataType(ref), - DataTypeVariant2(null), + DataType(ref), Id(string), TenantId(string), ExampleCount(int), SessionCount(int), ModifiedAt(DateTime), - LastSessionStartTime(anyOf), - LastSessionStartTimeVariant1(DateTime), - LastSessionStartTimeVariant2(null), + LastSessionStartTime(DateTime), DatasetCreate(class), Name(string), - Description18(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), - InputsSchemaDefinition2(anyOf), - DatasetCreateInputsSchemaDefinition(class), - InputsSchemaDefinitionVariant2(null), - OutputsSchemaDefinition2(anyOf), - DatasetCreateOutputsSchemaDefinition(class), - OutputsSchemaDefinitionVariant2(null), - ExternallyManaged2(bool), - ExternallyManagedVariant1(bool), - ExternallyManagedVariant2(null), - Id3(anyOf), - IdVariant1(string), - IdVariant2(null), - Extra4(anyOf), - DatasetCreateExtra(class), - ExtraVariant2(null), + DatasetCreateInputsSchemaDefinition(class), + DatasetCreateOutputsSchemaDefinition(class), + ExternallyManaged(bool), + Id(string), + DatasetCreateExtra(class), DataType(ref), DatasetDiffInfo(class), ExamplesModified(array), @@ -769,174 +490,98 @@ ExamplesRemovedItem(string), DatasetIndexInfo(class), DatasetId(string), - Tag(anyOf), - TagVariant1(string), - TagVariant2(null), - LastUpdatedVersion(anyOf), - LastUpdatedVersionVariant1(DateTime), - LastUpdatedVersionVariant2(null), + Tag(string), + LastUpdatedVersion(DateTime), DatasetIndexRequest(class), - Tag2(anyOf), - TagVariant1(string), - TagVariant2(null), + Tag(string), DatasetPublicSchema(class), Name(string), - Description19(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), - InputsSchemaDefinition3(anyOf), - DatasetPublicSchemaInputsSchemaDefinition(class), - InputsSchemaDefinitionVariant2(null), - OutputsSchemaDefinition3(anyOf), - DatasetPublicSchemaOutputsSchemaDefinition(class), - OutputsSchemaDefinitionVariant2(null), - ExternallyManaged3(bool), - ExternallyManagedVariant1(bool), - ExternallyManagedVariant2(null), - DataType3(anyOf), - DataType(ref), - DataTypeVariant2(null), + DatasetPublicSchemaInputsSchemaDefinition(class), + DatasetPublicSchemaOutputsSchemaDefinition(class), + ExternallyManaged(bool), + DataType(ref), Id(string), ExampleCount(int), DatasetSchemaForUpdate(class), Name(string), - Description20(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), CreatedAt(DateTime), - InputsSchemaDefinition4(anyOf), - DatasetSchemaForUpdateInputsSchemaDefinition(class), - InputsSchemaDefinitionVariant2(null), - OutputsSchemaDefinition4(anyOf), - DatasetSchemaForUpdateOutputsSchemaDefinition(class), - OutputsSchemaDefinitionVariant2(null), - ExternallyManaged4(bool), - ExternallyManagedVariant1(bool), - ExternallyManagedVariant2(null), - DataType4(anyOf), - DataType(ref), - DataTypeVariant2(null), + DatasetSchemaForUpdateInputsSchemaDefinition(class), + DatasetSchemaForUpdateOutputsSchemaDefinition(class), + ExternallyManaged(bool), + DataType(ref), Id(string), TenantId(string), DatasetShareSchema(class), DatasetId(string), ShareToken(string), DatasetUpdate(class), - Name6(anyOf), + Name(anyOf), NameVariant1(string), Missing(ref), - NameVariant3(null), - Description21(anyOf), + Description3(anyOf), DescriptionVariant1(string), Missing(ref), - DescriptionVariant3(null), - InputsSchemaDefinition5(anyOf), + InputsSchemaDefinition(anyOf), DatasetUpdateInputsSchemaDefinition(class), Missing(ref), - InputsSchemaDefinitionVariant3(null), - OutputsSchemaDefinition5(anyOf), + OutputsSchemaDefinition(anyOf), DatasetUpdateOutputsSchemaDefinition(class), Missing(ref), - OutputsSchemaDefinitionVariant3(null), - PatchExamples(anyOf), - DatasetUpdatePatchExamples(class), - ExampleUpdate(ref), - PatchExamplesVariant2(null), + DatasetUpdatePatchExamples(class), + ExampleUpdate(ref), DatasetVersion(class), - Tags2(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), + Tags(array), + TagsItem(string), AsOf(DateTime), EvaluatorStructuredOutput(class), - HubRef(anyOf), - HubRefVariant1(string), - HubRefVariant2(null), - Prompt(anyOf), - PromptVariant1(array), - PromptVariant1Item(array), - PromptVariant1ItemItem(string), - PromptVariant2(null), - TemplateFormat(anyOf), - TemplateFormatVariant1(string), - TemplateFormatVariant2(null), - Schema(anyOf), - EvaluatorStructuredOutputSchema(class), - SchemaVariant2(null), - VariableMapping(anyOf), - EvaluatorStructuredOutputVariableMapping(class), - VariableMappingVariant1(string), - VariableMappingVariant2(null), + HubRef(string), + Prompt(array), + PromptItem(array), + PromptItemItem(string), + TemplateFormat(string), + EvaluatorStructuredOutputSchema(class), + EvaluatorStructuredOutputVariableMapping(class), + VariableMapping(string), EvaluatorStructuredOutputModel(class), EvaluatorTopLevel(class), EvaluatorStructuredOutput(ref), Example(class), - Outputs(anyOf), - ExampleOutputs(class), - OutputsVariant2(null), + ExampleOutputs(class), DatasetId(string), - SourceRunId(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata7(anyOf), - ExampleMetadata(class), - MetadataVariant2(null), + SourceRunId(string), + ExampleMetadata(class), ExampleInputs(class), CreatedAt(DateTime), Id(string), Name(string), - ModifiedAt2(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + ModifiedAt(DateTime), ExampleBulkCreate(class), - Outputs2(anyOf), - ExampleBulkCreateOutputs(class), - OutputsVariant2(null), + ExampleBulkCreateOutputs(class), DatasetId(string), - SourceRunId2(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata8(anyOf), - ExampleBulkCreateMetadata(class), - MetadataVariant2(null), - Inputs(anyOf), - ExampleBulkCreateInputs(class), - InputsVariant2(null), + SourceRunId(string), + ExampleBulkCreateMetadata(class), + ExampleBulkCreateInputs(class), Split(anyOf), SplitVariant1(array), SplitVariant1Item(string), SplitVariant2(string), - SplitVariant3(null), - Id4(anyOf), - IdVariant1(string), - IdVariant2(null), + Id(string), UseSourceRunIo(bool), - CreatedAt4(anyOf), - CreatedAtVariant1(DateTime), - CreatedAtVariant2(null), + CreatedAt(DateTime), ExampleCreate(class), - Outputs3(anyOf), - ExampleCreateOutputs(class), - OutputsVariant2(null), + ExampleCreateOutputs(class), DatasetId(string), - SourceRunId3(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata9(anyOf), - ExampleCreateMetadata(class), - MetadataVariant2(null), - Inputs2(anyOf), - ExampleCreateInputs(class), - InputsVariant2(null), + SourceRunId(string), + ExampleCreateMetadata(class), + ExampleCreateInputs(class), Split2(anyOf), SplitVariant1(array), SplitVariant1Item(string), SplitVariant2(string), - SplitVariant3(null), - Id5(anyOf), - IdVariant1(string), - IdVariant2(null), + Id(string), UseSourceRunIo(bool), CreatedAt(DateTime), ExampleListOrder(enum), @@ -948,161 +593,91 @@ RunId(string), ExampleSelect(enum), ExampleUpdate(class), - DatasetId(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), - Inputs3(anyOf), - ExampleUpdateInputs(class), - InputsVariant2(null), - Outputs4(anyOf), - ExampleUpdateOutputs(class), - OutputsVariant2(null), - Metadata10(anyOf), - ExampleUpdateMetadata(class), - MetadataVariant2(null), + DatasetId(string), + ExampleUpdateInputs(class), + ExampleUpdateOutputs(class), + ExampleUpdateMetadata(class), Split3(anyOf), SplitVariant1(array), SplitVariant1Item(string), SplitVariant2(string), - SplitVariant3(null), ExampleUpdateWithID(class), - DatasetId2(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), - Inputs4(anyOf), - ExampleUpdateWithIDInputs(class), - InputsVariant2(null), - Outputs5(anyOf), - ExampleUpdateWithIDOutputs(class), - OutputsVariant2(null), - Metadata11(anyOf), - ExampleUpdateWithIDMetadata(class), - MetadataVariant2(null), + DatasetId(string), + ExampleUpdateWithIDInputs(class), + ExampleUpdateWithIDOutputs(class), + ExampleUpdateWithIDMetadata(class), Split4(anyOf), SplitVariant1(array), SplitVariant1Item(string), SplitVariant2(string), - SplitVariant3(null), Id(string), ExampleWithRuns(class), - Outputs6(anyOf), - ExampleWithRunsOutputs(class), - OutputsVariant2(null), + ExampleWithRunsOutputs(class), DatasetId(string), - SourceRunId4(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata12(anyOf), - ExampleWithRunsMetadata(class), - MetadataVariant2(null), + SourceRunId(string), + ExampleWithRunsMetadata(class), ExampleWithRunsInputs(class), CreatedAt(DateTime), Id(string), Name(string), - ModifiedAt3(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + ModifiedAt(DateTime), Runs(array), RunSchema(ref), ExampleWithRunsCH(class), - Outputs7(anyOf), - ExampleWithRunsCHOutputs(class), - OutputsVariant2(null), + ExampleWithRunsCHOutputs(class), DatasetId(string), - SourceRunId5(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata13(anyOf), - ExampleWithRunsCHMetadata(class), - MetadataVariant2(null), + SourceRunId(string), + ExampleWithRunsCHMetadata(class), ExampleWithRunsCHInputs(class), CreatedAt(DateTime), Id(string), Name(string), - ModifiedAt4(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + ModifiedAt(DateTime), Runs(array), RunSchemaComparisonView(ref), ExperimentResultRow(class), - RowId(anyOf), - RowIdVariant1(string), - RowIdVariant2(null), + RowId(string), ExperimentResultRowInputs(class), - ExpectedOutputs(anyOf), - ExperimentResultRowExpectedOutputs(class), - ExpectedOutputsVariant2(null), - ActualOutputs(anyOf), - ExperimentResultRowActualOutputs(class), - ActualOutputsVariant2(null), - EvaluationScores(anyOf), - EvaluationScoresVariant1(array), - FeedbackCreateCoreSchema(ref), - EvaluationScoresVariant2(null), + ExperimentResultRowExpectedOutputs(class), + ExperimentResultRowActualOutputs(class), + EvaluationScores(array), + FeedbackCreateCoreSchema(ref), StartTime(DateTime), EndTime(DateTime), - RunName(anyOf), - RunNameVariant1(string), - RunNameVariant2(null), - Error2(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), - RunMetadata(anyOf), - ExperimentResultRowRunMetadata(class), - RunMetadataVariant2(null), + RunName(string), + Error(string), + ExperimentResultRowRunMetadata(class), ExperimentResultsUpload(class), ExperimentName(string), - ExperimentDescription(anyOf), - ExperimentDescriptionVariant1(string), - ExperimentDescriptionVariant2(null), - DatasetId3(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), - DatasetName(anyOf), - DatasetNameVariant1(string), - DatasetNameVariant2(null), - DatasetDescription(anyOf), - DatasetDescriptionVariant1(string), - DatasetDescriptionVariant2(null), - SummaryExperimentScores(anyOf), - SummaryExperimentScoresVariant1(array), - FeedbackCreateCoreSchema(ref), - SummaryExperimentScoresVariant2(null), + ExperimentDescription(string), + DatasetId(string), + DatasetName(string), + DatasetDescription(string), + SummaryExperimentScores(array), + FeedbackCreateCoreSchema(ref), Results(array), ExperimentResultRow(ref), ExperimentStartTime(DateTime), ExperimentEndTime(DateTime), - ExperimentMetadata(anyOf), - ExperimentResultsUploadExperimentMetadata(class), - ExperimentMetadataVariant2(null), + ExperimentResultsUploadExperimentMetadata(class), ExperimentResultsUploadResult(class), Dataset(ref), TracerSession(ref), FeedbackCategory(class), Value(double), - Label(anyOf), - LabelVariant1(string), - LabelVariant2(null), + Label(string), FeedbackConfig(class), FeedbackType(ref), - Min(anyOf), - MinVariant1(double), - MinVariant2(null), - Max(anyOf), - MaxVariant1(double), - MaxVariant2(null), - Categories(anyOf), - CategoriesVariant1(array), - FeedbackCategory(ref), - CategoriesVariant2(null), + Min(double), + Max(double), + Categories(array), + FeedbackCategory(ref), FeedbackConfigSchema(class), FeedbackKey(string), FeedbackConfig(ref), TenantId(string), ModifiedAt(DateTime), - IsLowerScoreBetter2(anyOf), - IsLowerScoreBetterVariant1(bool), - IsLowerScoreBetterVariant2(null), + IsLowerScoreBetter(bool), FeedbackCreateCoreSchema(class), CreatedAt(DateTime), ModifiedAt(DateTime), @@ -1111,37 +686,25 @@ ScoreVariant1(double), ScoreVariant2(int), ScoreVariant3(bool), - ScoreVariant4(null), Value2(anyOf), ValueVariant1(double), ValueVariant2(int), ValueVariant3(bool), ValueVariant4(string), FeedbackCreateCoreSchemaValue(class), - ValueVariant6(null), - Comment2(anyOf), - CommentVariant1(string), - CommentVariant2(null), + Comment(string), Correction(anyOf), FeedbackCreateCoreSchemaCorrection(class), CorrectionVariant2(string), - CorrectionVariant3(null), - FeedbackGroupId(anyOf), - FeedbackGroupIdVariant1(string), - FeedbackGroupIdVariant2(null), - ComparativeExperimentId(anyOf), - ComparativeExperimentIdVariant1(string), - ComparativeExperimentIdVariant2(null), + FeedbackGroupId(string), + ComparativeExperimentId(string), Id(string), FeedbackSource(anyOf), AppFeedbackSource(ref), APIFeedbackSource(ref), ModelFeedbackSource(ref), AutoEvalFeedbackSource(ref), - FeedbackSourceVariant5(null), - FeedbackConfig2(anyOf), - FeedbackConfig(ref), - FeedbackConfigVariant2(null), + FeedbackConfig(ref), FeedbackCreateSchema(class), CreatedAt(DateTime), ModifiedAt(DateTime), @@ -1150,82 +713,53 @@ ScoreVariant1(double), ScoreVariant2(int), ScoreVariant3(bool), - ScoreVariant4(null), Value3(anyOf), ValueVariant1(double), ValueVariant2(int), ValueVariant3(bool), ValueVariant4(string), FeedbackCreateSchemaValue(class), - ValueVariant6(null), - Comment3(anyOf), - CommentVariant1(string), - CommentVariant2(null), + Comment(string), Correction2(anyOf), FeedbackCreateSchemaCorrection(class), CorrectionVariant2(string), - CorrectionVariant3(null), - FeedbackGroupId2(anyOf), - FeedbackGroupIdVariant1(string), - FeedbackGroupIdVariant2(null), - ComparativeExperimentId2(anyOf), - ComparativeExperimentIdVariant1(string), - ComparativeExperimentIdVariant2(null), - RunId(anyOf), - RunIdVariant1(string), - RunIdVariant2(null), - SessionId(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), + FeedbackGroupId(string), + ComparativeExperimentId(string), + RunId(string), + SessionId(string), Id(string), FeedbackSource2(anyOf), AppFeedbackSource(ref), APIFeedbackSource(ref), ModelFeedbackSource(ref), AutoEvalFeedbackSource(ref), - FeedbackSourceVariant5(null), - FeedbackConfig3(anyOf), - FeedbackConfig(ref), - FeedbackConfigVariant2(null), + FeedbackConfig(ref), FeedbackCreateWithTokenExtendedSchema(class), Score3(anyOf), ScoreVariant1(double), ScoreVariant2(int), ScoreVariant3(bool), - ScoreVariant4(null), Value4(anyOf), ValueVariant1(double), ValueVariant2(int), ValueVariant3(bool), ValueVariant4(string), - ValueVariant5(null), - Comment4(anyOf), - CommentVariant1(string), - CommentVariant2(null), + Comment(string), Correction3(anyOf), FeedbackCreateWithTokenExtendedSchemaCorrection(class), CorrectionVariant2(string), - CorrectionVariant3(null), - Metadata14(anyOf), - FeedbackCreateWithTokenExtendedSchemaMetadata(class), - MetadataVariant2(null), + FeedbackCreateWithTokenExtendedSchemaMetadata(class), FeedbackDelta(class), ImprovedExamples(array), ImprovedExamplesItem(string), RegressedExamples(array), RegressedExamplesItem(string), FeedbackIngestTokenCreateSchema(class), - ExpiresIn(anyOf), - TimedeltaInput(ref), - ExpiresInVariant2(null), - ExpiresAt(anyOf), - ExpiresAtVariant1(DateTime), - ExpiresAtVariant2(null), + TimedeltaInput(ref), + ExpiresAt(DateTime), RunId(string), FeedbackKey(string), - FeedbackConfig4(anyOf), - FeedbackConfig(ref), - FeedbackConfigVariant2(null), + FeedbackConfig(ref), FeedbackIngestTokenSchema(class), Id(string), Url(string), @@ -1240,193 +774,95 @@ ScoreVariant1(double), ScoreVariant2(int), ScoreVariant3(bool), - ScoreVariant4(null), Value5(anyOf), ValueVariant1(double), ValueVariant2(int), ValueVariant3(bool), ValueVariant4(string), FeedbackSchemaValue(class), - ValueVariant6(null), - Comment5(anyOf), - CommentVariant1(string), - CommentVariant2(null), + Comment(string), Correction4(anyOf), FeedbackSchemaCorrection(class), CorrectionVariant2(string), - CorrectionVariant3(null), - FeedbackGroupId3(anyOf), - FeedbackGroupIdVariant1(string), - FeedbackGroupIdVariant2(null), - ComparativeExperimentId3(anyOf), - ComparativeExperimentIdVariant1(string), - ComparativeExperimentIdVariant2(null), - RunId2(anyOf), - RunIdVariant1(string), - RunIdVariant2(null), - SessionId2(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), + FeedbackGroupId(string), + ComparativeExperimentId(string), + RunId(string), + SessionId(string), Id(string), - FeedbackSource3(anyOf), - FeedbackSource4(ref), - FeedbackSourceVariant2(null), - FeedbackSource4(class), - Type(anyOf), - TypeVariant1(string), - TypeVariant2(null), - Metadata15(anyOf), - FeedbackSourceMetadata(class), - MetadataVariant2(null), - UserId2(anyOf), - UserIdVariant1(string), - UserIdVariant2(null), + FeedbackSource3(ref), + FeedbackSource3(class), + Type(string), + FeedbackSourceMetadata(class), + UserId(string), FeedbackType(enum), FeedbackUpdateSchema(class), Score5(anyOf), ScoreVariant1(double), ScoreVariant2(int), ScoreVariant3(bool), - ScoreVariant4(null), Value6(anyOf), ValueVariant1(double), ValueVariant2(int), ValueVariant3(bool), ValueVariant4(string), FeedbackUpdateSchemaValue(class), - ValueVariant6(null), - Comment6(anyOf), - CommentVariant1(string), - CommentVariant2(null), + Comment(string), Correction5(anyOf), FeedbackUpdateSchemaCorrection(class), CorrectionVariant2(string), - CorrectionVariant3(null), - FeedbackConfig5(anyOf), - FeedbackConfig(ref), - FeedbackConfigVariant2(null), + FeedbackConfig(ref), FilterQueryParamsForRunSchema(class), - Id6(anyOf), - IdVariant1(array), - IdVariant1Item(string), - IdVariant2(null), - Trace2(anyOf), - TraceVariant1(string), - TraceVariant2(null), - ParentRun2(anyOf), - ParentRunVariant1(string), - ParentRunVariant2(null), - RunType2(anyOf), - RunTypeEnum(ref), - RunTypeVariant2(null), - Session3(anyOf), - SessionVariant1(array), - SessionVariant1Item(string), - SessionVariant2(null), - ReferenceExample2(anyOf), - ReferenceExampleVariant1(array), - ReferenceExampleVariant1Item(string), - ReferenceExampleVariant2(null), - ExecutionOrder2(anyOf), - ExecutionOrderVariant1(int), - ExecutionOrderVariant2(null), - StartTime2(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), - EndTime4(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Error3(anyOf), - ErrorVariant1(bool), - ErrorVariant2(null), - Query2(anyOf), - QueryVariant1(string), - QueryVariant2(null), - Filter3(anyOf), - FilterVariant1(string), - FilterVariant2(null), - TraceFilter3(anyOf), - TraceFilterVariant1(string), - TraceFilterVariant2(null), - TreeFilter3(anyOf), - TreeFilterVariant1(string), - TreeFilterVariant2(null), - IsRoot2(anyOf), - IsRootVariant1(bool), - IsRootVariant2(null), - DataSourceType2(anyOf), - RunsFilterDataSourceTypeEnum(ref), - DataSourceTypeVariant2(null), + Id(array), + IdItem(string), + Trace(string), + ParentRun(string), + RunTypeEnum(ref), + Session(array), + SessionItem(string), + ReferenceExample(array), + ReferenceExampleItem(string), + ExecutionOrder(int), + StartTime(DateTime), + EndTime(DateTime), + Error(bool), + Query(string), + Filter(string), + TraceFilter(string), + TreeFilter(string), + IsRoot(bool), + RunsFilterDataSourceTypeEnum(ref), FilterView(class), - FilterString(anyOf), - FilterStringVariant1(string), - FilterStringVariant2(null), - TraceFilterString(anyOf), - TraceFilterStringVariant1(string), - TraceFilterStringVariant2(null), - TreeFilterString(anyOf), - TreeFilterStringVariant1(string), - TreeFilterStringVariant2(null), + FilterString(string), + TraceFilterString(string), + TreeFilterString(string), DisplayName(string), - Description22(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), - SessionId3(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), + SessionId(string), CreatedAt(DateTime), UpdatedAt(DateTime), FilterViewCreate(class), - FilterString2(anyOf), - FilterStringVariant1(string), - FilterStringVariant2(null), - TraceFilterString2(anyOf), - TraceFilterStringVariant1(string), - TraceFilterStringVariant2(null), - TreeFilterString2(anyOf), - TreeFilterStringVariant1(string), - TreeFilterStringVariant2(null), + FilterString(string), + TraceFilterString(string), + TreeFilterString(string), DisplayName(string), - Description23(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), FilterViewUpdate(class), - FilterString3(anyOf), - FilterStringVariant1(string), - FilterStringVariant2(null), - DisplayName(anyOf), - DisplayNameVariant1(string), - DisplayNameVariant2(null), - Description24(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - TraceFilterString3(anyOf), - TraceFilterStringVariant1(string), - TraceFilterStringVariant2(null), - TreeFilterString3(anyOf), - TreeFilterStringVariant1(string), - TreeFilterStringVariant2(null), + FilterString(string), + DisplayName(string), + Description(string), + TraceFilterString(string), + TreeFilterString(string), ForkRepoRequest(class), RepoHandle(string), - Readme2(anyOf), - ReadmeVariant1(string), - ReadmeVariant2(null), - Description25(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Tags3(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - IsPublic(anyOf), - IsPublicVariant1(bool), - IsPublicVariant2(null), + Readme(string), + Description(string), + Tags(array), + TagsItem(string), + IsPublic(bool), GenerateSyntheticExamplesBody(class), - ExampleIds(anyOf), - ExampleIdsVariant1(array), - ExampleIdsVariant1Item(string), - ExampleIdsVariant2(null), + ExampleIds(array), + ExampleIdsItem(string), NumExamples(int), GetRepoResponse(class), RepoWithLookups(ref), @@ -1436,47 +872,27 @@ Identity(class), Id(string), OrganizationId(string), - TenantId(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), + TenantId(string), CreatedAt(DateTime), UserId(string), - LsUserId2(anyOf), - LsUserIdVariant1(string), - LsUserIdVariant2(null), + LsUserId(string), ReadOnly(bool), - RoleId2(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - RoleName(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), + RoleId(string), + RoleName(string), AccessScope(ref), IdentityAnnotationQueueRunStatusCreateSchema(class), - Status(anyOf), - StatusVariant1(string), - StatusVariant2(null), - OverrideAddedAt(anyOf), - OverrideAddedAtVariant1(DateTime), - OverrideAddedAtVariant2(null), + Status(string), + OverrideAddedAt(DateTime), IdentityCreate(class), UserId(string), - ReadOnly2(anyOf), - ReadOnlyVariant1(bool), - ReadOnlyVariant2(null), - RoleId3(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), + ReadOnly(bool), + RoleId(string), IdentityPatch(class), - ReadOnly3(anyOf), - ReadOnlyVariant1(bool), - ReadOnlyVariant2(null), + ReadOnly(bool), RoleId(string), InfoGetResponse(class), Version(string), - LicenseExpirationTime(anyOf), - LicenseExpirationTimeVariant1(DateTime), - LicenseExpirationTimeVariant2(null), + LicenseExpirationTime(DateTime), BatchIngestConfig(ref), InfoGetResponseInstanceFlags(class), InvokePromptPayload(class), @@ -1501,22 +917,14 @@ Runs(array), RunPublicDatasetSchema(ref), ListPublicDatasetRunsResponseCursors(class), - Cursors(anyOf), - CursorsVariant1(string), - CursorsVariant2(null), - ParsedQuery(anyOf), - ParsedQueryVariant1(string), - ParsedQueryVariant2(null), + Cursors(string), + ParsedQuery(string), ListPublicRunsResponse(class), Runs(array), RunPublicSchema(ref), ListPublicRunsResponseCursors(class), - Cursors2(anyOf), - CursorsVariant1(string), - CursorsVariant2(null), - ParsedQuery2(anyOf), - ParsedQueryVariant1(string), - ParsedQueryVariant2(null), + Cursors(string), + ParsedQuery(string), ListReposResponse(class), Repos(array), RepoWithLookups(ref), @@ -1525,43 +933,25 @@ Runs(array), RunSchema(ref), ListRunsResponseCursors(class), - Cursors3(anyOf), - CursorsVariant1(string), - CursorsVariant2(null), - ParsedQuery3(anyOf), - ParsedQueryVariant1(string), - ParsedQueryVariant2(null), + Cursors(string), + ParsedQuery(string), ListTagsResponse(class), Tags(array), TagCount(ref), MemberIdentity(class), Id(string), OrganizationId(string), - TenantId2(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), + TenantId(string), CreatedAt(DateTime), UserId(string), - LsUserId3(anyOf), - LsUserIdVariant1(string), - LsUserIdVariant2(null), + LsUserId(string), ReadOnly(bool), - RoleId4(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - RoleName2(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), + RoleId(string), + RoleName(string), AccessScope(ref), - Email(anyOf), - EmailVariant1(string), - EmailVariant2(null), - FullName3(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - AvatarUrl(anyOf), - AvatarUrlVariant1(string), - AvatarUrlVariant2(null), + Email(string), + FullName(string), + AvatarUrl(string), MetadataKeyValue(class), Key(string), Value(string), @@ -1569,14 +959,10 @@ MissingMissing1(enum), ModelFeedbackSource(class), Type(string), - Metadata16(anyOf), - ModelFeedbackSourceMetadata(class), - MetadataVariant2(null), + ModelFeedbackSourceMetadata(class), ModelPriceMapCreateSchema(class), Name(string), - StartTime3(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), + StartTime(DateTime), MatchPath(array), MatchPathItem(string), MatchPattern(string), @@ -1586,14 +972,10 @@ CompletionCost(anyOf), CompletionCostVariant1(double), CompletionCostVariant2(string), - Provider(anyOf), - ProviderVariant1(string), - ProviderVariant2(null), + Provider(string), ModelPriceMapUpdateSchema(class), Name(string), - StartTime4(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), + StartTime(DateTime), MatchPath(array), MatchPathItem(string), MatchPattern(string), @@ -1603,37 +985,25 @@ CompletionCost2(anyOf), CompletionCostVariant1(double), CompletionCostVariant2(string), - Provider2(anyOf), - ProviderVariant1(string), - ProviderVariant2(null), + Provider(string), MonitorBlock(class), Title(string), Section(string), Columns(array), ColumnsItem(string), - Subtitle(anyOf), - SubtitleVariant1(string), - SubtitleVariant2(null), + Subtitle(string), Rows(array), RowsItem(array), MonitorBlockRowItem(class), MonitorBlockChartSpec(class), - ClickTarget(anyOf), - ClickTargetVariant1(string), - ClickTargetVariant2(null), - ToggleableMarks(anyOf), - MonitorBlockToggleableMarks(class), - ToggleableMarksVariant1(array), - ToggleableMarksVariant1Item(int), - ToggleableMarksVariant2(null), + ClickTarget(string), + MonitorBlockToggleableMarks(class), + ToggleableMarks(array), + ToggleableMarksItem(int), MonitorGroupSpec(class), Session(string), - Tag3(anyOf), - TagVariant1(string), - TagVariant2(null), - Metadata17(anyOf), - MetadataKeyValue(ref), - MetadataVariant2(null), + Tag(string), + MetadataKeyValue(ref), MonitorRequest(class), Timezone(string), Groups(array), @@ -1649,145 +1019,77 @@ OptimizePromptRequestMetaprompt(class), Examples(array), ExampleRunWithFeedback(ref), - OverallFeedback(anyOf), - OverallFeedbackVariant1(string), - OverallFeedbackVariant2(null), + OverallFeedback(string), OptimizePromptResponse(class), Prompt(string), - Error4(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + Error(string), OrgFeatureFlags(enum), OrgIdentityPatch(class), - Password3(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName4(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - RoleId5(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), + Password(string), + FullName(string), + RoleId(string), OrgMemberIdentity(class), Id(string), OrganizationId(string), - TenantId3(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), + TenantId(string), CreatedAt(DateTime), UserId(string), - LsUserId4(anyOf), - LsUserIdVariant1(string), - LsUserIdVariant2(null), + LsUserId(string), ReadOnly(bool), - RoleId6(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - RoleName3(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), + RoleId(string), + RoleName(string), AccessScope(ref), - Email2(anyOf), - EmailVariant1(string), - EmailVariant2(null), - FullName5(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - AvatarUrl2(anyOf), - AvatarUrlVariant1(string), - AvatarUrlVariant2(null), + Email(string), + FullName(string), + AvatarUrl(string), TenantIds(array), TenantIdsItem(string), OrgPendingIdentity(class), Email(string), ReadOnly(bool), - RoleId7(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - WorkspaceIds2(anyOf), - WorkspaceIdsVariant1(array), - WorkspaceIdsVariant1Item(string), - WorkspaceIdsVariant2(null), - WorkspaceRoleId2(anyOf), - WorkspaceRoleIdVariant1(string), - WorkspaceRoleIdVariant2(null), - Password4(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName6(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), + RoleId(string), + WorkspaceIds(array), + WorkspaceIdsItem(string), + WorkspaceRoleId(string), + Password(string), + FullName(string), AccessScope(ref), Id(string), - UserId3(anyOf), - UserIdVariant1(string), - UserIdVariant2(null), - TenantId4(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), - OrganizationId(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + UserId(string), + TenantId(string), + OrganizationId(string), CreatedAt(DateTime), - RoleName4(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), + RoleName(string), TenantIds(array), TenantIdsItem(string), Organization(class), - Id7(anyOf), - IdVariant1(string), - IdVariant2(null), - DisplayName2(anyOf), - DisplayNameVariant1(string), - DisplayNameVariant2(null), + Id(string), + DisplayName(string), OrganizationConfig(ref), ConnectedToStripe(bool), ConnectedToMetronome(bool), IsPersonal(bool), - Tier(anyOf), - PaymentPlanTier(ref), - TierVariant2(null), - PaymentMethod(anyOf), - StripePaymentMethodInfo(ref), - PaymentMethodVariant2(null), + PaymentPlanTier(ref), + StripePaymentMethodInfo(ref), HasCancelled(bool), - EndOfBillingPeriod(anyOf), - EndOfBillingPeriodVariant1(DateTime), - EndOfBillingPeriodVariant2(null), - CurrentPlan(anyOf), - CustomerVisiblePlanInfo(ref), - CurrentPlanVariant2(null), - UpcomingPlan(anyOf), - CustomerVisiblePlanInfo(ref), - UpcomingPlanVariant2(null), + EndOfBillingPeriod(DateTime), + CustomerVisiblePlanInfo(ref), + CustomerVisiblePlanInfo(ref), ReachedMaxWorkspaces(bool), Permissions(array), PermissionsItem(string), OrganizationBillingInfo(class), - Id8(anyOf), - IdVariant1(string), - IdVariant2(null), + Id(string), DisplayName(string), OrganizationConfig(ref), ConnectedToStripe(bool), ConnectedToMetronome(bool), IsPersonal(bool), - Tier2(anyOf), - PaymentPlanTier(ref), - TierVariant2(null), - PaymentMethod2(anyOf), - StripePaymentMethodInfo(ref), - PaymentMethodVariant2(null), - EndOfBillingPeriod2(anyOf), - EndOfBillingPeriodVariant1(DateTime), - EndOfBillingPeriodVariant2(null), - CurrentPlan2(anyOf), - CustomerVisiblePlanInfo(ref), - CurrentPlanVariant2(null), - UpcomingPlan2(anyOf), - CustomerVisiblePlanInfo(ref), - UpcomingPlanVariant2(null), + PaymentPlanTier(ref), + StripePaymentMethodInfo(ref), + EndOfBillingPeriod(DateTime), + CustomerVisiblePlanInfo(ref), + CustomerVisiblePlanInfo(ref), ReachedMaxWorkspaces(bool), Disabled(bool), OrganizationConfig(class), @@ -1795,15 +1097,9 @@ MaxWorkspaces(int), CanUseRbac(bool), CanAddSeats(bool), - StartupPlanApprovalDate(anyOf), - StartupPlanApprovalDateVariant1(string), - StartupPlanApprovalDateVariant2(null), - PartnerPlanApprovalDate(anyOf), - PartnerPlanApprovalDateVariant1(string), - PartnerPlanApprovalDateVariant2(null), - PremierPlanApprovalDate(anyOf), - PremierPlanApprovalDateVariant1(string), - PremierPlanApprovalDateVariant2(null), + StartupPlanApprovalDate(string), + PartnerPlanApprovalDate(string), + PremierPlanApprovalDate(string), CanServeDatasets(bool), CanUseLanggraphCloud(bool), MaxLanggraphCloudDeployments(int), @@ -1820,25 +1116,17 @@ EmbeddableUrl(string), OrganizationDashboardType(enum), OrganizationInfo(class), - Id9(anyOf), - IdVariant1(string), - IdVariant2(null), - DisplayName3(anyOf), - DisplayNameVariant1(string), - DisplayNameVariant2(null), + Id(string), + DisplayName(string), OrganizationConfig(ref), IsPersonal(bool), - Tier3(anyOf), - PaymentPlanTier(ref), - TierVariant2(null), + PaymentPlanTier(ref), ReachedMaxWorkspaces(bool), Permissions(array), PermissionsItem(string), Disabled(bool), SsoOnly(bool), - SsoLoginSlug(anyOf), - SsoLoginSlugVariant1(string), - SsoLoginSlugVariant2(null), + SsoLoginSlug(string), OrganizationMembers(class), OrganizationId(string), Members(array), @@ -1848,80 +1136,42 @@ OrganizationPGSchemaSlim(class), Id(string), DisplayName(string), - CreatedAt5(anyOf), - CreatedAtVariant1(DateTime), - CreatedAtVariant2(null), - CreatedByUserId(anyOf), - CreatedByUserIdVariant1(string), - CreatedByUserIdVariant2(null), - ModifiedAt5(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + CreatedAt(DateTime), + CreatedByUserId(string), + ModifiedAt(DateTime), IsPersonal(bool), Disabled(bool), - SsoLoginSlug2(anyOf), - SsoLoginSlugVariant1(string), - SsoLoginSlugVariant2(null), + SsoLoginSlug(string), SsoOnly(bool), OrganizationUpdate(class), - DisplayName4(anyOf), - DisplayNameVariant1(string), - DisplayNameVariant2(null), + DisplayName(string), PagerdutySeverity(enum), PaymentPlanTier(enum), PendingIdentity(class), Email(string), ReadOnly(bool), - RoleId8(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - WorkspaceIds3(anyOf), - WorkspaceIdsVariant1(array), - WorkspaceIdsVariant1Item(string), - WorkspaceIdsVariant2(null), - WorkspaceRoleId3(anyOf), - WorkspaceRoleIdVariant1(string), - WorkspaceRoleIdVariant2(null), - Password5(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName7(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), + RoleId(string), + WorkspaceIds(array), + WorkspaceIdsItem(string), + WorkspaceRoleId(string), + Password(string), + FullName(string), AccessScope(ref), Id(string), - UserId4(anyOf), - UserIdVariant1(string), - UserIdVariant2(null), - TenantId5(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), - OrganizationId2(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + UserId(string), + TenantId(string), + OrganizationId(string), CreatedAt(DateTime), - RoleName5(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), + RoleName(string), PendingIdentityCreate(class), Email(string), ReadOnly(bool), - RoleId9(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - WorkspaceIds4(anyOf), - WorkspaceIdsVariant1(array), - WorkspaceIdsVariant1Item(string), - WorkspaceIdsVariant2(null), - WorkspaceRoleId4(anyOf), - WorkspaceRoleIdVariant1(string), - WorkspaceRoleIdVariant2(null), - Password6(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), - FullName8(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), + RoleId(string), + WorkspaceIds(array), + WorkspaceIdsItem(string), + WorkspaceRoleId(string), + Password(string), + FullName(string), PermissionResponse(class), Name(string), Description(string), @@ -1930,119 +1180,71 @@ PlaygroundRunOverDatasetRequestSchemaManifest(class), PlaygroundRunOverDatasetRequestSchemaSecrets(class), Secrets(string), - RunId3(anyOf), - RunIdVariant1(string), - RunIdVariant2(null), - RepoId(anyOf), - RepoIdVariant1(string), - RepoIdVariant2(null), - Tools(anyOf), - ToolsVariant1(array), - PlaygroundRunOverDatasetRequestSchemaToolsVariant1Item(class), - ToolsVariant2(null), - ToolChoice(anyOf), - ToolChoiceVariant1(string), - ToolChoiceVariant2(null), + RunId(string), + RepoId(string), + Tools(array), + PlaygroundRunOverDatasetRequestSchemaTool(class), + ToolChoice(string), RunnableConfig(ref), - ProjectName(anyOf), - ProjectNameVariant1(string), - ProjectNameVariant2(null), + ProjectName(string), DatasetId(string), Repetitions(int), PlaygroundSettingsCreateRequest(class), PlaygroundSettingsCreateRequestSettings(class), - Name7(anyOf), - NameVariant1(string), - NameVariant2(null), + Name(string), PlaygroundSettingsResponse(class), Id(string), PlaygroundSettingsResponseSettings(class), - Name8(anyOf), - NameVariant1(string), - NameVariant2(null), + Name(string), CreatedAt(DateTime), UpdatedAt(DateTime), PlaygroundSettingsUpdateRequest(class), - Name9(anyOf), - NameVariant1(string), - NameVariant2(null), + Name(string), ProviderUserSlim(class), Id(string), - Provider3(anyOf), - AuthProvider(ref), - ProviderVariant2(null), + AuthProvider(ref), LsUserId(string), - SamlProviderId(anyOf), - SamlProviderIdVariant1(string), - SamlProviderIdVariant2(null), - ProviderUserId(anyOf), - ProviderUserIdVariant1(string), - ProviderUserIdVariant2(null), + SamlProviderId(string), + ProviderUserId(string), CreatedAt(DateTime), UpdatedAt(DateTime), - Email3(anyOf), - EmailVariant1(string), - EmailVariant2(null), - FullName9(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - EmailConfirmedAt(anyOf), - EmailConfirmedAtVariant1(DateTime), - EmailConfirmedAtVariant2(null), + Email(string), + FullName(string), + EmailConfirmedAt(DateTime), PublicComparativeExperiment(class), Id(string), - Name10(anyOf), - NameVariant1(string), - NameVariant2(null), - Description26(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Name(string), + Description(string), CreatedAt(DateTime), ModifiedAt(DateTime), - Extra5(anyOf), - PublicComparativeExperimentExtra(class), - ExtraVariant2(null), + PublicComparativeExperimentExtra(class), ExperimentsInfo(array), SimpleExperimentInfo(ref), - FeedbackStats2(anyOf), - PublicComparativeExperimentFeedbackStats(class), - FeedbackStatsVariant2(null), + PublicComparativeExperimentFeedbackStats(class), PublicExampleWithRuns(class), - Outputs8(anyOf), - PublicExampleWithRunsOutputs(class), - OutputsVariant2(null), + PublicExampleWithRunsOutputs(class), DatasetId(string), - SourceRunId6(anyOf), - SourceRunIdVariant1(string), - SourceRunIdVariant2(null), - Metadata18(anyOf), - PublicExampleWithRunsMetadata(class), - MetadataVariant2(null), + SourceRunId(string), + PublicExampleWithRunsMetadata(class), PublicExampleWithRunsInputs(class), CreatedAt(DateTime), Id(string), Name(string), - ModifiedAt6(anyOf), - ModifiedAtVariant1(DateTime), - ModifiedAtVariant2(null), + ModifiedAt(DateTime), Runs(array), RunPublicDatasetSchema(ref), PutDatasetVersionsSchema(class), - AsOf2(anyOf), + AsOf(anyOf), AsOfVariant1(DateTime), AsOfVariant2(string), Tag(string), QueryExampleSchemaWithRuns(class), SessionIds(array), SessionIdsItem(string), - ComparativeExperimentId4(anyOf), - ComparativeExperimentIdVariant1(string), - ComparativeExperimentIdVariant2(null), - Filters4(anyOf), - QueryExampleSchemaWithRunsFilters(class), - FiltersVariant1(array), - FiltersVariant1Item(string), - FiltersVariant2(null), + ComparativeExperimentId(string), + QueryExampleSchemaWithRunsFilters(class), + Filters(array), + FiltersItem(string), Offset(int), Limit(int), QueryFeedbackDelta(class), @@ -2050,41 +1252,25 @@ ComparisonSessionIds(array), ComparisonSessionIdsItem(string), FeedbackKey(string), - Filters5(anyOf), - QueryFeedbackDeltaFilters(class), - FiltersVariant1(array), - FiltersVariant1Item(string), - FiltersVariant2(null), + QueryFeedbackDeltaFilters(class), + Filters(array), + FiltersItem(string), Offset(int), Limit(int), - ComparativeExperimentId5(anyOf), - ComparativeExperimentIdVariant1(string), - ComparativeExperimentIdVariant2(null), + ComparativeExperimentId(string), QueryParamsForPublicRunSchema(class), - Id10(anyOf), - IdVariant1(array), - IdVariant1Item(string), - IdVariant2(null), + Id(array), + IdItem(string), RepoExampleResponse(class), Id(string), - StartTime5(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), - Inputs5(anyOf), - RepoExampleResponseInputs(class), - InputsVariant2(null), - Outputs9(anyOf), - RepoExampleResponseOutputs(class), - OutputsVariant2(null), + StartTime(DateTime), + RepoExampleResponseInputs(class), + RepoExampleResponseOutputs(class), SessionId(string), RepoWithLookups(class), RepoHandle(string), - Description27(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Readme3(anyOf), - ReadmeVariant1(string), - ReadmeVariant2(null), + Description(string), + Readme(string), Id(string), TenantId(string), CreatedAt(DateTime), @@ -2093,35 +1279,19 @@ IsArchived(bool), Tags(array), TagsItem(string), - OriginalRepoId(anyOf), - OriginalRepoIdVariant1(string), - OriginalRepoIdVariant2(null), - UpstreamRepoId(anyOf), - UpstreamRepoIdVariant1(string), - UpstreamRepoIdVariant2(null), - Owner(anyOf), - OwnerVariant1(string), - OwnerVariant2(null), + OriginalRepoId(string), + UpstreamRepoId(string), + Owner(string), FullName(string), NumLikes(int), NumDownloads(int), NumViews(int), - LikedByAuthUser2(anyOf), - LikedByAuthUserVariant1(bool), - LikedByAuthUserVariant2(null), - LastCommitHash(anyOf), - LastCommitHashVariant1(string), - LastCommitHashVariant2(null), + LikedByAuthUser(bool), + LastCommitHash(string), NumCommits(int), - OriginalRepoFullName(anyOf), - OriginalRepoFullNameVariant1(string), - OriginalRepoFullNameVariant2(null), - UpstreamRepoFullName(anyOf), - UpstreamRepoFullNameVariant1(string), - UpstreamRepoFullNameVariant2(null), - LatestCommitManifest(anyOf), - CommitManifestResponse(ref), - LatestCommitManifestVariant2(null), + OriginalRepoFullName(string), + UpstreamRepoFullName(string), + CommitManifestResponse(ref), RequestBodyForRunsGenerateQuery(class), Query(string), FeedbackKeys(array), @@ -2140,839 +1310,387 @@ Name(string), DisplayName(string), Description(string), - OrganizationId3(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + OrganizationId(string), Permissions(array), PermissionsItem(string), - AccessScope2(anyOf), - AccessScope(ref), - AccessScopeVariant2(null), + AccessScope(ref), RootModelDictStrListStr(class), RootModelDictStrListStr(array), RootModelDictStrListStrItem(string), RuleLogActionOutcome(enum), RuleLogActionResponse(class), RuleLogActionOutcome(ref), - Payload(anyOf), - RuleLogActionResponsePayload(class), - PayloadVariant2(null), + RuleLogActionResponsePayload(class), RuleLogSchema(class), RuleId(string), RunId(string), - RunName2(anyOf), - RunNameVariant1(string), - RunNameVariant2(null), - RunType3(anyOf), - RunTypeVariant1(string), - RunTypeVariant2(null), - RunSessionId(anyOf), - RunSessionIdVariant1(string), - RunSessionIdVariant2(null), + RunName(string), + RunType(string), + RunSessionId(string), StartTime(DateTime), EndTime(DateTime), - AddToAnnotationQueue(anyOf), - RuleLogActionResponse(ref), - AddToAnnotationQueueVariant2(null), - AddToDataset(anyOf), - RuleLogActionResponse(ref), - AddToDatasetVariant2(null), - Evaluators(anyOf), - RuleLogActionResponse(ref), - EvaluatorsVariant2(null), - Alerts(anyOf), - RuleLogActionResponse(ref), - AlertsVariant2(null), - Webhooks(anyOf), - RuleLogActionResponse(ref), - WebhooksVariant2(null), + RuleLogActionResponse(ref), + RuleLogActionResponse(ref), + RuleLogActionResponse(ref), + RuleLogActionResponse(ref), + RuleLogActionResponse(ref), RunDateOrder(enum), RunGroupBy(enum), RunGroupRequest(class), SessionId(string), RunGroupBy(ref), - Filter4(anyOf), - FilterVariant1(string), - FilterVariant2(null), - StartTime6(anyOf), - StartTimeVariant1(DateTime), - StartTimeVariant2(null), - EndTime5(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), + Filter(string), + StartTime(DateTime), + EndTime(DateTime), Offset(int), Limit(int), RunGroupStats(class), RunCount(int), - LatencyP50(anyOf), - LatencyP50Variant1(double), - LatencyP50Variant2(null), - LatencyP99(anyOf), - LatencyP99Variant1(double), - LatencyP99Variant2(null), - FirstTokenP50(anyOf), - FirstTokenP50Variant1(double), - FirstTokenP50Variant2(null), - FirstTokenP99(anyOf), - FirstTokenP99Variant1(double), - FirstTokenP99Variant2(null), - TotalTokens(anyOf), - TotalTokensVariant1(int), - TotalTokensVariant2(null), - PromptTokens(anyOf), - PromptTokensVariant1(int), - PromptTokensVariant2(null), - CompletionTokens(anyOf), - CompletionTokensVariant1(int), - CompletionTokensVariant2(null), - MedianTokens(anyOf), - MedianTokensVariant1(int), - MedianTokensVariant2(null), - LastRunStartTime(anyOf), - LastRunStartTimeVariant1(DateTime), - LastRunStartTimeVariant2(null), - FeedbackStats3(anyOf), - RunGroupStatsFeedbackStats(class), - FeedbackStatsVariant2(null), - RunFacets(anyOf), - RunFacetsVariant1(array), - RunGroupStatsRunFacetsVariant1Item(class), - RunFacetsVariant2(null), - ErrorRate(anyOf), - ErrorRateVariant1(double), - ErrorRateVariant2(null), - StreamingRate(anyOf), - StreamingRateVariant1(double), - StreamingRateVariant2(null), - TotalCost(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost3(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost3(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), + LatencyP50(double), + LatencyP99(double), + FirstTokenP50(double), + FirstTokenP99(double), + TotalTokens(int), + PromptTokens(int), + CompletionTokens(int), + MedianTokens(int), + LastRunStartTime(DateTime), + RunGroupStatsFeedbackStats(class), + RunFacets(array), + RunGroupStatsRunFacet(class), + ErrorRate(double), + StreamingRate(double), + TotalCost(string), + PromptCost(string), + CompletionCost(string), GroupCount(int), RunPublicDatasetSchema(class), Name(string), - Inputs6(anyOf), - RunPublicDatasetSchemaInputs(class), - InputsVariant2(null), - InputsPreview(anyOf), - InputsPreviewVariant1(string), - InputsPreviewVariant2(null), + RunPublicDatasetSchemaInputs(class), + InputsPreview(string), RunTypeEnum(ref), StartTime(DateTime), - EndTime6(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra6(anyOf), - RunPublicDatasetSchemaExtra(class), - ExtraVariant2(null), - Error5(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + EndTime(DateTime), + RunPublicDatasetSchemaExtra(class), + Error(string), ExecutionOrder(int), - Serialized(anyOf), - RunPublicDatasetSchemaSerialized(class), - SerializedVariant2(null), - Outputs10(anyOf), - RunPublicDatasetSchemaOutputs(class), - OutputsVariant2(null), - OutputsPreview(anyOf), - OutputsPreviewVariant1(string), - OutputsPreviewVariant2(null), - ParentRunId(anyOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - ManifestId(anyOf), - ManifestIdVariant1(string), - ManifestIdVariant2(null), - ManifestS3Id(anyOf), - ManifestS3IdVariant1(string), - ManifestS3IdVariant2(null), - Events(anyOf), - EventsVariant1(array), - RunPublicDatasetSchemaEventsVariant1Item(class), - EventsVariant2(null), - Tags4(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - InputsS3Urls(anyOf), - RunPublicDatasetSchemaInputsS3Urls(class), - InputsS3UrlsVariant2(null), - OutputsS3Urls(anyOf), - RunPublicDatasetSchemaOutputsS3Urls(class), - OutputsS3UrlsVariant2(null), - S3Urls(anyOf), - RunPublicDatasetSchemaS3Urls(class), - S3UrlsVariant2(null), + RunPublicDatasetSchemaSerialized(class), + RunPublicDatasetSchemaOutputs(class), + OutputsPreview(string), + ParentRunId(string), + ManifestId(string), + ManifestS3Id(string), + Events(array), + RunPublicDatasetSchemaEvent(class), + Tags(array), + TagsItem(string), + RunPublicDatasetSchemaInputsS3Urls(class), + RunPublicDatasetSchemaOutputsS3Urls(class), + RunPublicDatasetSchemaS3Urls(class), TraceId(string), DottedOrder(string), Id(string), Status(string), - ChildRunIds(anyOf), - ChildRunIdsVariant1(array), - ChildRunIdsVariant1Item(string), - ChildRunIdsVariant2(null), - DirectChildRunIds(anyOf), - DirectChildRunIdsVariant1(array), - DirectChildRunIdsVariant1Item(string), - DirectChildRunIdsVariant2(null), - ParentRunIds(anyOf), - ParentRunIdsVariant1(array), - ParentRunIdsVariant1Item(string), - ParentRunIdsVariant2(null), - FeedbackStats4(anyOf), - RunPublicDatasetSchemaFeedbackStats(class), - RunPublicDatasetSchemaFeedbackStats2(class), - FeedbackStatsVariant2(null), - ReferenceExampleId(anyOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), + ChildRunIds(array), + ChildRunIdsItem(string), + DirectChildRunIds(array), + DirectChildRunIdsItem(string), + ParentRunIds(array), + ParentRunIdsItem(string), + RunPublicDatasetSchemaFeedbackStats(class), + RunPublicDatasetSchemaFeedbackStats2(class), + ReferenceExampleId(string), TotalTokens(int), PromptTokens(int), CompletionTokens(int), - TotalCost2(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost4(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost4(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), - PriceModelId(anyOf), - PriceModelIdVariant1(string), - PriceModelIdVariant2(null), - FirstTokenTime(anyOf), - FirstTokenTimeVariant1(DateTime), - FirstTokenTimeVariant2(null), + TotalCost(string), + PromptCost(string), + CompletionCost(string), + PriceModelId(string), + FirstTokenTime(DateTime), SessionId(string), RunPublicSchema(class), Name(string), - Inputs7(anyOf), - RunPublicSchemaInputs(class), - InputsVariant2(null), - InputsPreview2(anyOf), - InputsPreviewVariant1(string), - InputsPreviewVariant2(null), + RunPublicSchemaInputs(class), + InputsPreview(string), RunTypeEnum(ref), StartTime(DateTime), - EndTime7(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra7(anyOf), - RunPublicSchemaExtra(class), - ExtraVariant2(null), - Error6(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + EndTime(DateTime), + RunPublicSchemaExtra(class), + Error(string), ExecutionOrder(int), - Serialized2(anyOf), - RunPublicSchemaSerialized(class), - SerializedVariant2(null), - Outputs11(anyOf), - RunPublicSchemaOutputs(class), - OutputsVariant2(null), - OutputsPreview2(anyOf), - OutputsPreviewVariant1(string), - OutputsPreviewVariant2(null), - ParentRunId2(anyOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - ManifestId2(anyOf), - ManifestIdVariant1(string), - ManifestIdVariant2(null), - ManifestS3Id2(anyOf), - ManifestS3IdVariant1(string), - ManifestS3IdVariant2(null), - Events2(anyOf), - EventsVariant1(array), - RunPublicSchemaEventsVariant1Item(class), - EventsVariant2(null), - Tags5(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - InputsS3Urls2(anyOf), - RunPublicSchemaInputsS3Urls(class), - InputsS3UrlsVariant2(null), - OutputsS3Urls2(anyOf), - RunPublicSchemaOutputsS3Urls(class), - OutputsS3UrlsVariant2(null), - S3Urls2(anyOf), - RunPublicSchemaS3Urls(class), - S3UrlsVariant2(null), + RunPublicSchemaSerialized(class), + RunPublicSchemaOutputs(class), + OutputsPreview(string), + ParentRunId(string), + ManifestId(string), + ManifestS3Id(string), + Events(array), + RunPublicSchemaEvent(class), + Tags(array), + TagsItem(string), + RunPublicSchemaInputsS3Urls(class), + RunPublicSchemaOutputsS3Urls(class), + RunPublicSchemaS3Urls(class), TraceId(string), DottedOrder(string), Id(string), Status(string), - ChildRunIds2(anyOf), - ChildRunIdsVariant1(array), - ChildRunIdsVariant1Item(string), - ChildRunIdsVariant2(null), - DirectChildRunIds2(anyOf), - DirectChildRunIdsVariant1(array), - DirectChildRunIdsVariant1Item(string), - DirectChildRunIdsVariant2(null), - ParentRunIds2(anyOf), - ParentRunIdsVariant1(array), - ParentRunIdsVariant1Item(string), - ParentRunIdsVariant2(null), - FeedbackStats5(anyOf), - RunPublicSchemaFeedbackStats(class), - RunPublicSchemaFeedbackStats2(class), - FeedbackStatsVariant2(null), - ReferenceExampleId2(anyOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), + ChildRunIds(array), + ChildRunIdsItem(string), + DirectChildRunIds(array), + DirectChildRunIdsItem(string), + ParentRunIds(array), + ParentRunIdsItem(string), + RunPublicSchemaFeedbackStats(class), + RunPublicSchemaFeedbackStats2(class), + ReferenceExampleId(string), TotalTokens(int), PromptTokens(int), CompletionTokens(int), - TotalCost3(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost5(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost5(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), - PriceModelId2(anyOf), - PriceModelIdVariant1(string), - PriceModelIdVariant2(null), - FirstTokenTime2(anyOf), - FirstTokenTimeVariant1(DateTime), - FirstTokenTimeVariant2(null), + TotalCost(string), + PromptCost(string), + CompletionCost(string), + PriceModelId(string), + FirstTokenTime(DateTime), RunRulesAlertType(enum), RunRulesCreateSchema(class), DisplayName(string), - SessionId4(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), + SessionId(string), IsEnabled(bool), - DatasetId4(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), + DatasetId(string), SamplingRate(double), - Filter5(anyOf), - FilterVariant1(string), - FilterVariant2(null), - TraceFilter4(anyOf), - TraceFilterVariant1(string), - TraceFilterVariant2(null), - TreeFilter4(anyOf), - TreeFilterVariant1(string), - TreeFilterVariant2(null), - BackfillFrom(anyOf), - BackfillFromVariant1(DateTime), - BackfillFromVariant2(null), + Filter(string), + TraceFilter(string), + TreeFilter(string), + BackfillFrom(DateTime), UseCorrectionsDataset(bool), - NumFewShotExamples(anyOf), - NumFewShotExamplesVariant1(int), - NumFewShotExamplesVariant2(null), + NumFewShotExamples(int), ExtendOnly(bool), - AddToAnnotationQueueId(anyOf), - AddToAnnotationQueueIdVariant1(string), - AddToAnnotationQueueIdVariant2(null), - AddToDatasetId(anyOf), - AddToDatasetIdVariant1(string), - AddToDatasetIdVariant2(null), + AddToAnnotationQueueId(string), + AddToDatasetId(string), AddToDatasetPreferCorrection(bool), - Evaluators2(anyOf), - EvaluatorsVariant1(array), - EvaluatorTopLevel(ref), - EvaluatorsVariant2(null), - CodeEvaluators(anyOf), - CodeEvaluatorsVariant1(array), - CodeEvaluatorTopLevel(ref), - CodeEvaluatorsVariant2(null), - Alerts2(anyOf), - AlertsVariant1(array), - RunRulesPagerdutyAlertSchema(ref), - AlertsVariant2(null), - Webhooks2(anyOf), - WebhooksVariant1(array), - RunRulesWebhookSchema(ref), - WebhooksVariant2(null), + Evaluators(array), + EvaluatorTopLevel(ref), + CodeEvaluators(array), + CodeEvaluatorTopLevel(ref), + Alerts(array), + RunRulesPagerdutyAlertSchema(ref), + Webhooks(array), + RunRulesWebhookSchema(ref), RunRulesPagerdutyAlertSchema(class), - Type2(anyOf), - RunRulesAlertType(ref), - TypeVariant2(null), + RunRulesAlertType(ref), RoutingKey(string), - Summary(anyOf), - SummaryVariant1(string), - SummaryVariant2(null), - Severity(anyOf), - PagerdutySeverity(ref), - SeverityVariant2(null), + Summary(string), + PagerdutySeverity(ref), RunRulesSchema(class), Id(string), TenantId(string), IsEnabled(bool), - SessionId5(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), - SessionName(anyOf), - SessionNameVariant1(string), - SessionNameVariant2(null), - DatasetId5(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), - DatasetName2(anyOf), - DatasetNameVariant1(string), - DatasetNameVariant2(null), + SessionId(string), + SessionName(string), + DatasetId(string), + DatasetName(string), DisplayName(string), SamplingRate(double), - Filter6(anyOf), - FilterVariant1(string), - FilterVariant2(null), - TraceFilter5(anyOf), - TraceFilterVariant1(string), - TraceFilterVariant2(null), - TreeFilter5(anyOf), - TreeFilterVariant1(string), - TreeFilterVariant2(null), - AddToAnnotationQueueId2(anyOf), - AddToAnnotationQueueIdVariant1(string), - AddToAnnotationQueueIdVariant2(null), - AddToAnnotationQueueName(anyOf), - AddToAnnotationQueueNameVariant1(string), - AddToAnnotationQueueNameVariant2(null), - AddToDatasetId2(anyOf), - AddToDatasetIdVariant1(string), - AddToDatasetIdVariant2(null), - AddToDatasetName(anyOf), - AddToDatasetNameVariant1(string), - AddToDatasetNameVariant2(null), + Filter(string), + TraceFilter(string), + TreeFilter(string), + AddToAnnotationQueueId(string), + AddToAnnotationQueueName(string), + AddToDatasetId(string), + AddToDatasetName(string), AddToDatasetPreferCorrection(bool), - CorrectionsDatasetId(anyOf), - CorrectionsDatasetIdVariant1(string), - CorrectionsDatasetIdVariant2(null), + CorrectionsDatasetId(string), UseCorrectionsDataset(bool), - NumFewShotExamples2(anyOf), - NumFewShotExamplesVariant1(int), - NumFewShotExamplesVariant2(null), - Evaluators3(anyOf), - EvaluatorsVariant1(array), - EvaluatorTopLevel(ref), - EvaluatorsVariant2(null), - CodeEvaluators2(anyOf), - CodeEvaluatorsVariant1(array), - CodeEvaluatorTopLevel(ref), - CodeEvaluatorsVariant2(null), - Alerts3(anyOf), - AlertsVariant1(array), - RunRulesPagerdutyAlertSchema(ref), - AlertsVariant2(null), - Webhooks3(anyOf), - WebhooksVariant1(array), - RunRulesWebhookSchema(ref), - WebhooksVariant2(null), + NumFewShotExamples(int), + Evaluators(array), + EvaluatorTopLevel(ref), + CodeEvaluators(array), + CodeEvaluatorTopLevel(ref), + Alerts(array), + RunRulesPagerdutyAlertSchema(ref), + Webhooks(array), + RunRulesWebhookSchema(ref), ExtendOnly(bool), CreatedAt(DateTime), UpdatedAt(DateTime), - BackfillFrom2(anyOf), - BackfillFromVariant1(DateTime), - BackfillFromVariant2(null), + BackfillFrom(DateTime), RunRulesWebhookSchema(class), Url(string), - Headers(anyOf), - RunRulesWebhookSchemaHeaders(class), - HeadersVariant1(string), - HeadersVariant2(null), + RunRulesWebhookSchemaHeaders(class), + Headers(string), RunSchema(class), Name(string), - Inputs8(anyOf), - RunSchemaInputs(class), - InputsVariant2(null), - InputsPreview3(anyOf), - InputsPreviewVariant1(string), - InputsPreviewVariant2(null), + RunSchemaInputs(class), + InputsPreview(string), RunTypeEnum(ref), StartTime(DateTime), - EndTime8(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra8(anyOf), - RunSchemaExtra(class), - ExtraVariant2(null), - Error7(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + EndTime(DateTime), + RunSchemaExtra(class), + Error(string), ExecutionOrder(int), - Serialized3(anyOf), - RunSchemaSerialized(class), - SerializedVariant2(null), - Outputs12(anyOf), - RunSchemaOutputs(class), - OutputsVariant2(null), - OutputsPreview3(anyOf), - OutputsPreviewVariant1(string), - OutputsPreviewVariant2(null), - ParentRunId3(anyOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - ManifestId3(anyOf), - ManifestIdVariant1(string), - ManifestIdVariant2(null), - ManifestS3Id3(anyOf), - ManifestS3IdVariant1(string), - ManifestS3IdVariant2(null), - Events3(anyOf), - EventsVariant1(array), - RunSchemaEventsVariant1Item(class), - EventsVariant2(null), - Tags6(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - InputsS3Urls3(anyOf), - RunSchemaInputsS3Urls(class), - InputsS3UrlsVariant2(null), - OutputsS3Urls3(anyOf), - RunSchemaOutputsS3Urls(class), - OutputsS3UrlsVariant2(null), - S3Urls3(anyOf), - RunSchemaS3Urls(class), - S3UrlsVariant2(null), + RunSchemaSerialized(class), + RunSchemaOutputs(class), + OutputsPreview(string), + ParentRunId(string), + ManifestId(string), + ManifestS3Id(string), + Events(array), + RunSchemaEvent(class), + Tags(array), + TagsItem(string), + RunSchemaInputsS3Urls(class), + RunSchemaOutputsS3Urls(class), + RunSchemaS3Urls(class), TraceId(string), DottedOrder(string), Id(string), Status(string), - ChildRunIds3(anyOf), - ChildRunIdsVariant1(array), - ChildRunIdsVariant1Item(string), - ChildRunIdsVariant2(null), - DirectChildRunIds3(anyOf), - DirectChildRunIdsVariant1(array), - DirectChildRunIdsVariant1Item(string), - DirectChildRunIdsVariant2(null), - ParentRunIds3(anyOf), - ParentRunIdsVariant1(array), - ParentRunIdsVariant1Item(string), - ParentRunIdsVariant2(null), - FeedbackStats6(anyOf), - RunSchemaFeedbackStats(class), - RunSchemaFeedbackStats2(class), - FeedbackStatsVariant2(null), - ReferenceExampleId3(anyOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), + ChildRunIds(array), + ChildRunIdsItem(string), + DirectChildRunIds(array), + DirectChildRunIdsItem(string), + ParentRunIds(array), + ParentRunIdsItem(string), + RunSchemaFeedbackStats(class), + RunSchemaFeedbackStats2(class), + ReferenceExampleId(string), TotalTokens(int), PromptTokens(int), CompletionTokens(int), - TotalCost4(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost6(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost6(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), - PriceModelId3(anyOf), - PriceModelIdVariant1(string), - PriceModelIdVariant2(null), - FirstTokenTime3(anyOf), - FirstTokenTimeVariant1(DateTime), - FirstTokenTimeVariant2(null), + TotalCost(string), + PromptCost(string), + CompletionCost(string), + PriceModelId(string), + FirstTokenTime(DateTime), SessionId(string), AppPath(string), - LastQueuedAt(anyOf), - LastQueuedAtVariant1(DateTime), - LastQueuedAtVariant2(null), - InDataset(anyOf), - InDatasetVariant1(bool), - InDatasetVariant2(null), - ShareToken(anyOf), - ShareTokenVariant1(string), - ShareTokenVariant2(null), - TraceTier(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), - TraceFirstReceivedAt(anyOf), - TraceFirstReceivedAtVariant1(DateTime), - TraceFirstReceivedAtVariant2(null), - TtlSeconds(anyOf), - TtlSecondsVariant1(int), - TtlSecondsVariant2(null), + LastQueuedAt(DateTime), + InDataset(bool), + ShareToken(string), + TraceTier(ref), + TraceFirstReceivedAt(DateTime), + TtlSeconds(int), TraceUpgrade(bool), RunSchemaComparisonView(class), Name(string), - Inputs9(anyOf), - RunSchemaComparisonViewInputs(class), - InputsVariant2(null), - InputsPreview4(anyOf), - InputsPreviewVariant1(string), - InputsPreviewVariant2(null), + RunSchemaComparisonViewInputs(class), + InputsPreview(string), RunTypeEnum(ref), StartTime(DateTime), - EndTime9(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra9(anyOf), - RunSchemaComparisonViewExtra(class), - ExtraVariant2(null), - Error8(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + EndTime(DateTime), + RunSchemaComparisonViewExtra(class), + Error(string), ExecutionOrder(int), - Serialized4(anyOf), - RunSchemaComparisonViewSerialized(class), - SerializedVariant2(null), - Outputs13(anyOf), - RunSchemaComparisonViewOutputs(class), - OutputsVariant2(null), - OutputsPreview4(anyOf), - OutputsPreviewVariant1(string), - OutputsPreviewVariant2(null), - ParentRunId4(anyOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - ManifestId4(anyOf), - ManifestIdVariant1(string), - ManifestIdVariant2(null), - ManifestS3Id4(anyOf), - ManifestS3IdVariant1(string), - ManifestS3IdVariant2(null), - Events4(anyOf), - EventsVariant1(array), - RunSchemaComparisonViewEventsVariant1Item(class), - EventsVariant2(null), - Tags7(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - InputsS3Urls4(anyOf), - RunSchemaComparisonViewInputsS3Urls(class), - InputsS3UrlsVariant2(null), - OutputsS3Urls4(anyOf), - RunSchemaComparisonViewOutputsS3Urls(class), - OutputsS3UrlsVariant2(null), - S3Urls4(anyOf), - RunSchemaComparisonViewS3Urls(class), - S3UrlsVariant2(null), + RunSchemaComparisonViewSerialized(class), + RunSchemaComparisonViewOutputs(class), + OutputsPreview(string), + ParentRunId(string), + ManifestId(string), + ManifestS3Id(string), + Events(array), + RunSchemaComparisonViewEvent(class), + Tags(array), + TagsItem(string), + RunSchemaComparisonViewInputsS3Urls(class), + RunSchemaComparisonViewOutputsS3Urls(class), + RunSchemaComparisonViewS3Urls(class), TraceId(string), - DottedOrder(anyOf), - DottedOrderVariant1(string), - DottedOrderVariant2(null), + DottedOrder(string), Id(string), SessionId(string), - ReferenceExampleId4(anyOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), - TotalTokens2(anyOf), - TotalTokensVariant1(int), - TotalTokensVariant2(null), - PromptTokens2(anyOf), - PromptTokensVariant1(int), - PromptTokensVariant2(null), - CompletionTokens2(anyOf), - CompletionTokensVariant1(int), - CompletionTokensVariant2(null), - TotalCost5(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost7(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost7(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), + ReferenceExampleId(string), + TotalTokens(int), + PromptTokens(int), + CompletionTokens(int), + TotalCost(string), + PromptCost(string), + CompletionCost(string), Status(string), - FeedbackStats7(anyOf), - RunSchemaComparisonViewFeedbackStats(class), - RunSchemaComparisonViewFeedbackStats2(class), - FeedbackStatsVariant2(null), - AppPath(anyOf), - AppPathVariant1(string), - AppPathVariant2(null), + RunSchemaComparisonViewFeedbackStats(class), + RunSchemaComparisonViewFeedbackStats2(class), + AppPath(string), RunSchemaWithAnnotationQueueInfo(class), Name(string), - Inputs10(anyOf), - RunSchemaWithAnnotationQueueInfoInputs(class), - InputsVariant2(null), - InputsPreview5(anyOf), - InputsPreviewVariant1(string), - InputsPreviewVariant2(null), + RunSchemaWithAnnotationQueueInfoInputs(class), + InputsPreview(string), RunTypeEnum(ref), StartTime(DateTime), - EndTime10(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra10(anyOf), - RunSchemaWithAnnotationQueueInfoExtra(class), - ExtraVariant2(null), - Error9(anyOf), - ErrorVariant1(string), - ErrorVariant2(null), + EndTime(DateTime), + RunSchemaWithAnnotationQueueInfoExtra(class), + Error(string), ExecutionOrder(int), - Serialized5(anyOf), - RunSchemaWithAnnotationQueueInfoSerialized(class), - SerializedVariant2(null), - Outputs14(anyOf), - RunSchemaWithAnnotationQueueInfoOutputs(class), - OutputsVariant2(null), - OutputsPreview5(anyOf), - OutputsPreviewVariant1(string), - OutputsPreviewVariant2(null), - ParentRunId5(anyOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - ManifestId5(anyOf), - ManifestIdVariant1(string), - ManifestIdVariant2(null), - ManifestS3Id5(anyOf), - ManifestS3IdVariant1(string), - ManifestS3IdVariant2(null), - Events5(anyOf), - EventsVariant1(array), - RunSchemaWithAnnotationQueueInfoEventsVariant1Item(class), - EventsVariant2(null), - Tags8(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - InputsS3Urls5(anyOf), - RunSchemaWithAnnotationQueueInfoInputsS3Urls(class), - InputsS3UrlsVariant2(null), - OutputsS3Urls5(anyOf), - RunSchemaWithAnnotationQueueInfoOutputsS3Urls(class), - OutputsS3UrlsVariant2(null), - S3Urls5(anyOf), - RunSchemaWithAnnotationQueueInfoS3Urls(class), - S3UrlsVariant2(null), + RunSchemaWithAnnotationQueueInfoSerialized(class), + RunSchemaWithAnnotationQueueInfoOutputs(class), + OutputsPreview(string), + ParentRunId(string), + ManifestId(string), + ManifestS3Id(string), + Events(array), + RunSchemaWithAnnotationQueueInfoEvent(class), + Tags(array), + TagsItem(string), + RunSchemaWithAnnotationQueueInfoInputsS3Urls(class), + RunSchemaWithAnnotationQueueInfoOutputsS3Urls(class), + RunSchemaWithAnnotationQueueInfoS3Urls(class), TraceId(string), DottedOrder(string), Id(string), Status(string), - ChildRunIds4(anyOf), - ChildRunIdsVariant1(array), - ChildRunIdsVariant1Item(string), - ChildRunIdsVariant2(null), - DirectChildRunIds4(anyOf), - DirectChildRunIdsVariant1(array), - DirectChildRunIdsVariant1Item(string), - DirectChildRunIdsVariant2(null), - ParentRunIds4(anyOf), - ParentRunIdsVariant1(array), - ParentRunIdsVariant1Item(string), - ParentRunIdsVariant2(null), - FeedbackStats8(anyOf), - RunSchemaWithAnnotationQueueInfoFeedbackStats(class), - RunSchemaWithAnnotationQueueInfoFeedbackStats2(class), - FeedbackStatsVariant2(null), - ReferenceExampleId5(anyOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), + ChildRunIds(array), + ChildRunIdsItem(string), + DirectChildRunIds(array), + DirectChildRunIdsItem(string), + ParentRunIds(array), + ParentRunIdsItem(string), + RunSchemaWithAnnotationQueueInfoFeedbackStats(class), + RunSchemaWithAnnotationQueueInfoFeedbackStats2(class), + ReferenceExampleId(string), TotalTokens(int), PromptTokens(int), CompletionTokens(int), - TotalCost6(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost8(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost8(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), - PriceModelId4(anyOf), - PriceModelIdVariant1(string), - PriceModelIdVariant2(null), - FirstTokenTime4(anyOf), - FirstTokenTimeVariant1(DateTime), - FirstTokenTimeVariant2(null), + TotalCost(string), + PromptCost(string), + CompletionCost(string), + PriceModelId(string), + FirstTokenTime(DateTime), SessionId(string), AppPath(string), - LastQueuedAt2(anyOf), - LastQueuedAtVariant1(DateTime), - LastQueuedAtVariant2(null), - InDataset2(anyOf), - InDatasetVariant1(bool), - InDatasetVariant2(null), - ShareToken2(anyOf), - ShareTokenVariant1(string), - ShareTokenVariant2(null), - TraceTier2(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), - TraceFirstReceivedAt2(anyOf), - TraceFirstReceivedAtVariant1(DateTime), - TraceFirstReceivedAtVariant2(null), - TtlSeconds2(anyOf), - TtlSecondsVariant1(int), - TtlSecondsVariant2(null), + LastQueuedAt(DateTime), + InDataset(bool), + ShareToken(string), + TraceTier(ref), + TraceFirstReceivedAt(DateTime), + TtlSeconds(int), TraceUpgrade(bool), QueueRunId(string), - LastReviewedTime3(anyOf), - LastReviewedTimeVariant1(DateTime), - LastReviewedTimeVariant2(null), - AddedAt2(anyOf), - AddedAtVariant1(DateTime), - AddedAtVariant2(null), - EffectiveAddedAt(anyOf), - EffectiveAddedAtVariant1(DateTime), - EffectiveAddedAtVariant2(null), + LastReviewedTime(DateTime), + AddedAt(DateTime), + EffectiveAddedAt(DateTime), RunSelect(enum), RunShareSchema(class), RunId(string), ShareToken(string), RunStats(class), RunCount(int), - LatencyP502(anyOf), - LatencyP50Variant1(double), - LatencyP50Variant2(null), - LatencyP992(anyOf), - LatencyP99Variant1(double), - LatencyP99Variant2(null), - FirstTokenP502(anyOf), - FirstTokenP50Variant1(double), - FirstTokenP50Variant2(null), - FirstTokenP992(anyOf), - FirstTokenP99Variant1(double), - FirstTokenP99Variant2(null), - TotalTokens3(anyOf), - TotalTokensVariant1(int), - TotalTokensVariant2(null), - PromptTokens3(anyOf), - PromptTokensVariant1(int), - PromptTokensVariant2(null), - CompletionTokens3(anyOf), - CompletionTokensVariant1(int), - CompletionTokensVariant2(null), - MedianTokens2(anyOf), - MedianTokensVariant1(int), - MedianTokensVariant2(null), - LastRunStartTime2(anyOf), - LastRunStartTimeVariant1(DateTime), - LastRunStartTimeVariant2(null), - FeedbackStats9(anyOf), - RunStatsFeedbackStats(class), - FeedbackStatsVariant2(null), - RunFacets2(anyOf), - RunFacetsVariant1(array), - RunStatsRunFacetsVariant1Item(class), - RunFacetsVariant2(null), - ErrorRate2(anyOf), - ErrorRateVariant1(double), - ErrorRateVariant2(null), - StreamingRate2(anyOf), - StreamingRateVariant1(double), - StreamingRateVariant2(null), - TotalCost7(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost9(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost9(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), + LatencyP50(double), + LatencyP99(double), + FirstTokenP50(double), + FirstTokenP99(double), + TotalTokens(int), + PromptTokens(int), + CompletionTokens(int), + MedianTokens(int), + LastRunStartTime(DateTime), + RunStatsFeedbackStats(class), + RunFacets(array), + RunStatsRunFacet(class), + ErrorRate(double), + StreamingRate(double), + TotalCost(string), + PromptCost(string), + CompletionCost(string), RunTypeEnum(enum), RunnableConfig(class), Tags(array), @@ -2982,16 +1700,11 @@ CallbacksVariant1(array), RunnableConfigCallback(class), RunnableConfigCallbacks(class), - CallbacksVariant3(null), RunName(string), - MaxConcurrency(anyOf), - MaxConcurrencyVariant1(int), - MaxConcurrencyVariant2(null), + MaxConcurrency(int), RecursionLimit(int), RunnableConfigConfigurable(class), - RunId4(anyOf), - RunIdVariant1(string), - RunIdVariant2(null), + RunId(string), RunsFilterDataSourceTypeEnum(enum), RunsGenerateQueryFeedbackKeys(enum), SSOConfirmEmailRequest(class), @@ -3003,9 +1716,7 @@ Email(string), SamlProviderId(string), SSOEmailVerificationStatusResponse(class), - EmailConfirmedAt2(anyOf), - EmailConfirmedAtVariant1(DateTime), - EmailConfirmedAtVariant2(null), + EmailConfirmedAt(DateTime), SSOProvider(class), Id(string), OrganizationId(string), @@ -3013,12 +1724,8 @@ DefaultWorkspaceRoleId(string), DefaultWorkspaceIds(array), DefaultWorkspaceIdsItem(string), - MetadataUrl(anyOf), - MetadataUrlVariant1(string), - MetadataUrlVariant2(null), - MetadataXml(anyOf), - MetadataXmlVariant1(string), - MetadataXmlVariant2(null), + MetadataUrl(string), + MetadataXml(string), SSOProviderSlim(class), ProviderId(string), OrganizationId(string), @@ -3027,35 +1734,21 @@ DefaultWorkspaceRoleId(string), DefaultWorkspaceIds(array), DefaultWorkspaceIdsItem(string), - MetadataXml2(anyOf), - MetadataXmlVariant1(string), - MetadataXmlVariant2(null), - MetadataUrl2(anyOf), - MetadataUrlVariant1(string), - MetadataUrlVariant2(null), + MetadataXml(string), + MetadataUrl(string), SSOSettingsCreateAttributeMapping(class), AttributeMapping(string), SSOSettingsUpdate(class), - DefaultWorkspaceRoleId(anyOf), - DefaultWorkspaceRoleIdVariant1(string), - DefaultWorkspaceRoleIdVariant2(null), - DefaultWorkspaceIds(anyOf), - DefaultWorkspaceIdsVariant1(array), - DefaultWorkspaceIdsVariant1Item(string), - DefaultWorkspaceIdsVariant2(null), - MetadataUrl3(anyOf), - MetadataUrlVariant1(string), - MetadataUrlVariant2(null), - MetadataXml3(anyOf), - MetadataXmlVariant1(string), - MetadataXmlVariant2(null), + DefaultWorkspaceRoleId(string), + DefaultWorkspaceIds(array), + DefaultWorkspaceIdsItem(string), + MetadataUrl(string), + MetadataXml(string), SearchDatasetRequest(class), SearchDatasetRequestInputs(class), Limit(int), Debug(bool), - Filter7(anyOf), - FilterVariant1(string), - FilterVariant2(null), + Filter(string), SearchDatasetResponse(class), Examples(array), SearchedFewShotExample(ref), @@ -3063,25 +1756,19 @@ SearchedFewShotExampleInputs(class), SearchedFewShotExampleOutputs(class), Id(string), - DebugInfo(anyOf), - SearchedFewShotExampleDebugInfo(class), - DebugInfoVariant2(null), + SearchedFewShotExampleDebugInfo(class), SecretKey(class), Key(string), SecretUpsert(class), Key(string), - Value7(anyOf), - ValueVariant1(string), - ValueVariant2(null), + Value(string), ServiceAccount(class), Id(string), CreatedAt(DateTime), UpdatedAt(DateTime), Name(string), OrganizationId(string), - DefaultWorkspaceId(anyOf), - DefaultWorkspaceIdVariant1(string), - DefaultWorkspaceIdVariant2(null), + DefaultWorkspaceId(string), ServiceAccountCreateRequest(class), Name(string), ServiceAccountCreateResponse(class), @@ -3090,9 +1777,7 @@ UpdatedAt(DateTime), Name(string), OrganizationId(string), - DefaultWorkspaceId2(anyOf), - DefaultWorkspaceIdVariant1(string), - DefaultWorkspaceIdVariant2(null), + DefaultWorkspaceId(string), OrganizationIdentityId(string), ServiceAccountDeleteResponse(class), Id(string), @@ -3100,9 +1785,7 @@ UpdatedAt(DateTime), Name(string), OrganizationId(string), - DefaultWorkspaceId3(anyOf), - DefaultWorkspaceIdVariant1(string), - DefaultWorkspaceIdVariant2(null), + DefaultWorkspaceId(string), SessionFeedbackDelta(class), SessionFeedbackDeltaFeedbackDeltas(class), FeedbackDelta(ref), @@ -3117,19 +1800,13 @@ CustomChartsDataPoint(ref), Id(string), Title(string), - Description28(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Metadata19(anyOf), - SingleCustomChartResponseMetadata(class), - MetadataVariant2(null), + Description(string), + SingleCustomChartResponseMetadata(class), Index(int), CustomChartType(ref), Series(array), CustomChartSeries(ref), - CommonFilters4(anyOf), - CustomChartSeriesFilters(ref), - CommonFiltersVariant2(null), + CustomChartSeriesFilters(ref), SingleCustomChartResponseBase(class), Data(array), CustomChartsDataPoint(ref), @@ -3138,40 +1815,22 @@ SourceType(enum), StripeBusinessBillingInfo(class), Name(string), - Address(anyOf), - StripeCustomerAddress(ref), - AddressVariant2(null), + StripeCustomerAddress(ref), StripeBusinessInfoInput(class), - CompanyInfo(anyOf), - StripeBusinessBillingInfo(ref), - CompanyInfoVariant2(null), - TaxId(anyOf), - StripeTaxId(ref), - TaxIdVariant2(null), - InvoiceEmail(anyOf), - InvoiceEmailVariant1(string), - InvoiceEmailVariant2(null), + StripeBusinessBillingInfo(ref), + StripeTaxId(ref), + InvoiceEmail(string), IsBusiness(bool), StripeBusinessInfoOutput(class), - CompanyInfo2(anyOf), - StripeBusinessBillingInfo(ref), - CompanyInfoVariant2(null), - TaxId2(anyOf), - StripeTaxId(ref), - TaxIdVariant2(null), - InvoiceEmail2(anyOf), - InvoiceEmailVariant1(string), - InvoiceEmailVariant2(null), + StripeBusinessBillingInfo(ref), + StripeTaxId(ref), + InvoiceEmail(string), IsBusiness(bool), StripeCustomerAddress(class), Line1(string), - Line2(anyOf), - Line2Variant1(string), - Line2Variant2(null), + Line2(string), City(string), - State(anyOf), - StateVariant1(string), - StateVariant2(null), + State(string), PostalCode(string), Country(string), StripeCustomerBillingInfo(class), @@ -3181,31 +1840,19 @@ StripeCustomerBillingInfo(ref), SetupIntent(string), StripePaymentMethodInfo(class), - Brand(anyOf), - BrandVariant1(string), - BrandVariant2(null), - Last4(anyOf), - Last4Variant1(string), - Last4Variant2(null), - ExpMonth(anyOf), - ExpMonthVariant1(int), - ExpMonthVariant2(null), - ExpYear(anyOf), - ExpYearVariant1(int), - ExpYearVariant2(null), - Email4(anyOf), - EmailVariant1(string), - EmailVariant2(null), + Brand(string), + Last4(string), + ExpMonth(int), + ExpYear(int), + Email(string), StripeSetupIntentResponse(class), ClientSecret(string), StripeTaxId(class), Value(string), Type(string), TTLSettings(class), - TenantId6(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), - TraceTier3(ref), + TenantId(string), + TraceTier(ref), ApplyToAllProjects(bool), Id(string), OrganizationId(string), @@ -3217,29 +1864,19 @@ Count(int), TagKey(class), Key(string), - Description29(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), CreatedAt(DateTime), UpdatedAt(DateTime), TagKeyCreate(class), Key(string), - Description30(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), TagKeyUpdate(class), - Key(anyOf), - KeyVariant1(string), - KeyVariant2(null), - Description31(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Key(string), + Description(string), TagKeyWithValues(class), Key(string), - Description32(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), CreatedAt(DateTime), UpdatedAt(DateTime), @@ -3247,9 +1884,7 @@ TagValue(ref), TagKeyWithValuesAndTaggings(class), Key(string), - Description33(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), CreatedAt(DateTime), UpdatedAt(DateTime), @@ -3257,30 +1892,20 @@ TagValueWithTaggings(ref), TagValue(class), Value(string), - Description34(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), TagKeyId(string), CreatedAt(DateTime), UpdatedAt(DateTime), TagValueCreate(class), Value(string), - Description35(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), TagValueUpdate(class), - Value8(anyOf), - ValueVariant1(string), - ValueVariant2(null), - Description36(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Value(string), + Description(string), TagValueWithTaggings(class), Value(string), - Description37(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), + Description(string), Id(string), TagKeyId(string), CreatedAt(DateTime), @@ -3323,36 +1948,22 @@ ShareTokensItem(string), TenantCreate(class), Id(string), - OrganizationId4(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + OrganizationId(string), DisplayName(string), - TenantHandle(anyOf), - TenantHandleVariant1(string), - TenantHandleVariant2(null), + TenantHandle(string), IsPersonal(bool), TenantForUser(class), Id(string), - OrganizationId5(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + OrganizationId(string), CreatedAt(DateTime), DisplayName(string), IsPersonal(bool), - TenantHandle2(anyOf), - TenantHandleVariant1(string), - TenantHandleVariant2(null), + TenantHandle(string), ReadOnly(bool), - RoleId10(anyOf), - RoleIdVariant1(string), - RoleIdVariant2(null), - RoleName6(anyOf), - RoleNameVariant1(string), - RoleNameVariant2(null), - Permissions(anyOf), - PermissionsVariant1(array), - PermissionsVariant1Item(string), - PermissionsVariant2(null), + RoleId(string), + RoleName(string), + Permissions(array), + PermissionsItem(string), TenantMembers(class), TenantId(string), Members(array), @@ -3364,26 +1975,16 @@ ShareToken(string), CreatedAt(DateTime), DatasetId(string), - DatasetName3(anyOf), - DatasetNameVariant1(string), - DatasetNameVariant2(null), + DatasetName(string), TenantShareRunToken(class), TenantShareRunTokenType(enum), ShareToken(string), CreatedAt(DateTime), RunId(string), - RunName3(anyOf), - RunNameVariant1(string), - RunNameVariant2(null), - RunType4(anyOf), - RunTypeVariant1(string), - RunTypeVariant2(null), - SessionId6(anyOf), - SessionIdVariant1(string), - SessionIdVariant2(null), - SessionName2(anyOf), - SessionNameVariant1(string), - SessionNameVariant2(null), + RunName(string), + RunType(string), + SessionId(string), + SessionName(string), TenantShareTokensResponse(class), Entities(array), EntitiesItem(oneOf), @@ -3399,239 +2000,119 @@ DashboardsCount(int), TenantUsageLimitInfo(class), InRejectSet(bool), - UsageLimitType(anyOf), - TenantUsageLimitType(ref), - UsageLimitTypeVariant2(null), - TenantLimit(anyOf), - TenantLimitVariant1(int), - TenantLimitVariant2(null), + TenantUsageLimitType(ref), + TenantLimit(int), TenantUsageLimitType(enum), TimedeltaInput(class), Days(int), Minutes(int), Hours(int), - TraceTier3(enum), + TraceTier(enum), TracerSession(class), StartTime(DateTime), - EndTime11(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra11(anyOf), - TracerSessionExtra(class), - ExtraVariant2(null), + EndTime(DateTime), + TracerSessionExtra(class), Name(string), - Description38(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - DefaultDatasetId(anyOf), - DefaultDatasetIdVariant1(string), - DefaultDatasetIdVariant2(null), - ReferenceDatasetId(anyOf), - ReferenceDatasetIdVariant1(string), - ReferenceDatasetIdVariant2(null), - TraceTier4(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), + Description(string), + DefaultDatasetId(string), + ReferenceDatasetId(string), + TraceTier(ref), Id(string), - RunCount(anyOf), - RunCountVariant1(int), - RunCountVariant2(null), - LatencyP503(anyOf), - LatencyP50Variant1(double), - LatencyP50Variant2(null), - LatencyP993(anyOf), - LatencyP99Variant1(double), - LatencyP99Variant2(null), - FirstTokenP503(anyOf), - FirstTokenP50Variant1(double), - FirstTokenP50Variant2(null), - FirstTokenP993(anyOf), - FirstTokenP99Variant1(double), - FirstTokenP99Variant2(null), - TotalTokens4(anyOf), - TotalTokensVariant1(int), - TotalTokensVariant2(null), - PromptTokens4(anyOf), - PromptTokensVariant1(int), - PromptTokensVariant2(null), - CompletionTokens4(anyOf), - CompletionTokensVariant1(int), - CompletionTokensVariant2(null), - TotalCost8(anyOf), - TotalCostVariant1(string), - TotalCostVariant2(null), - PromptCost10(anyOf), - PromptCostVariant1(string), - PromptCostVariant2(null), - CompletionCost10(anyOf), - CompletionCostVariant1(string), - CompletionCostVariant2(null), + RunCount(int), + LatencyP50(double), + LatencyP99(double), + FirstTokenP50(double), + FirstTokenP99(double), + TotalTokens(int), + PromptTokens(int), + CompletionTokens(int), + TotalCost(string), + PromptCost(string), + CompletionCost(string), TenantId(string), - LastRunStartTime3(anyOf), - LastRunStartTimeVariant1(DateTime), - LastRunStartTimeVariant2(null), - LastRunStartTimeLive(anyOf), - LastRunStartTimeLiveVariant1(DateTime), - LastRunStartTimeLiveVariant2(null), - FeedbackStats10(anyOf), - TracerSessionFeedbackStats(class), - FeedbackStatsVariant2(null), - SessionFeedbackStats(anyOf), - TracerSessionSessionFeedbackStats(class), - SessionFeedbackStatsVariant2(null), - RunFacets3(anyOf), - RunFacetsVariant1(array), - TracerSessionRunFacetsVariant1Item(class), - RunFacetsVariant2(null), - ErrorRate3(anyOf), - ErrorRateVariant1(double), - ErrorRateVariant2(null), - StreamingRate3(anyOf), - StreamingRateVariant1(double), - StreamingRateVariant2(null), - TestRunNumber(anyOf), - TestRunNumberVariant1(int), - TestRunNumberVariant2(null), + LastRunStartTime(DateTime), + LastRunStartTimeLive(DateTime), + TracerSessionFeedbackStats(class), + TracerSessionSessionFeedbackStats(class), + RunFacets(array), + TracerSessionRunFacet(class), + ErrorRate(double), + StreamingRate(double), + TestRunNumber(int), TracerSessionCreate(class), StartTime(DateTime), - EndTime12(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra12(anyOf), - TracerSessionCreateExtra(class), - ExtraVariant2(null), + EndTime(DateTime), + TracerSessionCreateExtra(class), Name(string), - Description39(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - DefaultDatasetId2(anyOf), - DefaultDatasetIdVariant1(string), - DefaultDatasetIdVariant2(null), - ReferenceDatasetId2(anyOf), - ReferenceDatasetIdVariant1(string), - ReferenceDatasetIdVariant2(null), - TraceTier5(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), - Id11(anyOf), - IdVariant1(string), - IdVariant2(null), + Description(string), + DefaultDatasetId(string), + ReferenceDatasetId(string), + TraceTier(ref), + Id(string), TracerSessionUpdate(class), - Name11(anyOf), - NameVariant1(string), - NameVariant2(null), - Description40(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - DefaultDatasetId3(anyOf), - DefaultDatasetIdVariant1(string), - DefaultDatasetIdVariant2(null), - EndTime13(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra13(anyOf), - TracerSessionUpdateExtra(class), - ExtraVariant2(null), - TraceTier6(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), + Name(string), + Description(string), + DefaultDatasetId(string), + EndTime(DateTime), + TracerSessionUpdateExtra(class), + TraceTier(ref), TracerSessionWithoutVirtualFields(class), StartTime(DateTime), - EndTime14(anyOf), - EndTimeVariant1(DateTime), - EndTimeVariant2(null), - Extra14(anyOf), - TracerSessionWithoutVirtualFieldsExtra(class), - ExtraVariant2(null), + EndTime(DateTime), + TracerSessionWithoutVirtualFieldsExtra(class), Name(string), - Description41(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - DefaultDatasetId4(anyOf), - DefaultDatasetIdVariant1(string), - DefaultDatasetIdVariant2(null), - ReferenceDatasetId3(anyOf), - ReferenceDatasetIdVariant1(string), - ReferenceDatasetIdVariant2(null), - TraceTier7(anyOf), - TraceTier3(ref), - TraceTierVariant2(null), + Description(string), + DefaultDatasetId(string), + ReferenceDatasetId(string), + TraceTier(ref), Id(string), TenantId(string), - LastRunStartTimeLive2(anyOf), - LastRunStartTimeLiveVariant1(DateTime), - LastRunStartTimeLiveVariant2(null), + LastRunStartTimeLive(DateTime), TriggerRulesRequest(class), - RuleIds(anyOf), - RuleIdsVariant1(array), - RuleIdsVariant1Item(string), - RuleIdsVariant2(null), - DatasetId6(anyOf), - DatasetIdVariant1(string), - DatasetIdVariant2(null), + RuleIds(array), + RuleIdsItem(string), + DatasetId(string), UpdateFeedbackConfigSchema(class), FeedbackKey(string), - FeedbackConfig6(anyOf), - FeedbackConfig(ref), - FeedbackConfigVariant2(null), - IsLowerScoreBetter3(anyOf), - IsLowerScoreBetterVariant1(bool), - IsLowerScoreBetterVariant2(null), + FeedbackConfig(ref), + IsLowerScoreBetter(bool), UpdateRepoRequest(class), - Description42(anyOf), - DescriptionVariant1(string), - DescriptionVariant2(null), - Readme4(anyOf), - ReadmeVariant1(string), - ReadmeVariant2(null), - Tags9(anyOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - IsPublic2(anyOf), - IsPublicVariant1(bool), - IsPublicVariant2(null), - IsArchived(anyOf), - IsArchivedVariant1(bool), - IsArchivedVariant2(null), + Description(string), + Readme(string), + Tags(array), + TagsItem(string), + IsPublic(bool), + IsArchived(bool), UpdateRoleRequest(class), DisplayName(string), Description(string), Permissions(array), PermissionsItem(string), UpsertTTLSettingsRequest(class), - TenantId7(anyOf), - TenantIdVariant1(string), - TenantIdVariant2(null), - TraceTier3(ref), + TenantId(string), + TraceTier(ref), ApplyToAllProjects(bool), UpsertUsageLimit(class), - UsageLimitType2(ref), + UsageLimitType(ref), LimitValue(int), Id(string), UsageLimit(class), - UsageLimitType2(ref), + UsageLimitType(ref), LimitValue(int), Id(string), TenantId(string), CreatedAt(DateTime), UpdatedAt(DateTime), - UsageLimitType2(enum), + UsageLimitType(enum), UserWithPassword(class), Id(string), LsUserId(string), CreatedAt(DateTime), UpdatedAt(DateTime), Email(string), - FullName10(anyOf), - FullNameVariant1(string), - FullNameVariant2(null), - AvatarUrl3(anyOf), - AvatarUrlVariant1(string), - AvatarUrlVariant2(null), - Password7(anyOf), - PasswordVariant1(string), - PasswordVariant2(null), + FullName(string), + AvatarUrl(string), + Password(string), ValidationError(class), Loc(array), LocItem(anyOf), @@ -3642,227 +2123,115 @@ WorkspaceCreate(class), Id(string), DisplayName(string), - TenantHandle3(anyOf), - TenantHandleVariant1(string), - TenantHandleVariant2(null), + TenantHandle(string), WorkspacePatch(class), DisplayName(string), AppHubCrudTenantsTenant(class), Id(string), DisplayName(string), CreatedAt(DateTime), - TenantHandle4(anyOf), - TenantHandleVariant1(string), - TenantHandleVariant2(null), + TenantHandle(string), AppSchemasTenant(class), Id(string), - OrganizationId6(anyOf), - OrganizationIdVariant1(string), - OrganizationIdVariant2(null), + OrganizationId(string), CreatedAt(DateTime), DisplayName(string), IsPersonal(bool), - TenantHandle5(anyOf), - TenantHandleVariant1(string), - TenantHandleVariant2(null), + TenantHandle(string), CreateRunRequest(class), Name(string), - Inputs11(oneOf), - CreateRunRequestInputs(class), - InputsVariant2(null), + CreateRunRequestInputs(class), CreateRunRequestRunType(enum), - StartTime7(oneOf), + StartTime(oneOf), StartTimeVariant1(string), StartTimeVariant2(double), - StartTimeVariant3(null), - EndTime15(oneOf), + EndTime(oneOf), EndTimeVariant1(string), EndTimeVariant2(double), - EndTimeVariant3(null), - Extra15(oneOf), - CreateRunRequestExtra(class), - ExtraVariant2(null), - Error10(oneOf), - ErrorVariant1(string), - ErrorVariant2(null), - Serialized6(oneOf), - CreateRunRequestSerialized(class), - SerializedVariant2(null), - Outputs15(oneOf), - CreateRunRequestOutputs(class), - OutputsVariant2(null), - ParentRunId6(oneOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - Events6(oneOf), - EventsVariant1(array), - CreateRunRequestEventsVariant1Item(class), - EventsVariant2(null), - Tags10(oneOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - TraceId(oneOf), - TraceIdVariant1(string), - TraceIdVariant2(null), - DottedOrder2(oneOf), - DottedOrderVariant1(string), - DottedOrderVariant2(null), - Id12(oneOf), - IdVariant1(string), - IdVariant2(null), - SessionId7(oneOf), - SessionIdVariant1(string), - SessionIdVariant2(null), - SessionName3(oneOf), - SessionNameVariant1(string), - SessionNameVariant2(null), - ReferenceExampleId6(oneOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), - InputAttachments(oneOf), - CreateRunRequestInputAttachments(class), - InputAttachmentsVariant2(null), - OutputAttachments(oneOf), - CreateRunRequestOutputAttachments(class), - OutputAttachmentsVariant2(null), + CreateRunRequestExtra(class), + Error(string), + CreateRunRequestSerialized(class), + CreateRunRequestOutputs(class), + ParentRunId(string), + Events(array), + CreateRunRequestEvent(class), + Tags(array), + TagsItem(string), + TraceId(string), + DottedOrder(string), + Id(string), + SessionId(string), + SessionName(string), + ReferenceExampleId(string), + CreateRunRequestInputAttachments(class), + CreateRunRequestOutputAttachments(class), BatchIngestRunsRequest(class), Post(array), BatchIngestRunsRequestPostItem(class), Name(string), BatchIngestRunsRequestPostItemInputs(class), BatchIngestRunsRequestPostItemRunType(enum), - StartTime8(oneOf), + StartTime2(oneOf), StartTimeVariant1(string), StartTimeVariant2(double), - EndTime16(oneOf), + EndTime2(oneOf), EndTimeVariant1(string), EndTimeVariant2(double), - EndTimeVariant3(null), - Extra16(oneOf), - BatchIngestRunsRequestPostItemExtra(class), - ExtraVariant2(null), - Error11(oneOf), - ErrorVariant1(string), - ErrorVariant2(null), - Serialized7(oneOf), - BatchIngestRunsRequestPostItemSerialized(class), - SerializedVariant2(null), - Outputs16(oneOf), - BatchIngestRunsRequestPostItemOutputs(class), - OutputsVariant2(null), - ParentRunId7(oneOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - Events7(oneOf), - EventsVariant1(array), - BatchIngestRunsRequestPostItemEventsVariant1Item(class), - EventsVariant2(null), - Tags11(oneOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), + BatchIngestRunsRequestPostItemExtra(class), + Error(string), + BatchIngestRunsRequestPostItemSerialized(class), + BatchIngestRunsRequestPostItemOutputs(class), + ParentRunId(string), + Events(array), + BatchIngestRunsRequestPostItemEvent(class), + Tags(array), + TagsItem(string), TraceId(string), DottedOrder(string), Id(string), - SessionId8(oneOf), - SessionIdVariant1(string), - SessionIdVariant2(null), - SessionName4(oneOf), - SessionNameVariant1(string), - SessionNameVariant2(null), - ReferenceExampleId7(oneOf), - ReferenceExampleIdVariant1(string), - ReferenceExampleIdVariant2(null), - InputAttachments2(oneOf), - BatchIngestRunsRequestPostItemInputAttachments(class), - InputAttachmentsVariant2(null), - OutputAttachments2(oneOf), - BatchIngestRunsRequestPostItemOutputAttachments(class), - OutputAttachmentsVariant2(null), + SessionId(string), + SessionName(string), + ReferenceExampleId(string), + BatchIngestRunsRequestPostItemInputAttachments(class), + BatchIngestRunsRequestPostItemOutputAttachments(class), Patch(array), BatchIngestRunsRequestPatchItem(class), TraceId(string), DottedOrder(string), - ParentRunId8(oneOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - EndTime17(oneOf), + ParentRunId(string), + EndTime3(oneOf), EndTimeVariant1(string), EndTimeVariant2(double), - Error12(oneOf), - ErrorVariant1(string), - ErrorVariant2(null), - Inputs12(oneOf), - BatchIngestRunsRequestPatchItemInputs(class), - InputsVariant2(null), - Outputs17(oneOf), - BatchIngestRunsRequestPatchItemOutputs(class), - OutputsVariant2(null), - Events8(oneOf), - EventsVariant1(array), - BatchIngestRunsRequestPatchItemEventsVariant1Item(class), - EventsVariant2(null), - Tags12(oneOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - Extra17(oneOf), - BatchIngestRunsRequestPatchItemExtra(class), - ExtraVariant2(null), - InputAttachments3(oneOf), - BatchIngestRunsRequestPatchItemInputAttachments(class), - InputAttachmentsVariant2(null), - OutputAttachments3(oneOf), - BatchIngestRunsRequestPatchItemOutputAttachments(class), - OutputAttachmentsVariant2(null), + Error(string), + BatchIngestRunsRequestPatchItemInputs(class), + BatchIngestRunsRequestPatchItemOutputs(class), + Events(array), + BatchIngestRunsRequestPatchItemEvent(class), + Tags(array), + TagsItem(string), + BatchIngestRunsRequestPatchItemExtra(class), + BatchIngestRunsRequestPatchItemInputAttachments(class), + BatchIngestRunsRequestPatchItemOutputAttachments(class), Id(string), UpdateRunRequest(class), - TraceId2(oneOf), - TraceIdVariant1(string), - TraceIdVariant2(null), - DottedOrder3(oneOf), - DottedOrderVariant1(string), - DottedOrderVariant2(null), - ParentRunId9(oneOf), - ParentRunIdVariant1(string), - ParentRunIdVariant2(null), - EndTime18(oneOf), + TraceId(string), + DottedOrder(string), + ParentRunId(string), + EndTime4(oneOf), EndTimeVariant1(string), EndTimeVariant2(double), - EndTimeVariant3(null), - Error13(oneOf), - ErrorVariant1(string), - ErrorVariant2(null), - Inputs13(oneOf), - UpdateRunRequestInputs(class), - InputsVariant2(null), - Outputs18(oneOf), - UpdateRunRequestOutputs(class), - OutputsVariant2(null), - Events9(oneOf), - EventsVariant1(array), - UpdateRunRequestEventsVariant1Item(class), - EventsVariant2(null), - Tags13(oneOf), - TagsVariant1(array), - TagsVariant1Item(string), - TagsVariant2(null), - Extra18(oneOf), - UpdateRunRequestExtra(class), - ExtraVariant2(null), - InputAttachments4(oneOf), - UpdateRunRequestInputAttachments(class), - InputAttachmentsVariant2(null), - OutputAttachments4(oneOf), - UpdateRunRequestOutputAttachments(class), - OutputAttachmentsVariant2(null), - SessionId9(oneOf), - SessionIdVariant1(string), - SessionIdVariant2(null), - SessionName5(oneOf), - SessionNameVariant1(string), - SessionNameVariant2(null), + Error(string), + UpdateRunRequestInputs(class), + UpdateRunRequestOutputs(class), + Events(array), + UpdateRunRequestEvent(class), + Tags(array), + TagsItem(string), + UpdateRunRequestExtra(class), + UpdateRunRequestInputAttachments(class), + UpdateRunRequestOutputAttachments(class), + SessionId(string), + SessionName(string), TracerSessionUpdate(ref), TracerSessionCreate(ref), FilterViewCreate(ref), @@ -3998,60 +2367,34 @@ CreateCommentRequest(ref), ReadTracerSessionApiV1SessionsSessionIdGetSessionId(string), ReadTracerSessionApiV1SessionsSessionIdGetIncludeStats(bool), - ReadTracerSessionApiV1SessionsSessionIdGetAccept(anyOf), - ReadTracerSessionApiV1SessionsSessionIdGetAcceptVariant1(string), - ReadTracerSessionApiV1SessionsSessionIdGetAcceptVariant2(null), + ReadTracerSessionApiV1SessionsSessionIdGetAccept(string), UpdateTracerSessionApiV1SessionsSessionIdPatchSessionId(string), DeleteTracerSessionApiV1SessionsSessionIdDeleteSessionId(string), - ReadTracerSessionsApiV1SessionsGetReferenceFree(anyOf), - ReadTracerSessionsApiV1SessionsGetReferenceFreeVariant1(bool), - ReadTracerSessionsApiV1SessionsGetReferenceFreeVariant2(null), - ReadTracerSessionsApiV1SessionsGetReferenceDataset(anyOf), - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant1(array), - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant1Item(string), - ReadTracerSessionsApiV1SessionsGetReferenceDatasetVariant2(null), - ReadTracerSessionsApiV1SessionsGetId(anyOf), - ReadTracerSessionsApiV1SessionsGetIdVariant1(array), - ReadTracerSessionsApiV1SessionsGetIdVariant1Item(string), - ReadTracerSessionsApiV1SessionsGetIdVariant2(null), - ReadTracerSessionsApiV1SessionsGetName(anyOf), - ReadTracerSessionsApiV1SessionsGetNameVariant1(string), - ReadTracerSessionsApiV1SessionsGetNameVariant2(null), - ReadTracerSessionsApiV1SessionsGetNameContains(anyOf), - ReadTracerSessionsApiV1SessionsGetNameContainsVariant1(string), - ReadTracerSessionsApiV1SessionsGetNameContainsVariant2(null), - ReadTracerSessionsApiV1SessionsGetDatasetVersion(anyOf), - ReadTracerSessionsApiV1SessionsGetDatasetVersionVariant1(string), - ReadTracerSessionsApiV1SessionsGetDatasetVersionVariant2(null), + ReadTracerSessionsApiV1SessionsGetReferenceFree(bool), + ReadTracerSessionsApiV1SessionsGetReferenceDataset(array), + ReadTracerSessionsApiV1SessionsGetReferenceDatasetItem(string), + ReadTracerSessionsApiV1SessionsGetId(array), + ReadTracerSessionsApiV1SessionsGetIdItem(string), + ReadTracerSessionsApiV1SessionsGetName(string), + ReadTracerSessionsApiV1SessionsGetNameContains(string), + ReadTracerSessionsApiV1SessionsGetDatasetVersion(string), SessionSortableColumns(ref), ReadTracerSessionsApiV1SessionsGetSortByDesc(bool), - ReadTracerSessionsApiV1SessionsGetMetadata(anyOf), - ReadTracerSessionsApiV1SessionsGetMetadataVariant1(string), - ReadTracerSessionsApiV1SessionsGetMetadataVariant2(null), - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKey(anyOf), - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKeyVariant1(string), - ReadTracerSessionsApiV1SessionsGetSortByFeedbackKeyVariant2(null), + ReadTracerSessionsApiV1SessionsGetMetadata(string), + ReadTracerSessionsApiV1SessionsGetSortByFeedbackKey(string), ReadTracerSessionsApiV1SessionsGetOffset(int), ReadTracerSessionsApiV1SessionsGetLimit(int), - ReadTracerSessionsApiV1SessionsGetTagValueId(anyOf), - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant1(array), - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant1Item(string), - ReadTracerSessionsApiV1SessionsGetTagValueIdVariant2(null), + ReadTracerSessionsApiV1SessionsGetTagValueId(array), + ReadTracerSessionsApiV1SessionsGetTagValueIdItem(string), ReadTracerSessionsApiV1SessionsGetFacets(bool), - ReadTracerSessionsApiV1SessionsGetAccept(anyOf), - ReadTracerSessionsApiV1SessionsGetAcceptVariant1(string), - ReadTracerSessionsApiV1SessionsGetAcceptVariant2(null), + ReadTracerSessionsApiV1SessionsGetAccept(string), CreateTracerSessionApiV1SessionsPostUpsert(bool), DeleteTracerSessionsApiV1SessionsDeleteSessionIds(array), DeleteTracerSessionsApiV1SessionsDeleteSessionIdsItem(string), ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetSessionId(string), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeys(anyOf), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant1(array), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant1Item(string), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysVariant2(null), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTime(anyOf), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTimeVariant1(DateTime), - ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTimeVariant2(null), + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeys(array), + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetMetadataKeysItem(string), + ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetStartTime(DateTime), ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetK(int), ReadTracerSessionsRunsMetadataApiV1SessionsSessionIdMetadataGetRootRunsOnly(bool), ReadFilterViewsApiV1SessionsSessionIdViewsGetSessionId(string), @@ -4064,9 +2407,7 @@ DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteViewId(string), ListOrganizationsApiV1OrgsGetSkipCreate(bool), OrganizationDashboardType(ref), - GetDashboardApiV1OrgsCurrentDashboardGetColorScheme(anyOf), - OrganizationDashboardColorScheme(ref), - GetDashboardApiV1OrgsCurrentDashboardGetColorSchemeVariant2(null), + OrganizationDashboardColorScheme(ref), DeleteOrganizationRolesApiV1OrgsCurrentRolesRoleIdDeleteRoleId(string), UpdateOrganizationRolesApiV1OrgsCurrentRolesRoleIdPatchRoleId(string), DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteIdentityId(string), @@ -4082,107 +2423,66 @@ GetSsoSettingsApiV1SsoSettingsSsoLoginSlugGetSsoLoginSlug(string), DeleteApiKeyApiV1ApiKeyApiKeyIdDeleteApiKeyId(string), DeletePersonalAccessTokenApiV1ApiKeyCurrentPatIdDeletePatId(string), - CountExamplesApiV1ExamplesCountGetId(anyOf), - CountExamplesApiV1ExamplesCountGetIdVariant1(array), - CountExamplesApiV1ExamplesCountGetIdVariant1Item(string), - CountExamplesApiV1ExamplesCountGetIdVariant2(null), + CountExamplesApiV1ExamplesCountGetId(array), + CountExamplesApiV1ExamplesCountGetIdItem(string), CountExamplesApiV1ExamplesCountGetAsOf(anyOf), CountExamplesApiV1ExamplesCountGetAsOfVariant1(DateTime), CountExamplesApiV1ExamplesCountGetAsOfVariant2(string), - CountExamplesApiV1ExamplesCountGetMetadata(anyOf), - CountExamplesApiV1ExamplesCountGetMetadataVariant1(string), - CountExamplesApiV1ExamplesCountGetMetadataVariant2(null), - CountExamplesApiV1ExamplesCountGetFullTextContains(anyOf), - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant1(array), - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant1Item(string), - CountExamplesApiV1ExamplesCountGetFullTextContainsVariant2(null), - CountExamplesApiV1ExamplesCountGetSplits(anyOf), - CountExamplesApiV1ExamplesCountGetSplitsVariant1(array), - CountExamplesApiV1ExamplesCountGetSplitsVariant1Item(string), - CountExamplesApiV1ExamplesCountGetSplitsVariant2(null), - CountExamplesApiV1ExamplesCountGetDataset(anyOf), - CountExamplesApiV1ExamplesCountGetDatasetVariant1(string), - CountExamplesApiV1ExamplesCountGetDatasetVariant2(null), - CountExamplesApiV1ExamplesCountGetFilter(anyOf), - CountExamplesApiV1ExamplesCountGetFilterVariant1(string), - CountExamplesApiV1ExamplesCountGetFilterVariant2(null), + CountExamplesApiV1ExamplesCountGetMetadata(string), + CountExamplesApiV1ExamplesCountGetFullTextContains(array), + CountExamplesApiV1ExamplesCountGetFullTextContainsItem(string), + CountExamplesApiV1ExamplesCountGetSplits(array), + CountExamplesApiV1ExamplesCountGetSplitsItem(string), + CountExamplesApiV1ExamplesCountGetDataset(string), + CountExamplesApiV1ExamplesCountGetFilter(string), ReadExampleApiV1ExamplesExampleIdGetExampleId(string), ReadExampleApiV1ExamplesExampleIdGetAsOf(anyOf), ReadExampleApiV1ExamplesExampleIdGetAsOfVariant1(DateTime), ReadExampleApiV1ExamplesExampleIdGetAsOfVariant2(string), UpdateExampleApiV1ExamplesExampleIdPatchExampleId(string), DeleteExampleApiV1ExamplesExampleIdDeleteExampleId(string), - ReadExamplesApiV1ExamplesGetId(anyOf), - ReadExamplesApiV1ExamplesGetIdVariant1(array), - ReadExamplesApiV1ExamplesGetIdVariant1Item(string), - ReadExamplesApiV1ExamplesGetIdVariant2(null), + ReadExamplesApiV1ExamplesGetId(array), + ReadExamplesApiV1ExamplesGetIdItem(string), ReadExamplesApiV1ExamplesGetAsOf(anyOf), ReadExamplesApiV1ExamplesGetAsOfVariant1(DateTime), ReadExamplesApiV1ExamplesGetAsOfVariant2(string), - ReadExamplesApiV1ExamplesGetMetadata(anyOf), - ReadExamplesApiV1ExamplesGetMetadataVariant1(string), - ReadExamplesApiV1ExamplesGetMetadataVariant2(null), - ReadExamplesApiV1ExamplesGetFullTextContains(anyOf), - ReadExamplesApiV1ExamplesGetFullTextContainsVariant1(array), - ReadExamplesApiV1ExamplesGetFullTextContainsVariant1Item(string), - ReadExamplesApiV1ExamplesGetFullTextContainsVariant2(null), - ReadExamplesApiV1ExamplesGetSplits(anyOf), - ReadExamplesApiV1ExamplesGetSplitsVariant1(array), - ReadExamplesApiV1ExamplesGetSplitsVariant1Item(string), - ReadExamplesApiV1ExamplesGetSplitsVariant2(null), - ReadExamplesApiV1ExamplesGetDataset(anyOf), - ReadExamplesApiV1ExamplesGetDatasetVariant1(string), - ReadExamplesApiV1ExamplesGetDatasetVariant2(null), + ReadExamplesApiV1ExamplesGetMetadata(string), + ReadExamplesApiV1ExamplesGetFullTextContains(array), + ReadExamplesApiV1ExamplesGetFullTextContainsItem(string), + ReadExamplesApiV1ExamplesGetSplits(array), + ReadExamplesApiV1ExamplesGetSplitsItem(string), + ReadExamplesApiV1ExamplesGetDataset(string), ReadExamplesApiV1ExamplesGetOffset(int), ReadExamplesApiV1ExamplesGetLimit(int), ExampleListOrder(ref), - ReadExamplesApiV1ExamplesGetRandomSeed(anyOf), - ReadExamplesApiV1ExamplesGetRandomSeedVariant1(double), - ReadExamplesApiV1ExamplesGetRandomSeedVariant2(null), + ReadExamplesApiV1ExamplesGetRandomSeed(double), ReadExamplesApiV1ExamplesGetSelect(array), ExampleSelect(ref), - ReadExamplesApiV1ExamplesGetFilter(anyOf), - ReadExamplesApiV1ExamplesGetFilterVariant1(string), - ReadExamplesApiV1ExamplesGetFilterVariant2(null), + ReadExamplesApiV1ExamplesGetFilter(string), DeleteExamplesApiV1ExamplesDeleteExampleIds(array), DeleteExamplesApiV1ExamplesDeleteExampleIdsItem(string), UploadExamplesApiV1ExamplesUploadDatasetIdPostDatasetId(string), ReadDatasetApiV1DatasetsDatasetIdGetDatasetId(string), DeleteDatasetApiV1DatasetsDatasetIdDeleteDatasetId(string), UpdateDatasetApiV1DatasetsDatasetIdPatchDatasetId(string), - ReadDatasetsApiV1DatasetsGetId(anyOf), - ReadDatasetsApiV1DatasetsGetIdVariant1(array), - ReadDatasetsApiV1DatasetsGetIdVariant1Item(string), - ReadDatasetsApiV1DatasetsGetIdVariant2(null), + ReadDatasetsApiV1DatasetsGetId(array), + ReadDatasetsApiV1DatasetsGetIdItem(string), ReadDatasetsApiV1DatasetsGetDataType(anyOf), ReadDatasetsApiV1DatasetsGetDataTypeVariant1(array), DataType(ref), DataType(ref), - ReadDatasetsApiV1DatasetsGetDataTypeVariant3(null), - ReadDatasetsApiV1DatasetsGetName(anyOf), - ReadDatasetsApiV1DatasetsGetNameVariant1(string), - ReadDatasetsApiV1DatasetsGetNameVariant2(null), - ReadDatasetsApiV1DatasetsGetNameContains(anyOf), - ReadDatasetsApiV1DatasetsGetNameContainsVariant1(string), - ReadDatasetsApiV1DatasetsGetNameContainsVariant2(null), - ReadDatasetsApiV1DatasetsGetMetadata(anyOf), - ReadDatasetsApiV1DatasetsGetMetadataVariant1(string), - ReadDatasetsApiV1DatasetsGetMetadataVariant2(null), + ReadDatasetsApiV1DatasetsGetName(string), + ReadDatasetsApiV1DatasetsGetNameContains(string), + ReadDatasetsApiV1DatasetsGetMetadata(string), ReadDatasetsApiV1DatasetsGetOffset(int), ReadDatasetsApiV1DatasetsGetLimit(int), SortByDatasetColumn(ref), ReadDatasetsApiV1DatasetsGetSortByDesc(bool), - ReadDatasetsApiV1DatasetsGetTagValueId(anyOf), - ReadDatasetsApiV1DatasetsGetTagValueIdVariant1(array), - ReadDatasetsApiV1DatasetsGetTagValueIdVariant1Item(string), - ReadDatasetsApiV1DatasetsGetTagValueIdVariant2(null), + ReadDatasetsApiV1DatasetsGetTagValueId(array), + ReadDatasetsApiV1DatasetsGetTagValueIdItem(string), GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetDatasetId(string), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearch(anyOf), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearchVariant1(string), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearchVariant2(null), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExample(anyOf), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExampleVariant1(string), - GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExampleVariant2(null), + GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetSearch(string), + GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetExample(string), GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetLimit(int), GetDatasetVersionsApiV1DatasetsDatasetIdVersionsGetOffset(int), DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetDatasetId(string), @@ -4193,25 +2493,15 @@ DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetToVersionVariant1(DateTime), DiffDatasetVersionsApiV1DatasetsDatasetIdVersionsDiffGetToVersionVariant2(string), GetDatasetVersionApiV1DatasetsDatasetIdVersionGetDatasetId(string), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOf(anyOf), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOfVariant1(DateTime), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOfVariant2(null), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTag(anyOf), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTagVariant1(string), - GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTagVariant2(null), + GetDatasetVersionApiV1DatasetsDatasetIdVersionGetAsOf(DateTime), + GetDatasetVersionApiV1DatasetsDatasetIdVersionGetTag(string), UpdateDatasetVersionApiV1DatasetsDatasetIdTagsPutDatasetId(string), DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetDatasetId(string), - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOf(anyOf), - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOfVariant1(DateTime), - DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOfVariant2(null), + DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetAsOf(DateTime), DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetDatasetId(string), - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOf(anyOf), - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOfVariant1(DateTime), - DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOfVariant2(null), + DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetAsOf(DateTime), DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetDatasetId(string), - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOf(anyOf), - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOfVariant1(DateTime), - DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOfVariant2(null), + DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetAsOf(DateTime), ReadExamplesWithRunsApiV1DatasetsDatasetIdRunsPostDatasetId(string), ReadDeltaApiV1DatasetsDatasetIdRunsDeltaPostDatasetId(string), ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetDatasetId(string), @@ -4219,16 +2509,10 @@ ShareDatasetApiV1DatasetsDatasetIdSharePutShareProjects(bool), UnshareDatasetApiV1DatasetsDatasetIdShareDeleteDatasetId(string), ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetDatasetId(string), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetName(anyOf), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameVariant1(string), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameVariant2(null), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContains(anyOf), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContainsVariant1(string), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContainsVariant2(null), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetId(anyOf), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant1(array), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant1Item(string), - ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdVariant2(null), + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetName(string), + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetNameContains(string), + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetId(array), + ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetIdItem(string), ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetOffset(int), ReadComparativeExperimentsApiV1DatasetsDatasetIdComparativeGetLimit(int), SortByComparativeExperimentColumn(ref), @@ -4244,29 +2528,17 @@ GetIndexInfoApiV1DatasetsDatasetIdIndexGetDatasetId(string), SearchApiV1DatasetsDatasetIdSearchPostDatasetId(string), GenerateApiV1DatasetsDatasetIdGeneratePostDatasetId(string), - ListRulesApiV1RunsRulesGetDatasetId(anyOf), - ListRulesApiV1RunsRulesGetDatasetIdVariant1(string), - ListRulesApiV1RunsRulesGetDatasetIdVariant2(null), - ListRulesApiV1RunsRulesGetSessionId(anyOf), - ListRulesApiV1RunsRulesGetSessionIdVariant1(string), - ListRulesApiV1RunsRulesGetSessionIdVariant2(null), - ListRulesApiV1RunsRulesGetType(anyOf), - ListRulesApiV1RunsRulesGetType2(enum), - ListRulesApiV1RunsRulesGetTypeVariant2(null), - ListRulesApiV1RunsRulesGetNameContains(anyOf), - ListRulesApiV1RunsRulesGetNameContainsVariant1(string), - ListRulesApiV1RunsRulesGetNameContainsVariant2(null), + ListRulesApiV1RunsRulesGetDatasetId(string), + ListRulesApiV1RunsRulesGetSessionId(string), + ListRulesApiV1RunsRulesGetType(enum), + ListRulesApiV1RunsRulesGetNameContains(string), UpdateRuleApiV1RunsRulesRuleIdPatchRuleId(string), DeleteRuleApiV1RunsRulesRuleIdDeleteRuleId(string), ListRuleLogsApiV1RunsRulesRuleIdLogsGetRuleId(string), ListRuleLogsApiV1RunsRulesRuleIdLogsGetLimit(int), ListRuleLogsApiV1RunsRulesRuleIdLogsGetOffset(int), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTime(anyOf), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTimeVariant1(DateTime), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTimeVariant2(null), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTime(anyOf), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTimeVariant1(DateTime), - ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTimeVariant2(null), + ListRuleLogsApiV1RunsRulesRuleIdLogsGetStartTime(DateTime), + ListRuleLogsApiV1RunsRulesRuleIdLogsGetEndTime(DateTime), TriggerRuleApiV1RunsRulesRuleIdTriggerPostRuleId(string), ReadRunApiV1RunsRunIdGetRunId(string), ReadRunApiV1RunsRunIdGetExcludeS3StoredAttributes(bool), @@ -4274,68 +2546,40 @@ ReadRunShareStateApiV1RunsRunIdShareGetRunId(string), ShareRunApiV1RunsRunIdSharePutRunId(string), UnshareRunApiV1RunsRunIdShareDeleteRunId(string), - GroupRunsApiV1RunsGroupPostAccept(anyOf), - GroupRunsApiV1RunsGroupPostAcceptVariant1(string), - GroupRunsApiV1RunsGroupPostAcceptVariant2(null), + GroupRunsApiV1RunsGroupPostAccept(string), ReadFeedbackApiV1FeedbackFeedbackIdGetFeedbackId(string), UpdateFeedbackApiV1FeedbackFeedbackIdPatchFeedbackId(string), DeleteFeedbackApiV1FeedbackFeedbackIdDeleteFeedbackId(string), - ReadFeedbacksApiV1FeedbackGetRun(anyOf), - ReadFeedbacksApiV1FeedbackGetRunVariant1(array), - ReadFeedbacksApiV1FeedbackGetRunVariant1Item(string), - ReadFeedbacksApiV1FeedbackGetRunVariant2(null), - ReadFeedbacksApiV1FeedbackGetKey(anyOf), - ReadFeedbacksApiV1FeedbackGetKeyVariant1(array), - ReadFeedbacksApiV1FeedbackGetKeyVariant1Item(string), - ReadFeedbacksApiV1FeedbackGetKeyVariant2(null), - ReadFeedbacksApiV1FeedbackGetSession(anyOf), - ReadFeedbacksApiV1FeedbackGetSessionVariant1(array), - ReadFeedbacksApiV1FeedbackGetSessionVariant1Item(string), - ReadFeedbacksApiV1FeedbackGetSessionVariant2(null), - ReadFeedbacksApiV1FeedbackGetSource(anyOf), - ReadFeedbacksApiV1FeedbackGetSourceVariant1(array), - SourceType(ref), - ReadFeedbacksApiV1FeedbackGetSourceVariant2(null), + ReadFeedbacksApiV1FeedbackGetRun(array), + ReadFeedbacksApiV1FeedbackGetRunItem(string), + ReadFeedbacksApiV1FeedbackGetKey(array), + ReadFeedbacksApiV1FeedbackGetKeyItem(string), + ReadFeedbacksApiV1FeedbackGetSession(array), + ReadFeedbacksApiV1FeedbackGetSessionItem(string), + ReadFeedbacksApiV1FeedbackGetSource(array), + SourceType(ref), ReadFeedbacksApiV1FeedbackGetLimit(int), ReadFeedbacksApiV1FeedbackGetOffset(int), - ReadFeedbacksApiV1FeedbackGetUser(anyOf), - ReadFeedbacksApiV1FeedbackGetUserVariant1(array), - ReadFeedbacksApiV1FeedbackGetUserVariant1Item(string), - ReadFeedbacksApiV1FeedbackGetUserVariant2(null), - ReadFeedbacksApiV1FeedbackGetHasComment(anyOf), - ReadFeedbacksApiV1FeedbackGetHasCommentVariant1(bool), - ReadFeedbacksApiV1FeedbackGetHasCommentVariant2(null), - ReadFeedbacksApiV1FeedbackGetHasScore(anyOf), - ReadFeedbacksApiV1FeedbackGetHasScoreVariant1(bool), - ReadFeedbacksApiV1FeedbackGetHasScoreVariant2(null), - ReadFeedbacksApiV1FeedbackGetLevel(anyOf), - FeedbackLevel(ref), - ReadFeedbacksApiV1FeedbackGetLevelVariant2(null), - ReadFeedbacksApiV1FeedbackGetMaxCreatedAt(anyOf), - ReadFeedbacksApiV1FeedbackGetMaxCreatedAtVariant1(DateTime), - ReadFeedbacksApiV1FeedbackGetMaxCreatedAtVariant2(null), - ReadFeedbacksApiV1FeedbackGetMinCreatedAt(anyOf), - ReadFeedbacksApiV1FeedbackGetMinCreatedAtVariant1(DateTime), - ReadFeedbacksApiV1FeedbackGetMinCreatedAtVariant2(null), + ReadFeedbacksApiV1FeedbackGetUser(array), + ReadFeedbacksApiV1FeedbackGetUserItem(string), + ReadFeedbacksApiV1FeedbackGetHasComment(bool), + ReadFeedbacksApiV1FeedbackGetHasScore(bool), + FeedbackLevel(ref), + ReadFeedbacksApiV1FeedbackGetMaxCreatedAt(DateTime), + ReadFeedbacksApiV1FeedbackGetMinCreatedAt(DateTime), ListFeedbackIngestTokensApiV1FeedbackTokensGetRunId(string), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetToken(string), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScore(anyOf), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant1(double), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant2(int), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant3(bool), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetScoreVariant4(null), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValue(anyOf), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant1(double), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant2(int), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant3(bool), CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant4(string), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetValueVariant5(null), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetComment(anyOf), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCommentVariant1(string), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCommentVariant2(null), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrection(anyOf), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrectionVariant1(string), - CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrectionVariant2(null), + CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetComment(string), + CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetCorrection(string), CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostToken(string), GetSharedRunApiV1PublicShareTokenRunGetShareToken(string), GetSharedRunApiV1PublicShareTokenRunGetExcludeS3StoredAttributes(bool), @@ -4344,99 +2588,59 @@ GetSharedRunByIdApiV1PublicShareTokenRunIdGetExcludeS3StoredAttributes(bool), QuerySharedRunsApiV1PublicShareTokenRunsQueryPostShareToken(string), ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetShareToken(string), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRun(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant1(array), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant1Item(string), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKey(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant1(array), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant1Item(string), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSession(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant1(array), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant1Item(string), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSource(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSourceVariant1(array), - SourceType(ref), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSourceVariant2(null), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRun(array), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetRunItem(string), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKey(array), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetKeyItem(string), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSession(array), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSessionItem(string), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetSource(array), + SourceType(ref), ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLimit(int), ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetOffset(int), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUser(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant1(array), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant1Item(string), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasComment(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasCommentVariant1(bool), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasCommentVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScore(anyOf), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScoreVariant1(bool), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScoreVariant2(null), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLevel(anyOf), - FeedbackLevel(ref), - ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetLevelVariant2(null), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUser(array), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetUserItem(string), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasComment(bool), + ReadSharedFeedbacksApiV1PublicShareTokenFeedbacksGetHasScore(bool), + FeedbackLevel(ref), ReadSharedDatasetApiV1PublicShareTokenDatasetsGetShareToken(string), ReadSharedDatasetApiV1PublicShareTokenDatasetsGetOffset(int), ReadSharedDatasetApiV1PublicShareTokenDatasetsGetLimit(int), SortByDatasetColumn(ref), ReadSharedDatasetApiV1PublicShareTokenDatasetsGetSortByDesc(bool), CountSharedExamplesApiV1PublicShareTokenExamplesCountGetShareToken(string), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetId(anyOf), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant1(array), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant1Item(string), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdVariant2(null), + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetId(array), + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetIdItem(string), CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOf(anyOf), CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOfVariant1(DateTime), CountSharedExamplesApiV1PublicShareTokenExamplesCountGetAsOfVariant2(string), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadata(anyOf), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadataVariant1(string), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadataVariant2(null), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilter(anyOf), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilterVariant1(string), - CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilterVariant2(null), + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetMetadata(string), + CountSharedExamplesApiV1PublicShareTokenExamplesCountGetFilter(string), ReadSharedExamplesApiV1PublicShareTokenExamplesGetShareToken(string), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetId(anyOf), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant1(array), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant1Item(string), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdVariant2(null), + ReadSharedExamplesApiV1PublicShareTokenExamplesGetId(array), + ReadSharedExamplesApiV1PublicShareTokenExamplesGetIdItem(string), ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOf(anyOf), ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOfVariant1(DateTime), ReadSharedExamplesApiV1PublicShareTokenExamplesGetAsOfVariant2(string), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadata(anyOf), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadataVariant1(string), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadataVariant2(null), + ReadSharedExamplesApiV1PublicShareTokenExamplesGetMetadata(string), ReadSharedExamplesApiV1PublicShareTokenExamplesGetOffset(int), ReadSharedExamplesApiV1PublicShareTokenExamplesGetLimit(int), ReadSharedExamplesApiV1PublicShareTokenExamplesGetSelect(array), ExampleSelect(ref), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilter(anyOf), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilterVariant1(string), - ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilterVariant2(null), + ReadSharedExamplesApiV1PublicShareTokenExamplesGetFilter(string), ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetShareToken(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetId(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant1(array), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant1Item(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdVariant2(null), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetName(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameVariant1(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameVariant2(null), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContains(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContainsVariant1(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContainsVariant2(null), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersion(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersionVariant1(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersionVariant2(null), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetId(array), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetIdItem(string), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetName(string), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetNameContains(string), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetDatasetVersion(string), SessionSortableColumns(ref), ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByDesc(bool), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKey(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKeyVariant1(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKeyVariant2(null), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetSortByFeedbackKey(string), ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetOffset(int), ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetLimit(int), ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetFacets(bool), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAccept(anyOf), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAcceptVariant1(string), - ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAcceptVariant2(null), + ReadSharedDatasetTracerSessionsApiV1PublicShareTokenDatasetsSessionsGetAccept(string), ReadSharedDatasetExamplesWithRunsApiV1PublicShareTokenExamplesRunsPostShareToken(string), ReadSharedDeltaApiV1PublicShareTokenDatasetsRunsDeltaPostShareToken(string), QuerySharedDatasetRunsApiV1PublicShareTokenDatasetsRunsQueryPostShareToken(string), @@ -4446,64 +2650,36 @@ ReadSharedDatasetRunApiV1PublicShareTokenDatasetsRunsRunIdGetShareToken(string), ReadSharedDatasetRunApiV1PublicShareTokenDatasetsRunsRunIdGetExcludeS3StoredAttributes(bool), ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetShareToken(string), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRun(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant1(array), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant1Item(string), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKey(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant1(array), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant1Item(string), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSession(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant1(array), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant1Item(string), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSource(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSourceVariant1(array), - SourceType(ref), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSourceVariant2(null), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRun(array), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetRunItem(string), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKey(array), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetKeyItem(string), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSession(array), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSessionItem(string), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetSource(array), + SourceType(ref), ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLimit(int), ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetOffset(int), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUser(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant1(array), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant1Item(string), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasComment(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasCommentVariant1(bool), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasCommentVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScore(anyOf), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScoreVariant1(bool), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScoreVariant2(null), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLevel(anyOf), - FeedbackLevel(ref), - ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetLevelVariant2(null), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUser(array), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetUserItem(string), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasComment(bool), + ReadSharedDatasetFeedbackApiV1PublicShareTokenDatasetsFeedbackGetHasScore(bool), + FeedbackLevel(ref), ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetShareToken(string), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetName(anyOf), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameVariant1(string), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameVariant2(null), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContains(anyOf), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContainsVariant1(string), - ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContainsVariant2(null), + ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetName(string), + ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetNameContains(string), ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetOffset(int), ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetLimit(int), SortByComparativeExperimentColumn(ref), ReadSharedComparativeExperimentsApiV1PublicShareTokenDatasetsComparativeGetSortByDesc(bool), - GetAnnotationQueuesApiV1AnnotationQueuesGetIds(anyOf), - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant1(array), - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant1Item(string), - GetAnnotationQueuesApiV1AnnotationQueuesGetIdsVariant2(null), - GetAnnotationQueuesApiV1AnnotationQueuesGetName(anyOf), - GetAnnotationQueuesApiV1AnnotationQueuesGetNameVariant1(string), - GetAnnotationQueuesApiV1AnnotationQueuesGetNameVariant2(null), - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContains(anyOf), - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContainsVariant1(string), - GetAnnotationQueuesApiV1AnnotationQueuesGetNameContainsVariant2(null), + GetAnnotationQueuesApiV1AnnotationQueuesGetIds(array), + GetAnnotationQueuesApiV1AnnotationQueuesGetIdsItem(string), + GetAnnotationQueuesApiV1AnnotationQueuesGetName(string), + GetAnnotationQueuesApiV1AnnotationQueuesGetNameContains(string), GetAnnotationQueuesApiV1AnnotationQueuesGetOffset(int), GetAnnotationQueuesApiV1AnnotationQueuesGetLimit(int), - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueId(anyOf), - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant1(array), - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant1Item(string), - GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdVariant2(null), + GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueId(array), + GetAnnotationQueuesApiV1AnnotationQueuesGetTagValueIdItem(string), DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteQueueId(string), UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchQueueId(string), AddRunsToAnnotationQueueApiV1AnnotationQueuesQueueIdRunsPostQueueId(string), @@ -4531,20 +2707,16 @@ DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteIdentityId(string), PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchIdentityId(string), DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteIdentityId(string), - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKey(anyOf), - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant1(array), - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant1Item(string), - ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyVariant2(null), + ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKey(array), + ListFeedbackConfigsEndpointApiV1FeedbackConfigsGetKeyItem(string), UpdateModelPriceApiV1ModelPriceMapIdPutId(string), DeleteModelPriceApiV1ModelPriceMapIdDeleteId(string), DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteUsageLimitId(string), PatchWorkspaceApiV1WorkspacesWorkspaceIdPatchWorkspaceId(string), DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteId(string), ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostWorkspaceId(string), - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueId(anyOf), - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant1(array), - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant1Item(string), - GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdVariant2(null), + GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueId(array), + GetCurrentWorkspaceStatsApiV1WorkspacesCurrentStatsGetTagValueIdItem(string), GetSharedTokensApiV1WorkspacesCurrentSharedGetLimit(int), GetSharedTokensApiV1WorkspacesCurrentSharedGetOffset(int), DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteIdentityId(string), @@ -4561,9 +2733,7 @@ UpdateTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdPatchTagValueId(string), DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteTagKeyId(string), DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteTagValueId(string), - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueId(anyOf), - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueIdVariant1(string), - ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueIdVariant2(null), + ListTaggingsApiV1WorkspacesCurrentTaggingsGetTagValueId(string), DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteTaggingId(string), ResourceType(ref), ListTagsForResourceApiV1WorkspacesCurrentTagsResourceGetResourceId(string), @@ -4572,23 +2742,13 @@ DeleteServiceAccountApiV1ServiceAccountsServiceAccountIdDeleteServiceAccountId(string), ReadSectionsApiV1ChartsSectionGetLimit(int), ReadSectionsApiV1ChartsSectionGetOffset(int), - ReadSectionsApiV1ChartsSectionGetTitleContains(anyOf), - ReadSectionsApiV1ChartsSectionGetTitleContainsVariant1(string), - ReadSectionsApiV1ChartsSectionGetTitleContainsVariant2(null), - ReadSectionsApiV1ChartsSectionGetIds(anyOf), - ReadSectionsApiV1ChartsSectionGetIdsVariant1(array), - ReadSectionsApiV1ChartsSectionGetIdsVariant1Item(string), - ReadSectionsApiV1ChartsSectionGetIdsVariant2(null), - ReadSectionsApiV1ChartsSectionGetSortBy(anyOf), - ReadSectionsApiV1ChartsSectionGetSortByVariant1(string), - ReadSectionsApiV1ChartsSectionGetSortByVariant2(null), + ReadSectionsApiV1ChartsSectionGetTitleContains(string), + ReadSectionsApiV1ChartsSectionGetIds(array), + ReadSectionsApiV1ChartsSectionGetIdsItem(string), + ReadSectionsApiV1ChartsSectionGetSortBy(string), ReadSectionsApiV1ChartsSectionGetSortByDesc(bool), - ReadSectionsApiV1ChartsSectionGetSortByDescVariant1(bool), - ReadSectionsApiV1ChartsSectionGetSortByDescVariant2(null), - ReadSectionsApiV1ChartsSectionGetTagValueId(anyOf), - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant1(array), - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant1Item(string), - ReadSectionsApiV1ChartsSectionGetTagValueIdVariant2(null), + ReadSectionsApiV1ChartsSectionGetTagValueId(array), + ReadSectionsApiV1ChartsSectionGetTagValueIdItem(string), ReadSingleChartApiV1ChartsChartIdPostChartId(string), UpdateChartApiV1ChartsChartIdPatchChartId(string), DeleteChartApiV1ChartsChartIdDeleteChartId(string), @@ -4598,48 +2758,23 @@ ListReposApiV1ReposGetWithLatestManifest(bool), ListReposApiV1ReposGetLimit(int), ListReposApiV1ReposGetOffset(int), - ListReposApiV1ReposGetTenantHandle(anyOf), - ListReposApiV1ReposGetTenantHandleVariant1(string), - ListReposApiV1ReposGetTenantHandleVariant2(null), - ListReposApiV1ReposGetTenantId(anyOf), - ListReposApiV1ReposGetTenantIdVariant1(string), - ListReposApiV1ReposGetTenantIdVariant2(null), - ListReposApiV1ReposGetQuery(anyOf), - ListReposApiV1ReposGetQueryVariant1(string), - ListReposApiV1ReposGetQueryVariant2(null), - ListReposApiV1ReposGetHasCommits(anyOf), - ListReposApiV1ReposGetHasCommitsVariant1(bool), - ListReposApiV1ReposGetHasCommitsVariant2(null), - ListReposApiV1ReposGetTags(anyOf), - ListReposApiV1ReposGetTagsVariant1(array), - ListReposApiV1ReposGetTagsVariant1Item(string), - ListReposApiV1ReposGetTagsVariant2(null), - ListReposApiV1ReposGetIsArchived(anyOf), - ListReposApiV1ReposGetIsArchived2(enum), - ListReposApiV1ReposGetIsArchivedVariant2(null), - ListReposApiV1ReposGetIsPublic(anyOf), - ListReposApiV1ReposGetIsPublic2(enum), - ListReposApiV1ReposGetIsPublicVariant2(null), - ListReposApiV1ReposGetUpstreamRepoOwner(anyOf), - ListReposApiV1ReposGetUpstreamRepoOwnerVariant1(string), - ListReposApiV1ReposGetUpstreamRepoOwnerVariant2(null), - ListReposApiV1ReposGetUpstreamRepoHandle(anyOf), - ListReposApiV1ReposGetUpstreamRepoHandleVariant1(string), - ListReposApiV1ReposGetUpstreamRepoHandleVariant2(null), + ListReposApiV1ReposGetTenantHandle(string), + ListReposApiV1ReposGetTenantId(string), + ListReposApiV1ReposGetQuery(string), + ListReposApiV1ReposGetHasCommits(bool), + ListReposApiV1ReposGetTags(array), + ListReposApiV1ReposGetTagsItem(string), + ListReposApiV1ReposGetIsArchived(enum), + ListReposApiV1ReposGetIsPublic(enum), + ListReposApiV1ReposGetUpstreamRepoOwner(string), + ListReposApiV1ReposGetUpstreamRepoHandle(string), ListReposApiV1ReposGetMatchPrefix(bool), - ListReposApiV1ReposGetMatchPrefixVariant1(bool), - ListReposApiV1ReposGetMatchPrefixVariant2(null), - ListReposApiV1ReposGetTagValueId(anyOf), - ListReposApiV1ReposGetTagValueIdVariant1(array), - ListReposApiV1ReposGetTagValueIdVariant1Item(string), - ListReposApiV1ReposGetTagValueIdVariant2(null), - ListReposApiV1ReposGetSortField(anyOf), - ListReposApiV1ReposGetSortFieldVariant1(string), - ListReposApiV1ReposGetSortFieldVariant2(null), + ListReposApiV1ReposGetTagValueId(array), + ListReposApiV1ReposGetTagValueIdItem(string), + ListReposApiV1ReposGetSortField(string), ListReposApiV1ReposGetSortDirection(anyOf), ListReposApiV1ReposGetSortDirectionVariant1(enum), ListReposApiV1ReposGetSortDirectionVariant2(enum), - ListReposApiV1ReposGetSortDirectionVariant3(null), GetRepoApiV1ReposOwnerRepoGetOwner(string), GetRepoApiV1ReposOwnerRepoGetRepo(string), UpdateRepoApiV1ReposOwnerRepoPatchOwner(string), @@ -4650,41 +2785,19 @@ ForkRepoApiV1ReposOwnerRepoForkPostRepo(string), ListRepoTagsApiV1ReposTagsGetLimit(int), ListRepoTagsApiV1ReposTagsGetOffset(int), - ListRepoTagsApiV1ReposTagsGetTenantHandle(anyOf), - ListRepoTagsApiV1ReposTagsGetTenantHandleVariant1(string), - ListRepoTagsApiV1ReposTagsGetTenantHandleVariant2(null), - ListRepoTagsApiV1ReposTagsGetTenantId(anyOf), - ListRepoTagsApiV1ReposTagsGetTenantIdVariant1(string), - ListRepoTagsApiV1ReposTagsGetTenantIdVariant2(null), - ListRepoTagsApiV1ReposTagsGetQuery(anyOf), - ListRepoTagsApiV1ReposTagsGetQueryVariant1(string), - ListRepoTagsApiV1ReposTagsGetQueryVariant2(null), - ListRepoTagsApiV1ReposTagsGetHasCommits(anyOf), - ListRepoTagsApiV1ReposTagsGetHasCommitsVariant1(bool), - ListRepoTagsApiV1ReposTagsGetHasCommitsVariant2(null), - ListRepoTagsApiV1ReposTagsGetTags(anyOf), - ListRepoTagsApiV1ReposTagsGetTagsVariant1(array), - ListRepoTagsApiV1ReposTagsGetTagsVariant1Item(string), - ListRepoTagsApiV1ReposTagsGetTagsVariant2(null), - ListRepoTagsApiV1ReposTagsGetIsArchived(anyOf), - ListRepoTagsApiV1ReposTagsGetIsArchived2(enum), - ListRepoTagsApiV1ReposTagsGetIsArchivedVariant2(null), - ListRepoTagsApiV1ReposTagsGetIsPublic(anyOf), - ListRepoTagsApiV1ReposTagsGetIsPublic2(enum), - ListRepoTagsApiV1ReposTagsGetIsPublicVariant2(null), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwner(anyOf), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwnerVariant1(string), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwnerVariant2(null), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandle(anyOf), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandleVariant1(string), - ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandleVariant2(null), + ListRepoTagsApiV1ReposTagsGetTenantHandle(string), + ListRepoTagsApiV1ReposTagsGetTenantId(string), + ListRepoTagsApiV1ReposTagsGetQuery(string), + ListRepoTagsApiV1ReposTagsGetHasCommits(bool), + ListRepoTagsApiV1ReposTagsGetTags(array), + ListRepoTagsApiV1ReposTagsGetTagsItem(string), + ListRepoTagsApiV1ReposTagsGetIsArchived(enum), + ListRepoTagsApiV1ReposTagsGetIsPublic(enum), + ListRepoTagsApiV1ReposTagsGetUpstreamRepoOwner(string), + ListRepoTagsApiV1ReposTagsGetUpstreamRepoHandle(string), ListRepoTagsApiV1ReposTagsGetMatchPrefix(bool), - ListRepoTagsApiV1ReposTagsGetMatchPrefixVariant1(bool), - ListRepoTagsApiV1ReposTagsGetMatchPrefixVariant2(null), - ListRepoTagsApiV1ReposTagsGetTagValueId(anyOf), - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant1(array), - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant1Item(string), - ListRepoTagsApiV1ReposTagsGetTagValueIdVariant2(null), + ListRepoTagsApiV1ReposTagsGetTagValueId(array), + ListRepoTagsApiV1ReposTagsGetTagValueIdItem(string), LikeRepoApiV1LikesOwnerRepoPostOwner(string), LikeRepoApiV1LikesOwnerRepoPostRepo(string), ListCommitsApiV1CommitsOwnerRepoGetOwner(string), @@ -4699,8 +2812,6 @@ GetCommitApiV1CommitsOwnerRepoCommitGetGetExamples(bool), GetCommitApiV1CommitsOwnerRepoCommitGetIsView(bool), GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModel(bool), - GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModelVariant1(bool), - GetCommitApiV1CommitsOwnerRepoCommitGetIncludeModelVariant2(null), CreateCommentApiV1CommentsOwnerRepoPostOwner(string), CreateCommentApiV1CommentsOwnerRepoPostRepo(string), GetCommentsApiV1CommentsOwnerRepoGetOwner(string), @@ -4905,9 +3016,7 @@ HTTPValidationError(ref), SessionFeedbackDelta(ref), HTTPValidationError(ref), - ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetResponse(anyOf), - DatasetShareSchema(ref), - ReadDatasetShareStateApiV1DatasetsDatasetIdShareGetResponseVariant2(null), + DatasetShareSchema(ref), HTTPValidationError(ref), DatasetShareSchema(ref), HTTPValidationError(ref), @@ -4963,9 +3072,7 @@ HTTPValidationError(ref), UpdateRunApiV1RunsRunIdPatchResponse(class), HTTPValidationError(ref), - ReadRunShareStateApiV1RunsRunIdShareGetResponse(anyOf), - RunShareSchema(ref), - ReadRunShareStateApiV1RunsRunIdShareGetResponseVariant2(null), + RunShareSchema(ref), HTTPValidationError(ref), RunShareSchema(ref), HTTPValidationError(ref), diff --git a/src/tests/AutoSDK.UnitTests/Snapshots/Validation/ConvertedSpecs/langsmith.json/_.verified.txt b/src/tests/AutoSDK.UnitTests/Snapshots/Validation/ConvertedSpecs/langsmith.json/_.verified.txt index 766e7e0a08..8d7c06f2b3 100644 --- a/src/tests/AutoSDK.UnitTests/Snapshots/Validation/ConvertedSpecs/langsmith.json/_.verified.txt +++ b/src/tests/AutoSDK.UnitTests/Snapshots/Validation/ConvertedSpecs/langsmith.json/_.verified.txt @@ -50,15 +50,9 @@ "in": "header", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Accept" + "title": "Accept", + "type": "string", + "nullable": true } } ], @@ -225,15 +219,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Reference Free" + "title": "Reference Free", + "type": "boolean", + "nullable": true } }, { @@ -241,19 +229,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Reference Dataset" + "title": "Reference Dataset", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -261,19 +243,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -281,15 +257,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -297,15 +267,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -313,15 +277,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Version" + "title": "Dataset Version", + "type": "string", + "nullable": true } }, { @@ -348,15 +306,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -364,15 +316,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Sort By Feedback Key" + "title": "Sort By Feedback Key", + "type": "string", + "nullable": true } }, { @@ -403,19 +349,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -433,15 +373,9 @@ "in": "header", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Accept" + "title": "Accept", + "type": "string", + "nullable": true } } ], @@ -625,18 +559,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Metadata Keys" + "title": "Metadata Keys", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -644,16 +572,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" } }, { @@ -1330,15 +1252,10 @@ "in": "query", "required": true, "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/OrganizationDashboardColorScheme" - }, - { - "type": "null" - } - ], - "title": "Color Scheme" + "title": "Color Scheme", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/OrganizationDashboardColorScheme" } } ], @@ -3347,19 +3264,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -3387,15 +3298,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -3403,18 +3308,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Full Text Contains" + "title": "Full Text Contains", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -3422,18 +3321,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Splits" + "title": "Splits", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -3441,16 +3334,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset" + "title": "Dataset", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -3458,15 +3345,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true } } ], @@ -3707,19 +3588,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -3747,15 +3622,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -3763,18 +3632,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Full Text Contains" + "title": "Full Text Contains", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -3782,18 +3645,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Splits" + "title": "Splits", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -3801,16 +3658,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset" + "title": "Dataset", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -3850,15 +3701,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Random Seed" + "title": "Random Seed", + "type": "number", + "nullable": true } }, { @@ -3889,15 +3734,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true } } ], @@ -4419,19 +4258,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -4448,12 +4281,10 @@ }, { "$ref": "#/components/schemas/DataType" - }, - { - "type": "null" } ], - "title": "Data Type" + "title": "Data Type", + "nullable": true } }, { @@ -4461,15 +4292,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -4477,15 +4302,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -4493,15 +4312,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -4551,19 +4364,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } } ], @@ -4787,15 +4594,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Search" + "title": "Search", + "type": "string", + "nullable": true } }, { @@ -4803,16 +4604,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Example" + "title": "Example", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -4991,16 +4786,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "As Of" + "title": "As Of", + "type": "string", + "nullable": true, + "format": "date-time" } }, { @@ -5008,15 +4797,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tag" + "title": "Tag", + "type": "string", + "nullable": true } } ], @@ -5144,17 +4927,11 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used.", - "title": "As Of" + "title": "As Of", + "type": "string", + "nullable": true, + "format": "date-time" }, "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used." } @@ -5216,17 +4993,11 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used.", - "title": "As Of" + "title": "As Of", + "type": "string", + "nullable": true, + "format": "date-time" }, "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used." } @@ -5288,17 +5059,11 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used.", - "title": "As Of" + "title": "As Of", + "type": "string", + "nullable": true, + "format": "date-time" }, "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used." } @@ -5506,15 +5271,10 @@ "content": { "application/json": { "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/DatasetShareSchema" - }, - { - "type": "null" - } - ], - "title": "Response Read Dataset Share State Api V1 Datasets Dataset Id Share Get" + "title": "Response Read Dataset Share State Api V1 Datasets Dataset Id Share Get", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/DatasetShareSchema" } } } @@ -5681,15 +5441,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -5697,15 +5451,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -5713,19 +5461,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -6529,16 +6271,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -6546,16 +6282,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -6563,19 +6293,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "enum": [ - "session", - "dataset" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" + "title": "Type", + "type": "string", + "nullable": true, + "enum": [ + "session", + "dataset" + ] } }, { @@ -6583,15 +6307,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } } ], @@ -6848,16 +6566,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" } }, { @@ -6865,16 +6577,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" } } ], @@ -7175,15 +6881,10 @@ "content": { "application/json": { "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunShareSchema" - }, - { - "type": "null" - } - ], - "title": "Response Read Run Share State Api V1 Runs Run Id Share Get" + "title": "Response Read Run Share State Api V1 Runs Run Id Share Get", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunShareSchema" } } } @@ -7654,15 +7355,9 @@ "in": "header", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Accept" + "title": "Accept", + "type": "string", + "nullable": true } } ], @@ -7945,19 +7640,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Run" + "title": "Run", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -7965,18 +7654,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Key" + "title": "Key", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -7984,19 +7667,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -8004,18 +7681,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "$ref": "#/components/schemas/SourceType" - } - }, - { - "type": "null" - } - ], - "title": "Source" + "title": "Source", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/SourceType" + } } }, { @@ -8046,19 +7717,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "User" + "title": "User", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -8066,15 +7731,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Comment" + "title": "Has Comment", + "type": "boolean", + "nullable": true } }, { @@ -8082,15 +7741,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Score" + "title": "Has Score", + "type": "boolean", + "nullable": true } }, { @@ -8098,15 +7751,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackLevel" - }, - { - "type": "null" - } - ], - "title": "Level" + "title": "Level", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackLevel" } }, { @@ -8114,16 +7762,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Max Created At" + "title": "Max Created At", + "type": "string", + "nullable": true, + "format": "date-time" } }, { @@ -8131,16 +7773,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Min Created At" + "title": "Min Created At", + "type": "string", + "nullable": true, + "format": "date-time" } } ], @@ -8441,12 +8077,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true } }, { @@ -8466,12 +8100,10 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true } }, { @@ -8479,15 +8111,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true } }, { @@ -8495,15 +8121,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Correction" + "title": "Correction", + "type": "string", + "nullable": true } } ], @@ -8774,19 +8394,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Run" + "title": "Run", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -8794,18 +8408,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Key" + "title": "Key", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -8813,19 +8421,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -8833,18 +8435,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "$ref": "#/components/schemas/SourceType" - } - }, - { - "type": "null" - } - ], - "title": "Source" + "title": "Source", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/SourceType" + } } }, { @@ -8875,19 +8471,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "User" + "title": "User", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -8895,15 +8485,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Comment" + "title": "Has Comment", + "type": "boolean", + "nullable": true } }, { @@ -8911,15 +8495,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Score" + "title": "Has Score", + "type": "boolean", + "nullable": true } }, { @@ -8927,15 +8505,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackLevel" - }, - { - "type": "null" - } - ], - "title": "Level" + "title": "Level", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackLevel" } } ], @@ -9077,19 +8650,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -9117,15 +8684,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -9133,15 +8694,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true } } ], @@ -9194,19 +8749,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -9234,15 +8783,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "string", + "nullable": true } }, { @@ -9295,15 +8838,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true } } ], @@ -9359,19 +8896,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -9379,15 +8910,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -9395,15 +8920,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -9411,15 +8930,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Version" + "title": "Dataset Version", + "type": "string", + "nullable": true } }, { @@ -9446,15 +8959,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Sort By Feedback Key" + "title": "Sort By Feedback Key", + "type": "string", + "nullable": true } }, { @@ -9495,15 +9002,9 @@ "in": "header", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Accept" + "title": "Accept", + "type": "string", + "nullable": true } } ], @@ -9907,19 +9408,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Run" + "title": "Run", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -9927,18 +9422,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Key" + "title": "Key", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -9946,19 +9435,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -9966,18 +9449,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "$ref": "#/components/schemas/SourceType" - } - }, - { - "type": "null" - } - ], - "title": "Source" + "title": "Source", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/SourceType" + } } }, { @@ -10008,19 +9485,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "User" + "title": "User", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -10028,15 +9499,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Comment" + "title": "Has Comment", + "type": "boolean", + "nullable": true } }, { @@ -10044,15 +9509,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Score" + "title": "Has Score", + "type": "boolean", + "nullable": true } }, { @@ -10060,15 +9519,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackLevel" - }, - { - "type": "null" - } - ], - "title": "Level" + "title": "Level", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackLevel" } } ], @@ -10124,15 +9578,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -10140,15 +9588,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -10246,19 +9688,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Ids" + "title": "Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -10266,15 +9702,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, { @@ -10282,15 +9712,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name Contains" + "title": "Name Contains", + "type": "string", + "nullable": true } }, { @@ -10321,19 +9745,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } } ], @@ -12429,19 +11847,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - }, - "maxItems": 50 - }, - { - "type": "null" - } - ], - "title": "Key" + "title": "Key", + "type": "array", + "nullable": true, + "items": { + "type": "string" + }, + "maxItems": 50 } } ], @@ -13367,19 +12779,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } } ], @@ -14597,16 +14003,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "string", + "nullable": true, + "format": "uuid" } } ], @@ -15185,15 +14585,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Title Contains" + "title": "Title Contains", + "type": "string", + "nullable": true } }, { @@ -15201,19 +14595,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Ids" + "title": "Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -15221,16 +14609,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], "default": "created_at", - "title": "Sort By" + "title": "Sort By", + "type": "string", + "nullable": true } }, { @@ -15238,16 +14620,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "default": true, - "title": "Sort By Desc" + "title": "Sort By Desc", + "type": "boolean", + "nullable": true } }, { @@ -15255,19 +14631,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } } ], @@ -15941,15 +15311,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true } }, { @@ -15957,16 +15321,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -15974,15 +15332,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Query" + "title": "Query", + "type": "string", + "nullable": true } }, { @@ -15990,15 +15342,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Commits" + "title": "Has Commits", + "type": "boolean", + "nullable": true } }, { @@ -16006,18 +15352,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -16025,20 +15365,14 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "enum": [ - "true", - "allow", - "false" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Is Archived" + "title": "Is Archived", + "type": "string", + "nullable": true, + "enum": [ + "true", + "allow", + "false" + ] } }, { @@ -16046,19 +15380,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "enum": [ - "true", - "false" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Is Public" + "title": "Is Public", + "type": "string", + "nullable": true, + "enum": [ + "true", + "false" + ] } }, { @@ -16066,15 +15394,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Owner" + "title": "Upstream Repo Owner", + "type": "string", + "nullable": true } }, { @@ -16082,15 +15404,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Handle" + "title": "Upstream Repo Handle", + "type": "string", + "nullable": true } }, { @@ -16098,16 +15414,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "default": false, - "title": "Match Prefix" + "title": "Match Prefix", + "type": "boolean", + "nullable": true } }, { @@ -16115,19 +15425,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, { @@ -16135,15 +15439,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Sort Field" + "title": "Sort Field", + "type": "string", + "nullable": true } }, { @@ -16163,12 +15461,10 @@ "desc" ], "type": "string" - }, - { - "type": "null" } ], - "title": "Sort Direction" + "title": "Sort Direction", + "nullable": true } } ], @@ -16561,15 +15857,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true } }, { @@ -16577,16 +15867,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, { @@ -16594,15 +15878,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Query" + "title": "Query", + "type": "string", + "nullable": true } }, { @@ -16610,15 +15888,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Has Commits" + "title": "Has Commits", + "type": "boolean", + "nullable": true } }, { @@ -16626,18 +15898,12 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, { @@ -16645,20 +15911,14 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "enum": [ - "true", - "allow", - "false" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Is Archived" + "title": "Is Archived", + "type": "string", + "nullable": true, + "enum": [ + "true", + "allow", + "false" + ] } }, { @@ -16666,19 +15926,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "enum": [ - "true", - "false" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Is Public" + "title": "Is Public", + "type": "string", + "nullable": true, + "enum": [ + "true", + "false" + ] } }, { @@ -16686,15 +15940,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Owner" + "title": "Upstream Repo Owner", + "type": "string", + "nullable": true } }, { @@ -16702,15 +15950,9 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Handle" + "title": "Upstream Repo Handle", + "type": "string", + "nullable": true } }, { @@ -16718,16 +15960,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "default": false, - "title": "Match Prefix" + "title": "Match Prefix", + "type": "boolean", + "nullable": true } }, { @@ -16735,19 +15971,13 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - } - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } } ], @@ -17130,16 +16360,10 @@ "in": "query", "required": false, "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "default": false, - "title": "Include Model" + "title": "Include Model", + "type": "boolean", + "nullable": true } } ], @@ -17786,15 +17010,9 @@ "default": "api" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -17821,16 +17039,10 @@ "APIKeyCreateResponse": { "properties": { "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" + "title": "Created At", + "type": "string", + "nullable": true, + "format": "date-time" }, "id": { "type": "string", @@ -17851,16 +17063,10 @@ "default": false }, "last_used_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Used At" + "title": "Last Used At", + "type": "string", + "nullable": true, + "format": "date-time" }, "key": { "type": "string", @@ -17880,16 +17086,10 @@ "APIKeyGetResponse": { "properties": { "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" + "title": "Created At", + "type": "string", + "nullable": true, + "format": "date-time" }, "id": { "type": "string", @@ -17910,16 +17110,10 @@ "default": false }, "last_used_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Used At" + "title": "Last Used At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -17959,15 +17153,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -17980,52 +17168,28 @@ "title": "Updated At" }, "default_dataset": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset" + "title": "Default Dataset", + "type": "string", + "nullable": true, + "format": "uuid" }, "num_reviewers_per_item": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Num Reviewers Per Item", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "enable_reservations": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Enable Reservations", - "default": true + "default": true, + "type": "boolean", + "nullable": true }, "reservation_minutes": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Reservation Minutes", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "id": { "type": "string", @@ -18053,16 +17217,10 @@ "title": "Queue Id" }, "last_reviewed_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Reviewed Time" + "title": "Last Reviewed Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "added_at": { "type": "string", @@ -18086,28 +17244,16 @@ "AnnotationQueueRunUpdateSchema": { "properties": { "last_reviewed_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Reviewed Time" + "title": "Last Reviewed Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "added_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Added At" + "title": "Added At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -18120,15 +17266,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -18141,52 +17281,28 @@ "title": "Updated At" }, "default_dataset": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset" + "title": "Default Dataset", + "type": "string", + "nullable": true, + "format": "uuid" }, "num_reviewers_per_item": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Num Reviewers Per Item", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "enable_reservations": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Enable Reservations", - "default": true + "default": true, + "type": "boolean", + "nullable": true }, "reservation_minutes": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Reservation Minutes", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "id": { "type": "string", @@ -18215,15 +17331,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -18236,52 +17346,28 @@ "title": "Updated At" }, "default_dataset": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset" + "title": "Default Dataset", + "type": "string", + "nullable": true, + "format": "uuid" }, "num_reviewers_per_item": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Num Reviewers Per Item", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "enable_reservations": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Enable Reservations", - "default": true + "default": true, + "type": "boolean", + "nullable": true }, "reservation_minutes": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Reservation Minutes", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "id": { "type": "string", @@ -18325,50 +17411,26 @@ "AnnotationQueueUpdateSchema": { "properties": { "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "default_dataset": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset" + "title": "Default Dataset", + "type": "string", + "nullable": true, + "format": "uuid" }, "num_reviewers_per_item": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], "title": "Num Reviewers Per Item", - "default": 1 + "default": 1, + "type": "integer", + "nullable": true }, "enable_reservations": { "type": "boolean", @@ -18376,15 +17438,9 @@ "default": true }, "reservation_minutes": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Reservation Minutes" + "title": "Reservation Minutes", + "type": "integer", + "nullable": true } }, "type": "object", @@ -18399,15 +17455,9 @@ "default": "app" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -18433,15 +17483,9 @@ "default": "auto_eval" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -18451,104 +17495,56 @@ "BasicAuthMemberCreate": { "properties": { "user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "User Id" + "title": "User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "ls_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Ls User Id" + "title": "Ls User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "email": { "type": "string", "title": "Email" }, "read_only": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Read Only" + "title": "Read Only", + "type": "boolean", + "nullable": true }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "workspace_role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Role Id" + "title": "Workspace Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "workspace_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Workspace Ids" + "title": "Workspace Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, "type": "object", @@ -18573,26 +17569,14 @@ "BasicAuthUserPatch": { "properties": { "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -18638,207 +17622,107 @@ "BodyParamsForRunSchema": { "properties": { "id": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "trace": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Trace" + "title": "Trace", + "type": "string", + "nullable": true, + "format": "uuid" }, "parent_run": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run" + "title": "Parent Run", + "type": "string", + "nullable": true, + "format": "uuid" }, "run_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunTypeEnum" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunTypeEnum" }, "session": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "reference_example": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Reference Example" + "title": "Reference Example", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "execution_order": { - "anyOf": [ - { - "type": "integer", - "maximum": 1.0, - "minimum": 1.0 - }, - { - "type": "null" - } - ], - "title": "Execution Order" + "title": "Execution Order", + "type": "integer", + "nullable": true, + "maximum": 1.0, + "minimum": 1.0 }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "error": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "boolean", + "nullable": true }, "query": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Query" + "title": "Query", + "type": "string", + "nullable": true }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "trace_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter" + "title": "Trace Filter", + "type": "string", + "nullable": true }, "tree_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter" + "title": "Tree Filter", + "type": "string", + "nullable": true }, "is_root": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Root" + "title": "Is Root", + "type": "boolean", + "nullable": true }, "data_source_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunsFilterDataSourceTypeEnum" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunsFilterDataSourceTypeEnum" }, "cursor": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Cursor" + "title": "Cursor", + "type": "string", + "nullable": true }, "limit": { "type": "integer", @@ -18916,24 +17800,10 @@ "title": "Source Dataset Id" }, "as_of": { - "anyOf": [ - { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "string" - } - ], - "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used." - }, - { - "type": "null" - } - ], - "title": "As Of" + "title": "As Of", + "type": null, + "nullable": true, + "description": "Only modifications made on or before this time are included. If None, the latest version of the dataset is used." }, "examples": { "items": { @@ -19013,15 +17883,9 @@ "title": "Input Keys" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "data_type": { "$ref": "#/components/schemas/DataType", @@ -19036,15 +17900,9 @@ "default": [] }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -19137,16 +17995,10 @@ "title": "Updated At" }, "finished_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Finished At" + "title": "Finished At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -19304,40 +18156,22 @@ "title": "Bucket Name" }, "prefix": { - "anyOf": [ - { - "type": "string", - "maxLength": 2048 - }, - { - "type": "null" - } - ], - "title": "Prefix" + "title": "Prefix", + "type": "string", + "nullable": true, + "maxLength": 2048 }, "region": { - "anyOf": [ - { - "type": "string", - "minLength": 1 - }, - { - "type": "null" - } - ], - "title": "Region" + "title": "Region", + "type": "string", + "nullable": true, + "minLength": 1 }, "endpoint_url": { - "anyOf": [ - { - "type": "string", - "maxLength": 2048 - }, - { - "type": "null" - } - ], - "title": "Endpoint Url" + "title": "Endpoint Url", + "type": "string", + "nullable": true, + "maxLength": 2048 } }, "type": "object", @@ -19407,15 +18241,9 @@ "default": 0 }, "errors": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Errors" + "title": "Errors", + "type": "object", + "nullable": true }, "created_at": { "type": "string", @@ -19428,16 +18256,10 @@ "title": "Updated At" }, "finished_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Finished At" + "title": "Finished At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -19566,16 +18388,10 @@ "title": "Id" }, "comment_by": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comment By" + "title": "Comment By", + "type": "string", + "nullable": true, + "format": "uuid" }, "comment_on": { "type": "string", @@ -19583,16 +18399,10 @@ "title": "Comment On" }, "parent_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Id" + "title": "Parent Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "content": { "type": "string", @@ -19609,15 +18419,9 @@ "title": "Updated At" }, "comment_by_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment By Name" + "title": "Comment By Name", + "type": "string", + "nullable": true }, "num_sub_comments": { "type": "integer", @@ -19628,15 +18432,9 @@ "title": "Num Likes" }, "liked_by_auth_user": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Liked By Auth User" + "title": "Liked By Auth User", + "type": "boolean", + "nullable": true } }, "type": "object", @@ -19662,18 +18460,12 @@ "title": "Manifest" }, "examples": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/RepoExampleResponse" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Examples" + "title": "Examples", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/RepoExampleResponse" + } } }, "type": "object", @@ -19701,16 +18493,10 @@ "title": "Repo Id" }, "parent_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Id" + "title": "Parent Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "commit_hash": { "type": "string", @@ -19743,15 +18529,9 @@ "title": "Num Views" }, "parent_commit_hash": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Commit Hash" + "title": "Parent Commit Hash", + "type": "string", + "nullable": true } }, "type": "object", @@ -19777,26 +18557,14 @@ "title": "Id" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "tenant_id": { "type": "string", @@ -19819,15 +18587,9 @@ "title": "Reference Dataset Id" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "experiments_info": { "items": { @@ -19837,15 +18599,9 @@ "title": "Experiments Info" }, "feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true } }, "type": "object", @@ -19868,26 +18624,14 @@ "title": "Id" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "tenant_id": { "type": "string", @@ -19910,15 +18654,9 @@ "title": "Reference Dataset Id" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true } }, "type": "object", @@ -19948,26 +18686,14 @@ "title": "Experiment Ids" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -19985,15 +18711,9 @@ "title": "Reference Dataset Id" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true } }, "type": "object", @@ -20044,15 +18764,9 @@ "title": "Repo" }, "commit": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit" + "title": "Commit", + "type": "string", + "nullable": true } }, "type": "object", @@ -20073,16 +18787,10 @@ "$ref": "#/components/schemas/FeedbackConfig" }, "is_lower_score_better": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Is Lower Score Better", - "default": false + "default": false, + "type": "boolean", + "nullable": true } }, "type": "object", @@ -20099,30 +18807,18 @@ "title": "Manifest" }, "parent_commit": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Commit" + "title": "Parent Commit", + "type": "string", + "nullable": true }, "example_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Example Run Ids" + "title": "Example Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, "type": "object", @@ -20150,44 +18846,26 @@ "title": "Repo Handle" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "readme": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Readme" + "title": "Readme", + "type": "string", + "nullable": true }, "is_public": { "type": "boolean", "title": "Is Public" }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, "type": "object", @@ -20243,28 +18921,16 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "index": { - "anyOf": [ - { - "type": "integer", - "maximum": 100.0, - "minimum": 0.0 - }, - { - "type": "null" - } - ], - "title": "Index" + "title": "Index", + "type": "integer", + "nullable": true, + "maximum": 100.0, + "minimum": 0.0 }, "chart_type": { "$ref": "#/components/schemas/CustomChartType" @@ -20277,37 +18943,20 @@ "title": "Series" }, "section_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Section Id" + "title": "Section Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "common_filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" } }, "type": "object", @@ -20328,14 +18977,9 @@ "title": "Series" }, "common_filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" } }, "type": "object", @@ -20396,15 +19040,9 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "index": { "type": "integer", @@ -20419,29 +19057,17 @@ "title": "Section Id" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "series": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/CustomChartSeries" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Series" + "title": "Series", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/CustomChartSeries" + } } }, "type": "object", @@ -20462,28 +19088,17 @@ "title": "Name" }, "filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" }, "metric": { "$ref": "#/components/schemas/CustomChartMetric" }, "feedback_key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Feedback Key" + "title": "Feedback Key", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -20506,28 +19121,17 @@ "title": "Name" }, "filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" }, "metric": { "$ref": "#/components/schemas/CustomChartMetric" }, "feedback_key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Feedback Key" + "title": "Feedback Key", + "type": "string", + "nullable": true } }, "type": "object", @@ -20540,53 +19144,29 @@ "CustomChartSeriesFilters": { "properties": { "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "trace_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter" + "title": "Trace Filter", + "type": "string", + "nullable": true }, "tree_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter" + "title": "Tree Filter", + "type": "string", + "nullable": true }, "session": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array", - "minItems": 1 - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + }, + "minItems": 1 } }, "type": "object", @@ -20599,40 +19179,23 @@ "title": "Name" }, "filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" }, "metric": { "$ref": "#/components/schemas/CustomChartMetric" }, "feedback_key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Feedback Key" + "title": "Feedback Key", + "type": "string", + "nullable": true }, "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -20674,15 +19237,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Description", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "index": { "anyOf": [ @@ -20753,15 +19314,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Metadata", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "common_filters": { "anyOf": [ @@ -20770,15 +19329,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Common Filters", "default": { "__missing__": "__missing__" - } + }, + "nullable": true } }, "type": "object", @@ -20805,12 +19362,10 @@ }, { "type": "object" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true } }, "type": "object", @@ -20834,16 +19389,10 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "stride": { "$ref": "#/components/schemas/TimedeltaInput", @@ -20854,30 +19403,18 @@ } }, "after_index": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "After Index" + "title": "After Index", + "type": "integer", + "nullable": true }, "tag_value_id": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tag Value Id" + "title": "Tag Value Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, "type": "object", @@ -20899,16 +19436,10 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "stride": { "$ref": "#/components/schemas/TimedeltaInput", @@ -20948,28 +19479,16 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "index": { - "anyOf": [ - { - "type": "integer", - "maximum": 100.0, - "minimum": 0.0 - }, - { - "type": "null" - } - ], - "title": "Index" + "title": "Index", + "type": "integer", + "nullable": true, + "maximum": 100.0, + "minimum": 0.0 }, "id": { "type": "string", @@ -20999,28 +19518,16 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "index": { - "anyOf": [ - { - "type": "integer", - "maximum": 100.0, - "minimum": 0.0 - }, - { - "type": "null" - } - ], - "title": "Index" + "title": "Index", + "type": "integer", + "nullable": true, + "maximum": 100.0, + "minimum": 0.0 } }, "type": "object", @@ -21036,28 +19543,16 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "index": { - "anyOf": [ - { - "type": "integer", - "maximum": 100.0, - "minimum": 0.0 - }, - { - "type": "null" - } - ], - "title": "Index" + "title": "Index", + "type": "integer", + "nullable": true, + "maximum": 100.0, + "minimum": 0.0 }, "id": { "type": "string", @@ -21065,39 +19560,21 @@ "title": "Id" }, "chart_count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Chart Count" + "title": "Chart Count", + "type": "integer", + "nullable": true }, "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" + "title": "Created At", + "type": "string", + "nullable": true, + "format": "date-time" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -21130,15 +19607,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Description", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "index": { "anyOf": [ @@ -21171,16 +19646,10 @@ "title": "Started On" }, "ends_on": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Ends On" + "title": "Ends On", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -21208,15 +19677,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -21224,49 +19687,26 @@ "title": "Created At" }, "inputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs Schema Definition" + "title": "Inputs Schema Definition", + "type": "object", + "nullable": true }, "outputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs Schema Definition" + "title": "Outputs Schema Definition", + "type": "object", + "nullable": true }, "externally_managed": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Externally Managed", - "default": false + "default": false, + "type": "boolean", + "nullable": true }, "data_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/DataType" - }, - { - "type": "null" - } - ], - "default": "kv" + "default": "kv", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/DataType" }, "id": { "type": "string", @@ -21292,16 +19732,10 @@ "title": "Modified At" }, "last_session_start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Session Start Time" + "title": "Last Session Start Time", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -21323,15 +19757,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -21339,61 +19767,31 @@ "title": "Created At" }, "inputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs Schema Definition" + "title": "Inputs Schema Definition", + "type": "object", + "nullable": true }, "outputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs Schema Definition" + "title": "Outputs Schema Definition", + "type": "object", + "nullable": true }, "externally_managed": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Externally Managed", - "default": false + "default": false, + "type": "boolean", + "nullable": true }, "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "data_type": { "$ref": "#/components/schemas/DataType", @@ -21451,28 +19849,16 @@ "title": "Dataset Id" }, "tag": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], "title": "Tag", - "default": "latest" + "default": "latest", + "type": "string", + "nullable": true }, "last_updated_version": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Updated Version" + "title": "Last Updated Version", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -21485,16 +19871,10 @@ "DatasetIndexRequest": { "properties": { "tag": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], "title": "Tag", - "default": "latest" + "default": "latest", + "type": "string", + "nullable": true } }, "type": "object", @@ -21508,15 +19888,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -21524,49 +19898,26 @@ "title": "Created At" }, "inputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs Schema Definition" + "title": "Inputs Schema Definition", + "type": "object", + "nullable": true }, "outputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs Schema Definition" + "title": "Outputs Schema Definition", + "type": "object", + "nullable": true }, "externally_managed": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Externally Managed", - "default": false + "default": false, + "type": "boolean", + "nullable": true }, "data_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/DataType" - }, - { - "type": "null" - } - ], - "default": "kv" + "default": "kv", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/DataType" }, "id": { "type": "string", @@ -21594,15 +19945,9 @@ "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -21610,49 +19955,26 @@ "title": "Created At" }, "inputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs Schema Definition" + "title": "Inputs Schema Definition", + "type": "object", + "nullable": true }, "outputs_schema_definition": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs Schema Definition" + "title": "Outputs Schema Definition", + "type": "object", + "nullable": true }, "externally_managed": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], "title": "Externally Managed", - "default": false + "default": false, + "type": "boolean", + "nullable": true }, "data_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/DataType" - }, - { - "type": "null" - } - ], - "default": "kv" + "default": "kv", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/DataType" }, "id": { "type": "string", @@ -21702,15 +20024,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Name", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "description": { "anyOf": [ @@ -21719,15 +20039,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Description", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "inputs_schema_definition": { "anyOf": [ @@ -21736,15 +20054,13 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Inputs Schema Definition", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "outputs_schema_definition": { "anyOf": [ @@ -21753,29 +20069,21 @@ }, { "$ref": "#/components/schemas/Missing" - }, - { - "type": "null" } ], "title": "Outputs Schema Definition", "default": { "__missing__": "__missing__" - } + }, + "nullable": true }, "patch_examples": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/ExampleUpdate" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Patch Examples" + "title": "Patch Examples", + "type": "object", + "nullable": true, + "additionalProperties": { + "$ref": "#/components/schemas/ExampleUpdate" + } } }, "type": "object", @@ -21785,18 +20093,12 @@ "DatasetVersion": { "properties": { "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "as_of": { "type": "string", @@ -21814,70 +20116,40 @@ "EvaluatorStructuredOutput": { "properties": { "hub_ref": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Hub Ref" + "title": "Hub Ref", + "type": "string", + "nullable": true }, "prompt": { - "anyOf": [ - { - "items": { - "type": "array", - "maxItems": 2, - "minItems": 2, - "items": { - "type": "string" - } - }, - "type": "array" - }, - { - "type": "null" + "title": "Prompt", + "type": "array", + "nullable": true, + "items": { + "type": "array", + "maxItems": 2, + "minItems": 2, + "items": { + "type": "string" } - ], - "title": "Prompt" + } }, "template_format": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Template Format" + "title": "Template Format", + "type": "string", + "nullable": true }, "schema": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Schema" + "title": "Schema", + "type": "object", + "nullable": true }, "variable_mapping": { - "anyOf": [ - { - "additionalProperties": { - "type": "string" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Variable Mapping" + "title": "Variable Mapping", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "string" + } }, "model": { "type": "object", @@ -21906,15 +20178,9 @@ "Example": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -21922,27 +20188,15 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { "type": "object", @@ -21963,16 +20217,10 @@ "title": "Name" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -21988,15 +20236,9 @@ "ExampleBulkCreate": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -22004,38 +20246,20 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "split": { "anyOf": [ @@ -22047,25 +20271,17 @@ }, { "type": "string" - }, - { - "type": "null" } ], "title": "Split", - "default": "base" + "default": "base", + "nullable": true }, "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "use_source_run_io": { "type": "boolean", @@ -22073,16 +20289,10 @@ "default": false }, "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" + "title": "Created At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -22095,15 +20305,9 @@ "ExampleCreate": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -22111,38 +20315,20 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "split": { "anyOf": [ @@ -22154,25 +20340,17 @@ }, { "type": "string" - }, - { - "type": "null" } ], "title": "Split", - "default": "base" + "default": "base", + "nullable": true }, "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "use_source_run_io": { "type": "boolean", @@ -22253,49 +20431,25 @@ "ExampleUpdate": { "properties": { "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "split": { "anyOf": [ @@ -22307,12 +20461,10 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Split" + "title": "Split", + "nullable": true } }, "type": "object", @@ -22322,49 +20474,25 @@ "ExampleUpdateWithID": { "properties": { "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "split": { "anyOf": [ @@ -22376,12 +20504,10 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Split" + "title": "Split", + "nullable": true }, "id": { "type": "string", @@ -22399,15 +20525,9 @@ "ExampleWithRuns": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -22415,27 +20535,15 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { "type": "object", @@ -22456,16 +20564,10 @@ "title": "Name" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" }, "runs": { "items": { @@ -22489,15 +20591,9 @@ "ExampleWithRunsCH": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -22505,27 +20601,15 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { "type": "object", @@ -22546,16 +20630,10 @@ "title": "Name" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" }, "runs": { "items": { @@ -22579,56 +20657,32 @@ "ExperimentResultRow": { "properties": { "row_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Row Id" + "title": "Row Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "inputs": { "type": "object", "title": "Inputs" }, "expected_outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Expected Outputs" + "title": "Expected Outputs", + "type": "object", + "nullable": true }, "actual_outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Actual Outputs" + "title": "Actual Outputs", + "type": "object", + "nullable": true }, "evaluation_scores": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/FeedbackCreateCoreSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Evaluation Scores" + "title": "Evaluation Scores", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/FeedbackCreateCoreSchema" + } }, "start_time": { "type": "string", @@ -22641,37 +20695,19 @@ "title": "End Time" }, "run_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Name" + "title": "Run Name", + "type": "string", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "run_metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Run Metadata" + "title": "Run Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -22690,63 +20726,33 @@ "title": "Experiment Name" }, "experiment_description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Experiment Description" + "title": "Experiment Description", + "type": "string", + "nullable": true }, "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "dataset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Name" + "title": "Dataset Name", + "type": "string", + "nullable": true }, "dataset_description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Description" + "title": "Dataset Description", + "type": "string", + "nullable": true }, "summary_experiment_scores": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/FeedbackCreateCoreSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Summary Experiment Scores" + "title": "Summary Experiment Scores", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/FeedbackCreateCoreSchema" + } }, "results": { "items": { @@ -22766,15 +20772,9 @@ "title": "Experiment End Time" }, "experiment_metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Experiment Metadata" + "title": "Experiment Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -22811,16 +20811,10 @@ "title": "Value" }, "label": { - "anyOf": [ - { - "type": "string", - "minLength": 1 - }, - { - "type": "null" - } - ], - "title": "Label" + "title": "Label", + "type": "string", + "nullable": true, + "minLength": 1 } }, "type": "object", @@ -22836,40 +20830,22 @@ "$ref": "#/components/schemas/FeedbackType" }, "min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Min" + "title": "Min", + "type": "number", + "nullable": true }, "max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Max" + "title": "Max", + "type": "number", + "nullable": true }, "categories": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/FeedbackCategory" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Categories" + "title": "Categories", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/FeedbackCategory" + } } }, "type": "object", @@ -22898,15 +20874,9 @@ "title": "Modified At" }, "is_lower_score_better": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Lower Score Better" + "title": "Is Lower Score Better", + "type": "boolean", + "nullable": true } }, "type": "object", @@ -22945,12 +20915,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true }, "value": { "anyOf": [ @@ -22968,23 +20936,15 @@ }, { "type": "object" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true }, "comment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true }, "correction": { "anyOf": [ @@ -22993,36 +20953,22 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Correction" + "title": "Correction", + "nullable": true }, "feedback_group_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Feedback Group Id" + "title": "Feedback Group Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "comparative_experiment_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comparative Experiment Id" + "title": "Comparative Experiment Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "id": { "type": "string", @@ -23042,22 +20988,15 @@ }, { "$ref": "#/components/schemas/AutoEvalFeedbackSource" - }, - { - "type": "null" } ], - "title": "Feedback Source" + "title": "Feedback Source", + "nullable": true }, "feedback_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackConfig" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackConfig" } }, "type": "object", @@ -23094,12 +21033,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true }, "value": { "anyOf": [ @@ -23117,23 +21054,15 @@ }, { "type": "object" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true }, "comment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true }, "correction": { "anyOf": [ @@ -23142,60 +21071,34 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Correction" + "title": "Correction", + "nullable": true }, "feedback_group_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Feedback Group Id" + "title": "Feedback Group Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "comparative_experiment_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comparative Experiment Id" + "title": "Comparative Experiment Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Run Id" + "title": "Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "id": { "type": "string", @@ -23215,22 +21118,15 @@ }, { "$ref": "#/components/schemas/AutoEvalFeedbackSource" - }, - { - "type": "null" } ], - "title": "Feedback Source" + "title": "Feedback Source", + "nullable": true }, "feedback_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackConfig" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackConfig" } }, "type": "object", @@ -23252,12 +21148,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true }, "value": { "anyOf": [ @@ -23272,23 +21166,15 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true }, "comment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true }, "correction": { "anyOf": [ @@ -23297,23 +21183,15 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Correction" + "title": "Correction", + "nullable": true }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -23350,26 +21228,15 @@ "FeedbackIngestTokenCreateSchema": { "properties": { "expires_in": { - "anyOf": [ - { - "$ref": "#/components/schemas/TimedeltaInput" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TimedeltaInput" }, "expires_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Expires At" + "title": "Expires At", + "type": "string", + "nullable": true, + "format": "date-time" }, "run_id": { "type": "string", @@ -23381,14 +21248,9 @@ "title": "Feedback Key" }, "feedback_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackConfig" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackConfig" } }, "type": "object", @@ -23465,12 +21327,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true }, "value": { "anyOf": [ @@ -23488,23 +21348,15 @@ }, { "type": "object" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true }, "comment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true }, "correction": { "anyOf": [ @@ -23513,60 +21365,34 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Correction" + "title": "Correction", + "nullable": true }, "feedback_group_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Feedback Group Id" + "title": "Feedback Group Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "comparative_experiment_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comparative Experiment Id" + "title": "Comparative Experiment Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Run Id" + "title": "Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "id": { "type": "string", @@ -23574,14 +21400,9 @@ "title": "Id" }, "feedback_source": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackSource" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackSource" } }, "type": "object", @@ -23595,38 +21416,20 @@ "FeedbackSource": { "properties": { "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" + "title": "Type", + "type": "string", + "nullable": true }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "User Id" + "title": "User Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -23655,12 +21458,10 @@ }, { "type": "boolean" - }, - { - "type": "null" } ], - "title": "Score" + "title": "Score", + "nullable": true }, "value": { "anyOf": [ @@ -23678,23 +21479,15 @@ }, { "type": "object" - }, - { - "type": "null" } ], - "title": "Value" + "title": "Value", + "nullable": true }, "comment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Comment" + "title": "Comment", + "type": "string", + "nullable": true }, "correction": { "anyOf": [ @@ -23703,22 +21496,15 @@ }, { "type": "string" - }, - { - "type": "null" } ], - "title": "Correction" + "title": "Correction", + "nullable": true }, "feedback_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackConfig" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackConfig" } }, "type": "object", @@ -23728,196 +21514,102 @@ "FilterQueryParamsForRunSchema": { "properties": { "id": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "trace": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Trace" + "title": "Trace", + "type": "string", + "nullable": true, + "format": "uuid" }, "parent_run": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run" + "title": "Parent Run", + "type": "string", + "nullable": true, + "format": "uuid" }, "run_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunTypeEnum" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunTypeEnum" }, "session": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Session" + "title": "Session", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "reference_example": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Reference Example" + "title": "Reference Example", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "execution_order": { - "anyOf": [ - { - "type": "integer", - "maximum": 1.0, - "minimum": 1.0 - }, - { - "type": "null" - } - ], - "title": "Execution Order" + "title": "Execution Order", + "type": "integer", + "nullable": true, + "maximum": 1.0, + "minimum": 1.0 }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "error": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "boolean", + "nullable": true }, "query": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Query" + "title": "Query", + "type": "string", + "nullable": true }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "trace_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter" + "title": "Trace Filter", + "type": "string", + "nullable": true }, "tree_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter" + "title": "Tree Filter", + "type": "string", + "nullable": true }, "is_root": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Root" + "title": "Is Root", + "type": "boolean", + "nullable": true }, "data_source_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunsFilterDataSourceTypeEnum" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunsFilterDataSourceTypeEnum" } }, "type": "object", @@ -23927,52 +21619,28 @@ "FilterView": { "properties": { "filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter String" + "title": "Filter String", + "type": "string", + "nullable": true }, "trace_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter String" + "title": "Trace Filter String", + "type": "string", + "nullable": true }, "tree_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter String" + "title": "Tree Filter String", + "type": "string", + "nullable": true }, "display_name": { "type": "string", "title": "Display Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -23980,16 +21648,10 @@ "title": "Id" }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -24014,52 +21676,28 @@ "FilterViewCreate": { "properties": { "filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter String" + "title": "Filter String", + "type": "string", + "nullable": true }, "trace_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter String" + "title": "Trace Filter String", + "type": "string", + "nullable": true }, "tree_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter String" + "title": "Tree Filter String", + "type": "string", + "nullable": true }, "display_name": { "type": "string", "title": "Display Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -24071,59 +21709,29 @@ "FilterViewUpdate": { "properties": { "filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter String" + "title": "Filter String", + "type": "string", + "nullable": true }, "display_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Display Name" + "title": "Display Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "trace_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter String" + "title": "Trace Filter String", + "type": "string", + "nullable": true }, "tree_filter_string": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter String" + "title": "Tree Filter String", + "type": "string", + "nullable": true } }, "type": "object", @@ -24136,51 +21744,27 @@ "title": "Repo Handle" }, "readme": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Readme" + "title": "Readme", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "is_public": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Public" + "title": "Is Public", + "type": "boolean", + "nullable": true } }, "type": "object", @@ -24193,19 +21777,13 @@ "GenerateSyntheticExamplesBody": { "properties": { "example_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Example Ids" + "title": "Example Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "num_examples": { "type": "integer", @@ -24256,16 +21834,10 @@ "title": "Organization Id" }, "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -24278,43 +21850,25 @@ "title": "User Id" }, "ls_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Ls User Id" + "title": "Ls User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "read_only": { "type": "boolean", "title": "Read Only" }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true }, "access_scope": { "$ref": "#/components/schemas/AccessScope", @@ -24334,27 +21888,15 @@ "IdentityAnnotationQueueRunStatusCreateSchema": { "properties": { "status": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status" + "title": "Status", + "type": "string", + "nullable": true }, "override_added_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Override Added At" + "title": "Override Added At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -24369,27 +21911,15 @@ "title": "User Id" }, "read_only": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Read Only" + "title": "Read Only", + "type": "boolean", + "nullable": true }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -24401,15 +21931,9 @@ "IdentityPatch": { "properties": { "read_only": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Read Only" + "title": "Read Only", + "type": "boolean", + "nullable": true }, "role_id": { "type": "string", @@ -24430,16 +21954,10 @@ "title": "Version" }, "license_expiration_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "License Expiration Time" + "title": "License Expiration Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "batch_ingest_config": { "$ref": "#/components/schemas/BatchIngestConfig" @@ -24566,28 +22084,16 @@ }, "cursors": { "additionalProperties": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "type": "object", "title": "Cursors" }, "parsed_query": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parsed Query" + "title": "Parsed Query", + "type": "string", + "nullable": true } }, "type": "object", @@ -24608,28 +22114,16 @@ }, "cursors": { "additionalProperties": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "type": "object", "title": "Cursors" }, "parsed_query": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parsed Query" + "title": "Parsed Query", + "type": "string", + "nullable": true } }, "type": "object", @@ -24671,28 +22165,16 @@ }, "cursors": { "additionalProperties": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "type": "object", "title": "Cursors" }, "parsed_query": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parsed Query" + "title": "Parsed Query", + "type": "string", + "nullable": true } }, "type": "object", @@ -24731,16 +22213,10 @@ "title": "Organization Id" }, "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -24753,80 +22229,44 @@ "title": "User Id" }, "ls_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Ls User Id" + "title": "Ls User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "read_only": { "type": "boolean", "title": "Read Only" }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true }, "access_scope": { "$ref": "#/components/schemas/AccessScope", "default": "workspace" }, "email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Email" + "title": "Email", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "avatar_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Avatar Url" + "title": "Avatar Url", + "type": "string", + "nullable": true } }, "type": "object", @@ -24881,15 +22321,9 @@ "default": "model" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true } }, "type": "object", @@ -24903,16 +22337,10 @@ "title": "Name" }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "match_path": { "items": { @@ -24955,15 +22383,9 @@ "title": "Completion Cost" }, "provider": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Provider" + "title": "Provider", + "type": "string", + "nullable": true } }, "type": "object", @@ -24983,16 +22405,10 @@ "title": "Name" }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "match_path": { "items": { @@ -25035,15 +22451,9 @@ "title": "Completion Cost" }, "provider": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Provider" + "title": "Provider", + "type": "string", + "nullable": true } }, "type": "object", @@ -25074,15 +22484,9 @@ "title": "Columns" }, "subtitle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Subtitle" + "title": "Subtitle", + "type": "string", + "nullable": true }, "rows": { "items": { @@ -25097,32 +22501,20 @@ "title": "Chart Spec" }, "click_target": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Click Target" + "title": "Click Target", + "type": "string", + "nullable": true }, "toggleable_marks": { - "anyOf": [ - { - "additionalProperties": { - "items": { - "type": "integer" - }, - "type": "array" - }, - "type": "object" + "title": "Toggleable Marks", + "type": "object", + "nullable": true, + "additionalProperties": { + "items": { + "type": "integer" }, - { - "type": "null" - } - ], - "title": "Toggleable Marks" + "type": "array" + } } }, "type": "object", @@ -25143,25 +22535,14 @@ "title": "Session" }, "tag": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tag" + "title": "Tag", + "type": "string", + "nullable": true }, "metadata": { - "anyOf": [ - { - "$ref": "#/components/schemas/MetadataKeyValue" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/MetadataKeyValue" } }, "type": "object", @@ -25250,15 +22631,9 @@ "title": "Examples" }, "overall_feedback": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Overall Feedback" + "title": "Overall Feedback", + "type": "string", + "nullable": true } }, "type": "object", @@ -25278,15 +22653,9 @@ "title": "Prompt" }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true } }, "type": "object", @@ -25324,38 +22693,20 @@ "OrgIdentityPatch": { "properties": { "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -25374,16 +22725,10 @@ "title": "Organization Id" }, "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -25396,80 +22741,44 @@ "title": "User Id" }, "ls_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Ls User Id" + "title": "Ls User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "read_only": { "type": "boolean", "title": "Read Only" }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true }, "access_scope": { "$ref": "#/components/schemas/AccessScope", "default": "workspace" }, "email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Email" + "title": "Email", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "avatar_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Avatar Url" + "title": "Avatar Url", + "type": "string", + "nullable": true }, "tenant_ids": { "items": { @@ -25503,65 +22812,35 @@ "default": false }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "workspace_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Workspace Ids" + "title": "Workspace Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "workspace_role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Role Id" + "title": "Workspace Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "access_scope": { "$ref": "#/components/schemas/AccessScope", @@ -25573,40 +22852,22 @@ "title": "Id" }, "user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "User Id" + "title": "User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -25614,15 +22875,9 @@ "title": "Created At" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true }, "tenant_ids": { "items": { @@ -25645,27 +22900,15 @@ "Organization": { "properties": { "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "display_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Display Name" + "title": "Display Name", + "type": "string", + "nullable": true }, "config": { "$ref": "#/components/schemas/OrganizationConfig" @@ -25683,60 +22926,34 @@ "title": "Is Personal" }, "tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/PaymentPlanTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/PaymentPlanTier" }, "payment_method": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripePaymentMethodInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripePaymentMethodInfo" }, "has_cancelled": { "type": "boolean", "title": "Has Cancelled" }, "end_of_billing_period": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Of Billing Period" + "title": "End Of Billing Period", + "type": "string", + "nullable": true, + "format": "date-time" }, "current_plan": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomerVisiblePlanInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomerVisiblePlanInfo" }, "upcoming_plan": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomerVisiblePlanInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomerVisiblePlanInfo" }, "reached_max_workspaces": { "type": "boolean", @@ -25766,16 +22983,10 @@ "OrganizationBillingInfo": { "properties": { "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "display_name": { "type": "string", @@ -25797,56 +23008,30 @@ "title": "Is Personal" }, "tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/PaymentPlanTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/PaymentPlanTier" }, "payment_method": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripePaymentMethodInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripePaymentMethodInfo" }, "end_of_billing_period": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Of Billing Period" + "title": "End Of Billing Period", + "type": "string", + "nullable": true, + "format": "date-time" }, "current_plan": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomerVisiblePlanInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomerVisiblePlanInfo" }, "upcoming_plan": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomerVisiblePlanInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomerVisiblePlanInfo" }, "reached_max_workspaces": { "type": "boolean", @@ -25893,37 +23078,19 @@ "default": true }, "startup_plan_approval_date": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Startup Plan Approval Date" + "title": "Startup Plan Approval Date", + "type": "string", + "nullable": true }, "partner_plan_approval_date": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Partner Plan Approval Date" + "title": "Partner Plan Approval Date", + "type": "string", + "nullable": true }, "premier_plan_approval_date": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Premier Plan Approval Date" + "title": "Premier Plan Approval Date", + "type": "string", + "nullable": true }, "can_serve_datasets": { "type": "boolean", @@ -26043,27 +23210,15 @@ "OrganizationInfo": { "properties": { "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "display_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Display Name" + "title": "Display Name", + "type": "string", + "nullable": true }, "config": { "$ref": "#/components/schemas/OrganizationConfig" @@ -26073,14 +23228,9 @@ "title": "Is Personal" }, "tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/PaymentPlanTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/PaymentPlanTier" }, "reached_max_workspaces": { "type": "boolean", @@ -26106,15 +23256,9 @@ "default": false }, "sso_login_slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Sso Login Slug" + "title": "Sso Login Slug", + "type": "string", + "nullable": true } }, "type": "object", @@ -26168,40 +23312,22 @@ "title": "Display Name" }, "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" + "title": "Created At", + "type": "string", + "nullable": true, + "format": "date-time" }, "created_by_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By User Id" + "title": "Created By User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" }, "is_personal": { "type": "boolean", @@ -26212,15 +23338,9 @@ "title": "Disabled" }, "sso_login_slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Sso Login Slug" + "title": "Sso Login Slug", + "type": "string", + "nullable": true }, "sso_only": { "type": "boolean", @@ -26241,15 +23361,9 @@ "OrganizationUpdate": { "properties": { "display_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Display Name" + "title": "Display Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -26296,65 +23410,35 @@ "default": false }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "workspace_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Workspace Ids" + "title": "Workspace Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "workspace_role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Role Id" + "title": "Workspace Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "access_scope": { "$ref": "#/components/schemas/AccessScope", @@ -26366,40 +23450,22 @@ "title": "Id" }, "user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "User Id" + "title": "User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -26407,15 +23473,9 @@ "title": "Created At" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -26438,65 +23498,35 @@ "default": false }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "workspace_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Workspace Ids" + "title": "Workspace Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "workspace_role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Role Id" + "title": "Workspace Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -26540,63 +23570,33 @@ "title": "Secrets" }, "run_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Id" + "title": "Run Id", + "type": "string", + "nullable": true }, "repo_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Repo Id" + "title": "Repo Id", + "type": "string", + "nullable": true }, "tools": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tools" + "title": "Tools", + "type": "array", + "nullable": true, + "items": {} }, "tool_choice": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tool Choice" + "title": "Tool Choice", + "type": "string", + "nullable": true }, "options": { "$ref": "#/components/schemas/RunnableConfig" }, "project_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Project Name" + "title": "Project Name", + "type": "string", + "nullable": true }, "dataset_id": { "type": "string", @@ -26627,15 +23627,9 @@ "title": "Settings" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -26656,15 +23650,9 @@ "title": "Settings" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -26689,15 +23677,9 @@ "PlaygroundSettingsUpdateRequest": { "properties": { "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -26711,14 +23693,9 @@ "title": "Id" }, "provider": { - "anyOf": [ - { - "$ref": "#/components/schemas/AuthProvider" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/AuthProvider" }, "ls_user_id": { "type": "string", @@ -26726,28 +23703,16 @@ "title": "Ls User Id" }, "saml_provider_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Saml Provider Id" + "title": "Saml Provider Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "provider_user_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Provider User Id" + "title": "Provider User Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -26760,38 +23725,20 @@ "title": "Updated At" }, "email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Email" + "title": "Email", + "type": "string", + "nullable": true }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "email_confirmed_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Email Confirmed At" + "title": "Email Confirmed At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -26811,26 +23758,14 @@ "title": "Id" }, "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "created_at": { "type": "string", @@ -26843,15 +23778,9 @@ "title": "Modified At" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "experiments_info": { "items": { @@ -26861,15 +23790,9 @@ "title": "Experiments Info" }, "feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true } }, "type": "object", @@ -26885,15 +23808,9 @@ "PublicExampleWithRuns": { "properties": { "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "dataset_id": { "type": "string", @@ -26901,27 +23818,15 @@ "title": "Dataset Id" }, "source_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Source Run Id" + "title": "Source Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "inputs": { "type": "object", @@ -26942,16 +23847,10 @@ "title": "Name" }, "modified_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Modified At" + "title": "Modified At", + "type": "string", + "nullable": true, + "format": "date-time" }, "runs": { "items": { @@ -27010,33 +23909,21 @@ "title": "Session Ids" }, "comparative_experiment_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comparative Experiment Id" + "title": "Comparative Experiment Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "filters": { - "anyOf": [ - { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "type": "object" + "title": "Filters", + "type": "object", + "nullable": true, + "additionalProperties": { + "items": { + "type": "string" }, - { - "type": "null" - } - ], - "title": "Filters" + "type": "array" + } }, "offset": { "type": "integer", @@ -27078,21 +23965,15 @@ "title": "Feedback Key" }, "filters": { - "anyOf": [ - { - "additionalProperties": { - "items": { - "type": "string" - }, - "type": "array" - }, - "type": "object" + "title": "Filters", + "type": "object", + "nullable": true, + "additionalProperties": { + "items": { + "type": "string" }, - { - "type": "null" - } - ], - "title": "Filters" + "type": "array" + } }, "offset": { "type": "integer", @@ -27108,16 +23989,10 @@ "default": 100 }, "comparative_experiment_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Comparative Experiment Id" + "title": "Comparative Experiment Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -27131,19 +24006,13 @@ "QueryParamsForPublicRunSchema": { "properties": { "id": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } } }, "type": "object", @@ -27158,38 +24027,20 @@ "title": "Id" }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "session_id": { "type": "string", @@ -27212,26 +24063,14 @@ "title": "Repo Handle" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "readme": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Readme" + "title": "Readme", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -27269,39 +24108,21 @@ "title": "Tags" }, "original_repo_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Original Repo Id" + "title": "Original Repo Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "upstream_repo_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Id" + "title": "Upstream Repo Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "owner": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Owner" + "title": "Owner", + "type": "string", + "nullable": true }, "full_name": { "type": "string", @@ -27320,62 +24141,33 @@ "title": "Num Views" }, "liked_by_auth_user": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Liked By Auth User" + "title": "Liked By Auth User", + "type": "boolean", + "nullable": true }, "last_commit_hash": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Last Commit Hash" + "title": "Last Commit Hash", + "type": "string", + "nullable": true }, "num_commits": { "type": "integer", "title": "Num Commits" }, "original_repo_full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Original Repo Full Name" + "title": "Original Repo Full Name", + "type": "string", + "nullable": true }, "upstream_repo_full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Upstream Repo Full Name" + "title": "Upstream Repo Full Name", + "type": "string", + "nullable": true }, "latest_commit_manifest": { - "anyOf": [ - { - "$ref": "#/components/schemas/CommitManifestResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CommitManifestResponse" } }, "type": "object", @@ -27497,16 +24289,10 @@ "title": "Description" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "permissions": { "items": { @@ -27516,14 +24302,9 @@ "title": "Permissions" }, "access_scope": { - "anyOf": [ - { - "$ref": "#/components/schemas/AccessScope" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/AccessScope" } }, "type": "object", @@ -27561,15 +24342,9 @@ "$ref": "#/components/schemas/RuleLogActionOutcome" }, "payload": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Payload" + "title": "Payload", + "type": "object", + "nullable": true } }, "type": "object", @@ -27591,38 +24366,20 @@ "title": "Run Id" }, "run_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Name" + "title": "Run Name", + "type": "string", + "nullable": true }, "run_type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Type" + "title": "Run Type", + "type": "string", + "nullable": true }, "run_session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Run Session Id" + "title": "Run Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "start_time": { "type": "string", @@ -27635,54 +24392,29 @@ "title": "End Time" }, "add_to_annotation_queue": { - "anyOf": [ - { - "$ref": "#/components/schemas/RuleLogActionResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RuleLogActionResponse" }, "add_to_dataset": { - "anyOf": [ - { - "$ref": "#/components/schemas/RuleLogActionResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RuleLogActionResponse" }, "evaluators": { - "anyOf": [ - { - "$ref": "#/components/schemas/RuleLogActionResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RuleLogActionResponse" }, "alerts": { - "anyOf": [ - { - "$ref": "#/components/schemas/RuleLogActionResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RuleLogActionResponse" }, "webhooks": { - "anyOf": [ - { - "$ref": "#/components/schemas/RuleLogActionResponse" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RuleLogActionResponse" } }, "type": "object", @@ -27722,39 +24454,21 @@ "$ref": "#/components/schemas/RunGroupBy" }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Start Time" + "title": "Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "offset": { "type": "integer", @@ -27784,184 +24498,88 @@ "title": "Run Count" }, "latency_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P50" + "title": "Latency P50", + "type": "number", + "nullable": true }, "latency_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P99" + "title": "Latency P99", + "type": "number", + "nullable": true }, "first_token_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P50" + "title": "First Token P50", + "type": "number", + "nullable": true }, "first_token_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P99" + "title": "First Token P99", + "type": "number", + "nullable": true }, "total_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Total Tokens" + "title": "Total Tokens", + "type": "integer", + "nullable": true }, "prompt_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Prompt Tokens" + "title": "Prompt Tokens", + "type": "integer", + "nullable": true }, "completion_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Completion Tokens" + "title": "Completion Tokens", + "type": "integer", + "nullable": true }, "median_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Median Tokens" + "title": "Median Tokens", + "type": "integer", + "nullable": true }, "last_run_start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Run Start Time" + "title": "Last Run Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true }, "run_facets": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Run Facets" + "title": "Run Facets", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "error_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Error Rate" + "title": "Error Rate", + "type": "number", + "nullable": true }, "streaming_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Streaming Rate" + "title": "Streaming Rate", + "type": "number", + "nullable": true }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "group_count": { "type": "integer", @@ -27982,26 +24600,14 @@ "title": "Name" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "inputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Inputs Preview" + "title": "Inputs Preview", + "type": "string", + "nullable": true }, "run_type": { "$ref": "#/components/schemas/RunTypeEnum" @@ -28012,38 +24618,20 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "execution_order": { "type": "integer", @@ -28052,134 +24640,68 @@ "default": 1 }, "serialized": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Serialized" + "title": "Serialized", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "outputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Outputs Preview" + "title": "Outputs Preview", + "type": "string", + "nullable": true }, "parent_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run Id" + "title": "Parent Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest Id" + "title": "Manifest Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_s3_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest S3 Id" + "title": "Manifest S3 Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" + "title": "Events", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "inputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs S3 Urls" + "title": "Inputs S3 Urls", + "type": "object", + "nullable": true }, "outputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs S3 Urls" + "title": "Outputs S3 Urls", + "type": "object", + "nullable": true }, "s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "S3 Urls" + "title": "S3 Urls", + "type": "object", + "nullable": true }, "trace_id": { "type": "string", @@ -28200,75 +24722,45 @@ "title": "Status" }, "child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Child Run Ids" + "title": "Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "direct_child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Direct Child Run Ids" + "title": "Direct Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "parent_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Parent Run Ids" + "title": "Parent Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "feedback_stats": { - "anyOf": [ - { - "additionalProperties": { - "type": "object" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "object" + } }, "reference_example_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Example Id" + "title": "Reference Example Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "total_tokens": { "type": "integer", @@ -28286,61 +24778,31 @@ "default": 0 }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "price_model_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Price Model Id" + "title": "Price Model Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "first_token_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "First Token Time" + "title": "First Token Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "session_id": { "type": "string", @@ -28368,26 +24830,14 @@ "title": "Name" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "inputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Inputs Preview" + "title": "Inputs Preview", + "type": "string", + "nullable": true }, "run_type": { "$ref": "#/components/schemas/RunTypeEnum" @@ -28398,38 +24848,20 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "execution_order": { "type": "integer", @@ -28438,134 +24870,68 @@ "default": 1 }, "serialized": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Serialized" + "title": "Serialized", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "outputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Outputs Preview" + "title": "Outputs Preview", + "type": "string", + "nullable": true }, "parent_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run Id" + "title": "Parent Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest Id" + "title": "Manifest Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_s3_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest S3 Id" + "title": "Manifest S3 Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" + "title": "Events", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "inputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs S3 Urls" + "title": "Inputs S3 Urls", + "type": "object", + "nullable": true }, "outputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs S3 Urls" + "title": "Outputs S3 Urls", + "type": "object", + "nullable": true }, "s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "S3 Urls" + "title": "S3 Urls", + "type": "object", + "nullable": true }, "trace_id": { "type": "string", @@ -28586,75 +24952,45 @@ "title": "Status" }, "child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Child Run Ids" + "title": "Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "direct_child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Direct Child Run Ids" + "title": "Direct Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "parent_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Parent Run Ids" + "title": "Parent Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "feedback_stats": { - "anyOf": [ - { - "additionalProperties": { - "type": "object" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "object" + } }, "reference_example_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Example Id" + "title": "Reference Example Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "total_tokens": { "type": "integer", @@ -28672,61 +25008,31 @@ "default": 0 }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "price_model_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Price Model Id" + "title": "Price Model Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "first_token_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "First Token Time" + "title": "First Token Time", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -28755,16 +25061,10 @@ "title": "Display Name" }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "is_enabled": { "type": "boolean", @@ -28772,65 +25072,35 @@ "default": true }, "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "sampling_rate": { "type": "number", "title": "Sampling Rate" }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "trace_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter" + "title": "Trace Filter", + "type": "string", + "nullable": true }, "tree_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter" + "title": "Tree Filter", + "type": "string", + "nullable": true }, "backfill_from": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Backfill From" + "title": "Backfill From", + "type": "string", + "nullable": true, + "format": "date-time" }, "use_corrections_dataset": { "type": "boolean", @@ -28838,15 +25108,9 @@ "default": false }, "num_few_shot_examples": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Num Few Shot Examples" + "title": "Num Few Shot Examples", + "type": "integer", + "nullable": true }, "extend_only": { "type": "boolean", @@ -28854,28 +25118,16 @@ "default": false }, "add_to_annotation_queue_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Add To Annotation Queue Id" + "title": "Add To Annotation Queue Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "add_to_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Add To Dataset Id" + "title": "Add To Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "add_to_dataset_prefer_correction": { "type": "boolean", @@ -28883,60 +25135,36 @@ "default": false }, "evaluators": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/EvaluatorTopLevel" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Evaluators" + "title": "Evaluators", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/EvaluatorTopLevel" + } }, "code_evaluators": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/CodeEvaluatorTopLevel" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Code Evaluators" + "title": "Code Evaluators", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/CodeEvaluatorTopLevel" + } }, "alerts": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/RunRulesPagerdutyAlertSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Alerts" + "title": "Alerts", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/RunRulesPagerdutyAlertSchema" + } }, "webhooks": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/RunRulesWebhookSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Webhooks" + "title": "Webhooks", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/RunRulesWebhookSchema" + } } }, "type": "object", @@ -28949,41 +25177,25 @@ "RunRulesPagerdutyAlertSchema": { "properties": { "type": { - "anyOf": [ - { - "$ref": "#/components/schemas/RunRulesAlertType" - }, - { - "type": "null" - } - ], - "default": "pagerduty" + "default": "pagerduty", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/RunRulesAlertType" }, "routing_key": { "type": "string", "title": "Routing Key" }, "summary": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Summary" + "title": "Summary", + "type": "string", + "nullable": true }, "severity": { - "anyOf": [ - { - "$ref": "#/components/schemas/PagerdutySeverity" - }, - { - "type": "null" - } - ], - "default": "warning" + "default": "warning", + "type": null, + "nullable": true, + "$ref": "#/components/schemas/PagerdutySeverity" } }, "type": "object", @@ -29010,50 +25222,26 @@ "default": true }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "session_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Session Name" + "title": "Session Name", + "type": "string", + "nullable": true }, "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "dataset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Name" + "title": "Dataset Name", + "type": "string", + "nullable": true }, "display_name": { "type": "string", @@ -29064,83 +25252,41 @@ "title": "Sampling Rate" }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true }, "trace_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Filter" + "title": "Trace Filter", + "type": "string", + "nullable": true }, "tree_filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tree Filter" + "title": "Tree Filter", + "type": "string", + "nullable": true }, "add_to_annotation_queue_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Add To Annotation Queue Id" + "title": "Add To Annotation Queue Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "add_to_annotation_queue_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Add To Annotation Queue Name" + "title": "Add To Annotation Queue Name", + "type": "string", + "nullable": true }, "add_to_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Add To Dataset Id" + "title": "Add To Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "add_to_dataset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Add To Dataset Name" + "title": "Add To Dataset Name", + "type": "string", + "nullable": true }, "add_to_dataset_prefer_correction": { "type": "boolean", @@ -29148,16 +25294,10 @@ "default": false }, "corrections_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Corrections Dataset Id" + "title": "Corrections Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "use_corrections_dataset": { "type": "boolean", @@ -29165,71 +25305,41 @@ "default": false }, "num_few_shot_examples": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Num Few Shot Examples" + "title": "Num Few Shot Examples", + "type": "integer", + "nullable": true }, "evaluators": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/EvaluatorTopLevel" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Evaluators" + "title": "Evaluators", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/EvaluatorTopLevel" + } }, "code_evaluators": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/CodeEvaluatorTopLevel" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Code Evaluators" + "title": "Code Evaluators", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/CodeEvaluatorTopLevel" + } }, "alerts": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/RunRulesPagerdutyAlertSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Alerts" + "title": "Alerts", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/RunRulesPagerdutyAlertSchema" + } }, "webhooks": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/RunRulesWebhookSchema" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Webhooks" + "title": "Webhooks", + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/RunRulesWebhookSchema" + } }, "extend_only": { "type": "boolean", @@ -29247,16 +25357,10 @@ "title": "Updated At" }, "backfill_from": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Backfill From" + "title": "Backfill From", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -29279,18 +25383,12 @@ "title": "Url" }, "headers": { - "anyOf": [ - { - "additionalProperties": { - "type": "string" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Headers" + "title": "Headers", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "string" + } } }, "type": "object", @@ -29306,26 +25404,14 @@ "title": "Name" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "inputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Inputs Preview" + "title": "Inputs Preview", + "type": "string", + "nullable": true }, "run_type": { "$ref": "#/components/schemas/RunTypeEnum" @@ -29336,38 +25422,20 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "execution_order": { "type": "integer", @@ -29376,134 +25444,68 @@ "default": 1 }, "serialized": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Serialized" + "title": "Serialized", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "outputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Outputs Preview" + "title": "Outputs Preview", + "type": "string", + "nullable": true }, "parent_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run Id" + "title": "Parent Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest Id" + "title": "Manifest Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_s3_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest S3 Id" + "title": "Manifest S3 Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" + "title": "Events", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "inputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs S3 Urls" + "title": "Inputs S3 Urls", + "type": "object", + "nullable": true }, "outputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs S3 Urls" + "title": "Outputs S3 Urls", + "type": "object", + "nullable": true }, "s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "S3 Urls" + "title": "S3 Urls", + "type": "object", + "nullable": true }, "trace_id": { "type": "string", @@ -29524,75 +25526,45 @@ "title": "Status" }, "child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Child Run Ids" + "title": "Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "direct_child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Direct Child Run Ids" + "title": "Direct Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "parent_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Parent Run Ids" + "title": "Parent Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "feedback_stats": { - "anyOf": [ - { - "additionalProperties": { - "type": "object" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "object" + } }, "reference_example_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Example Id" + "title": "Reference Example Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "total_tokens": { "type": "integer", @@ -29610,61 +25582,31 @@ "default": 0 }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "price_model_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Price Model Id" + "title": "Price Model Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "first_token_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "First Token Time" + "title": "First Token Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "session_id": { "type": "string", @@ -29676,72 +25618,37 @@ "title": "App Path" }, "last_queued_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Queued At" + "title": "Last Queued At", + "type": "string", + "nullable": true, + "format": "date-time" }, "in_dataset": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "In Dataset" + "title": "In Dataset", + "type": "boolean", + "nullable": true }, "share_token": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Share Token" + "title": "Share Token", + "type": "string", + "nullable": true, + "format": "uuid" }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" }, "trace_first_received_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Trace First Received At" + "title": "Trace First Received At", + "type": "string", + "nullable": true, + "format": "date-time" }, "ttl_seconds": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Ttl Seconds" + "title": "Ttl Seconds", + "type": "integer", + "nullable": true }, "trace_upgrade": { "type": "boolean", @@ -29770,26 +25677,14 @@ "title": "Name" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "inputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Inputs Preview" + "title": "Inputs Preview", + "type": "string", + "nullable": true }, "run_type": { "$ref": "#/components/schemas/RunTypeEnum" @@ -29800,38 +25695,20 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "execution_order": { "type": "integer", @@ -29840,134 +25717,68 @@ "default": 1 }, "serialized": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Serialized" + "title": "Serialized", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "outputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Outputs Preview" + "title": "Outputs Preview", + "type": "string", + "nullable": true }, "parent_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run Id" + "title": "Parent Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest Id" + "title": "Manifest Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_s3_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest S3 Id" + "title": "Manifest S3 Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" + "title": "Events", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "inputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs S3 Urls" + "title": "Inputs S3 Urls", + "type": "object", + "nullable": true }, "outputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs S3 Urls" + "title": "Outputs S3 Urls", + "type": "object", + "nullable": true }, "s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "S3 Urls" + "title": "S3 Urls", + "type": "object", + "nullable": true }, "trace_id": { "type": "string", @@ -29975,15 +25786,9 @@ "title": "Trace Id" }, "dotted_order": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dotted Order" + "title": "Dotted Order", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -29996,111 +25801,57 @@ "title": "Session Id" }, "reference_example_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Example Id" + "title": "Reference Example Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "total_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Total Tokens" + "title": "Total Tokens", + "type": "integer", + "nullable": true }, "prompt_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Prompt Tokens" + "title": "Prompt Tokens", + "type": "integer", + "nullable": true }, "completion_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Completion Tokens" + "title": "Completion Tokens", + "type": "integer", + "nullable": true }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "status": { "type": "string", "title": "Status" }, "feedback_stats": { - "anyOf": [ - { - "additionalProperties": { - "type": "object" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "object" + } }, "app_path": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "App Path" + "title": "App Path", + "type": "string", + "nullable": true } }, "type": "object", @@ -30122,26 +25873,14 @@ "title": "Name" }, "inputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs" + "title": "Inputs", + "type": "object", + "nullable": true }, "inputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Inputs Preview" + "title": "Inputs Preview", + "type": "string", + "nullable": true }, "run_type": { "$ref": "#/components/schemas/RunTypeEnum" @@ -30152,38 +25891,20 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "error": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Error" + "title": "Error", + "type": "string", + "nullable": true }, "execution_order": { "type": "integer", @@ -30192,134 +25913,68 @@ "default": 1 }, "serialized": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Serialized" + "title": "Serialized", + "type": "object", + "nullable": true }, "outputs": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs" + "title": "Outputs", + "type": "object", + "nullable": true }, "outputs_preview": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Outputs Preview" + "title": "Outputs Preview", + "type": "string", + "nullable": true }, "parent_run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Parent Run Id" + "title": "Parent Run Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest Id" + "title": "Manifest Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "manifest_s3_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Manifest S3 Id" + "title": "Manifest S3 Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" + "title": "Events", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "inputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Inputs S3 Urls" + "title": "Inputs S3 Urls", + "type": "object", + "nullable": true }, "outputs_s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Outputs S3 Urls" + "title": "Outputs S3 Urls", + "type": "object", + "nullable": true }, "s3_urls": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "S3 Urls" + "title": "S3 Urls", + "type": "object", + "nullable": true }, "trace_id": { "type": "string", @@ -30340,75 +25995,45 @@ "title": "Status" }, "child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Child Run Ids" + "title": "Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "direct_child_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Direct Child Run Ids" + "title": "Direct Child Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "parent_run_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Parent Run Ids" + "title": "Parent Run Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "feedback_stats": { - "anyOf": [ - { - "additionalProperties": { - "type": "object" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true, + "additionalProperties": { + "type": "object" + } }, "reference_example_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Example Id" + "title": "Reference Example Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "total_tokens": { "type": "integer", @@ -30426,61 +26051,31 @@ "default": 0 }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "price_model_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Price Model Id" + "title": "Price Model Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "first_token_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "First Token Time" + "title": "First Token Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "session_id": { "type": "string", @@ -30492,72 +26087,37 @@ "title": "App Path" }, "last_queued_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Queued At" + "title": "Last Queued At", + "type": "string", + "nullable": true, + "format": "date-time" }, "in_dataset": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "In Dataset" + "title": "In Dataset", + "type": "boolean", + "nullable": true }, "share_token": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Share Token" + "title": "Share Token", + "type": "string", + "nullable": true, + "format": "uuid" }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" }, "trace_first_received_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Trace First Received At" + "title": "Trace First Received At", + "type": "string", + "nullable": true, + "format": "date-time" }, "ttl_seconds": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Ttl Seconds" + "title": "Ttl Seconds", + "type": "integer", + "nullable": true }, "trace_upgrade": { "type": "boolean", @@ -30570,40 +26130,22 @@ "title": "Queue Run Id" }, "last_reviewed_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Reviewed Time" + "title": "Last Reviewed Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "added_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Added At" + "title": "Added At", + "type": "string", + "nullable": true, + "format": "date-time" }, "effective_added_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Effective Added At" + "title": "Effective Added At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -30703,184 +26245,88 @@ "title": "Run Count" }, "latency_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P50" + "title": "Latency P50", + "type": "number", + "nullable": true }, "latency_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P99" + "title": "Latency P99", + "type": "number", + "nullable": true }, "first_token_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P50" + "title": "First Token P50", + "type": "number", + "nullable": true }, "first_token_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P99" + "title": "First Token P99", + "type": "number", + "nullable": true }, "total_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Total Tokens" + "title": "Total Tokens", + "type": "integer", + "nullable": true }, "prompt_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Prompt Tokens" + "title": "Prompt Tokens", + "type": "integer", + "nullable": true }, "completion_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Completion Tokens" + "title": "Completion Tokens", + "type": "integer", + "nullable": true }, "median_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Median Tokens" + "title": "Median Tokens", + "type": "integer", + "nullable": true }, "last_run_start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Run Start Time" + "title": "Last Run Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true }, "run_facets": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Run Facets" + "title": "Run Facets", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "error_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Error Rate" + "title": "Error Rate", + "type": "number", + "nullable": true }, "streaming_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Streaming Rate" + "title": "Streaming Rate", + "type": "number", + "nullable": true }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true } }, "type": "object", @@ -30922,27 +26368,19 @@ "items": {}, "type": "array" }, - {}, - { - "type": "null" - } + {} ], - "title": "Callbacks" + "title": "Callbacks", + "nullable": true }, "run_name": { "type": "string", "title": "Run Name" }, "max_concurrency": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Max Concurrency" + "title": "Max Concurrency", + "type": "integer", + "nullable": true }, "recursion_limit": { "type": "integer", @@ -30953,16 +26391,10 @@ "title": "Configurable" }, "run_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Run Id" + "title": "Run Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -31045,16 +26477,10 @@ "SSOEmailVerificationStatusResponse": { "properties": { "email_confirmed_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Email Confirmed At" + "title": "Email Confirmed At", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -31090,27 +26516,15 @@ "type": "array", "title": "Default Workspace Ids" }, - "metadata_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Url" - }, + "metadata_url": { + "title": "Metadata Url", + "type": "string", + "nullable": true + }, "metadata_xml": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Xml" + "title": "Metadata Xml", + "type": "string", + "nullable": true } }, "type": "object", @@ -31164,26 +26578,14 @@ "title": "Default Workspace Ids" }, "metadata_xml": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Xml" + "title": "Metadata Xml", + "type": "string", + "nullable": true }, "metadata_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Url" + "title": "Metadata Url", + "type": "string", + "nullable": true }, "attribute_mapping": { "additionalProperties": { @@ -31203,53 +26605,29 @@ "SSOSettingsUpdate": { "properties": { "default_workspace_role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Workspace Role Id" + "title": "Default Workspace Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "default_workspace_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Default Workspace Ids" + "title": "Default Workspace Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "metadata_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Url" + "title": "Metadata Url", + "type": "string", + "nullable": true }, "metadata_xml": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Metadata Xml" + "title": "Metadata Xml", + "type": "string", + "nullable": true } }, "type": "object", @@ -31274,15 +26652,9 @@ "default": false }, "filter": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filter" + "title": "Filter", + "type": "string", + "nullable": true } }, "type": "object", @@ -31325,15 +26697,9 @@ "title": "Id" }, "debug_info": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Debug Info" + "title": "Debug Info", + "type": "object", + "nullable": true } }, "type": "object", @@ -31365,15 +26731,9 @@ "title": "Key" }, "value": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Value" + "title": "Value", + "type": "string", + "nullable": true } }, "type": "object", @@ -31410,16 +26770,10 @@ "title": "Organization Id" }, "default_workspace_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Workspace Id" + "title": "Default Workspace Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -31473,16 +26827,10 @@ "title": "Organization Id" }, "default_workspace_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Workspace Id" + "title": "Default Workspace Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "organization_identity_id": { "type": "string", @@ -31529,16 +26877,10 @@ "title": "Organization Id" }, "default_workspace_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Workspace Id" + "title": "Default Workspace Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -31634,26 +26976,14 @@ "title": "Title" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "metadata": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" + "title": "Metadata", + "type": "object", + "nullable": true }, "index": { "type": "integer", @@ -31670,14 +27000,9 @@ "title": "Series" }, "common_filters": { - "anyOf": [ - { - "$ref": "#/components/schemas/CustomChartSeriesFilters" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/CustomChartSeriesFilters" } }, "type": "object", @@ -31746,14 +27071,9 @@ "title": "Name" }, "address": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripeCustomerAddress" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripeCustomerAddress" } }, "type": "object", @@ -31766,35 +27086,19 @@ "StripeBusinessInfo-Input": { "properties": { "company_info": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripeBusinessBillingInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripeBusinessBillingInfo" }, "tax_id": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripeTaxId" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripeTaxId" }, "invoice_email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Invoice Email" + "title": "Invoice Email", + "type": "string", + "nullable": true }, "is_business": { "type": "boolean", @@ -31808,35 +27112,19 @@ "StripeBusinessInfo-Output": { "properties": { "company_info": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripeBusinessBillingInfo" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripeBusinessBillingInfo" }, "tax_id": { - "anyOf": [ - { - "$ref": "#/components/schemas/StripeTaxId" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/StripeTaxId" }, "invoice_email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Invoice Email" + "title": "Invoice Email", + "type": "string", + "nullable": true }, "is_business": { "type": "boolean", @@ -31854,30 +27142,18 @@ "title": "Line1" }, "line2": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Line2" + "title": "Line2", + "type": "string", + "nullable": true }, "city": { "type": "string", "title": "City" }, "state": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "State" + "title": "State", + "type": "string", + "nullable": true }, "postal_code": { "type": "string", @@ -31937,59 +27213,29 @@ "StripePaymentMethodInfo": { "properties": { "brand": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Brand" + "title": "Brand", + "type": "string", + "nullable": true }, "last4": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Last4" - }, - "exp_month": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Exp Month" - }, - "exp_year": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Exp Year" + "title": "Last4", + "type": "string", + "nullable": true }, - "email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Email" + "exp_month": { + "title": "Exp Month", + "type": "integer", + "nullable": true + }, + "exp_year": { + "title": "Exp Year", + "type": "integer", + "nullable": true + }, + "email": { + "title": "Email", + "type": "string", + "nullable": true } }, "type": "object", @@ -32032,16 +27278,10 @@ "TTLSettings": { "properties": { "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "default_trace_tier": { "$ref": "#/components/schemas/TraceTier" @@ -32114,15 +27354,9 @@ "title": "Key" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -32158,15 +27392,9 @@ "title": "Key" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -32178,28 +27406,16 @@ "TagKeyUpdate": { "properties": { "key": { - "anyOf": [ - { - "type": "string", - "maxLength": 255, - "minLength": 1 - }, - { - "type": "null" - } - ], - "title": "Key" + "title": "Key", + "type": "string", + "nullable": true, + "maxLength": 255, + "minLength": 1 }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -32214,15 +27430,9 @@ "title": "Key" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -32265,15 +27475,9 @@ "title": "Key" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -32316,15 +27520,9 @@ "title": "Value" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -32366,15 +27564,9 @@ "title": "Value" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -32386,28 +27578,16 @@ "TagValueUpdate": { "properties": { "value": { - "anyOf": [ - { - "type": "string", - "maxLength": 255, - "minLength": 1 - }, - { - "type": "null" - } - ], - "title": "Value" + "title": "Value", + "type": "string", + "nullable": true, + "maxLength": 255, + "minLength": 1 }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true } }, "type": "object", @@ -32422,15 +27602,9 @@ "title": "Value" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "id": { "type": "string", @@ -32649,16 +27823,10 @@ "title": "Id" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "display_name": { "type": "string", @@ -32667,15 +27835,9 @@ "title": "Display Name" }, "tenant_handle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true }, "is_personal": { "type": "boolean", @@ -32698,16 +27860,10 @@ "title": "Id" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -32723,15 +27879,9 @@ "title": "Is Personal" }, "tenant_handle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true }, "read_only": { "type": "boolean", @@ -32739,41 +27889,23 @@ "default": false }, "role_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Role Id" + "title": "Role Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "role_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Name" + "title": "Role Name", + "type": "string", + "nullable": true }, "permissions": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Permissions" + "title": "Permissions", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } } }, "type": "object", @@ -32840,15 +27972,9 @@ "title": "Dataset Id" }, "dataset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Dataset Name" + "title": "Dataset Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -32884,49 +28010,25 @@ "title": "Run Id" }, "run_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Name" + "title": "Run Name", + "type": "string", + "nullable": true }, "run_type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Run Type" + "title": "Run Type", + "type": "string", + "nullable": true }, "session_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Session Id" + "title": "Session Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "session_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Session Name" + "title": "Session Name", + "type": "string", + "nullable": true } }, "type": "object", @@ -33020,25 +28122,14 @@ "title": "In Reject Set" }, "usage_limit_type": { - "anyOf": [ - { - "$ref": "#/components/schemas/TenantUsageLimitType" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TenantUsageLimitType" }, "tenant_limit": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Tenant Limit" + "title": "Tenant Limit", + "type": "integer", + "nullable": true } }, "type": "object", @@ -33098,76 +28189,41 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "name": { "type": "string", "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "default_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset Id" + "title": "Default Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "reference_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Dataset Id" + "title": "Reference Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" }, "id": { "type": "string", @@ -33175,125 +28231,59 @@ "title": "Id" }, "run_count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Run Count" + "title": "Run Count", + "type": "integer", + "nullable": true }, "latency_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P50" + "title": "Latency P50", + "type": "number", + "nullable": true }, "latency_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency P99" + "title": "Latency P99", + "type": "number", + "nullable": true }, "first_token_p50": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P50" + "title": "First Token P50", + "type": "number", + "nullable": true }, "first_token_p99": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "First Token P99" + "title": "First Token P99", + "type": "number", + "nullable": true }, "total_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Total Tokens" + "title": "Total Tokens", + "type": "integer", + "nullable": true }, "prompt_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Prompt Tokens" + "title": "Prompt Tokens", + "type": "integer", + "nullable": true }, "completion_tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Completion Tokens" + "title": "Completion Tokens", + "type": "integer", + "nullable": true }, "total_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Total Cost" + "title": "Total Cost", + "type": "string", + "nullable": true }, "prompt_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Prompt Cost" + "title": "Prompt Cost", + "type": "string", + "nullable": true }, "completion_cost": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Completion Cost" + "title": "Completion Cost", + "type": "string", + "nullable": true }, "tenant_id": { "type": "string", @@ -33301,97 +28291,49 @@ "title": "Tenant Id" }, "last_run_start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Run Start Time" + "title": "Last Run Start Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "last_run_start_time_live": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Run Start Time Live" + "title": "Last Run Start Time Live", + "type": "string", + "nullable": true, + "format": "date-time" }, "feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Feedback Stats" + "title": "Feedback Stats", + "type": "object", + "nullable": true }, "session_feedback_stats": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Session Feedback Stats" + "title": "Session Feedback Stats", + "type": "object", + "nullable": true }, "run_facets": { - "anyOf": [ - { - "items": { - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Run Facets" + "title": "Run Facets", + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "error_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Error Rate" + "title": "Error Rate", + "type": "number", + "nullable": true }, "streaming_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Streaming Rate" + "title": "Streaming Rate", + "type": "number", + "nullable": true }, "test_run_number": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Test Run Number" + "title": "Test Run Number", + "type": "integer", + "nullable": true } }, "type": "object", @@ -33410,88 +28352,47 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "name": { "type": "string", "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "default_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset Id" + "title": "Default Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "reference_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Dataset Id" + "title": "Reference Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" }, "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" + "title": "Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -33501,71 +28402,36 @@ "TracerSessionUpdate": { "properties": { "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" + "title": "Name", + "type": "string", + "nullable": true }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "default_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset Id" + "title": "Default Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" } }, "type": "object", @@ -33580,76 +28446,41 @@ "title": "Start Time" }, "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "End Time" + "title": "End Time", + "type": "string", + "nullable": true, + "format": "date-time" }, "extra": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extra" + "title": "Extra", + "type": "object", + "nullable": true }, "name": { "type": "string", "title": "Name" }, "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "default_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Default Dataset Id" + "title": "Default Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "reference_dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Reference Dataset Id" + "title": "Reference Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "trace_tier": { - "anyOf": [ - { - "$ref": "#/components/schemas/TraceTier" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/TraceTier" }, "id": { "type": "string", @@ -33662,16 +28493,10 @@ "title": "Tenant Id" }, "last_run_start_time_live": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Last Run Start Time Live" + "title": "Last Run Start Time Live", + "type": "string", + "nullable": true, + "format": "date-time" } }, "type": "object", @@ -33685,31 +28510,19 @@ "TriggerRulesRequest": { "properties": { "rule_ids": { - "anyOf": [ - { - "items": { - "type": "string", - "format": "uuid" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Rule Ids" + "title": "Rule Ids", + "type": "array", + "nullable": true, + "items": { + "type": "string", + "format": "uuid" + } }, "dataset_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Dataset Id" + "title": "Dataset Id", + "type": "string", + "nullable": true, + "format": "uuid" } }, "type": "object", @@ -33722,25 +28535,14 @@ "title": "Feedback Key" }, "feedback_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/FeedbackConfig" - }, - { - "type": "null" - } - ] + "type": null, + "nullable": true, + "$ref": "#/components/schemas/FeedbackConfig" }, "is_lower_score_better": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Lower Score Better" + "title": "Is Lower Score Better", + "type": "boolean", + "nullable": true } }, "type": "object", @@ -33752,62 +28554,32 @@ "UpdateRepoRequest": { "properties": { "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" + "title": "Description", + "type": "string", + "nullable": true }, "readme": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Readme" + "title": "Readme", + "type": "string", + "nullable": true }, "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Tags" + "title": "Tags", + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "is_public": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Public" + "title": "Is Public", + "type": "boolean", + "nullable": true }, "is_archived": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Archived" + "title": "Is Archived", + "type": "boolean", + "nullable": true } }, "type": "object", @@ -33843,16 +28615,10 @@ "UpsertTTLSettingsRequest": { "properties": { "tenant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tenant Id" + "title": "Tenant Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "default_trace_tier": { "$ref": "#/components/schemas/TraceTier" @@ -33970,37 +28736,19 @@ "title": "Email" }, "full_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Full Name" + "title": "Full Name", + "type": "string", + "nullable": true }, "avatar_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Avatar Url" + "title": "Avatar Url", + "type": "string", + "nullable": true }, "password": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Password" + "title": "Password", + "type": "string", + "nullable": true } }, "type": "object", @@ -34060,15 +28808,9 @@ "title": "Display Name" }, "tenant_handle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true } }, "type": "object", @@ -34111,15 +28853,9 @@ "title": "Created At" }, "tenant_handle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true } }, "type": "object", @@ -34138,16 +28874,10 @@ "title": "Id" }, "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" + "title": "Organization Id", + "type": "string", + "nullable": true, + "format": "uuid" }, "created_at": { "type": "string", @@ -34163,15 +28893,9 @@ "title": "Is Personal" }, "tenant_handle": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Tenant Handle" + "title": "Tenant Handle", + "type": "string", + "nullable": true } }, "type": "object", @@ -34195,14 +28919,8 @@ "type": "string" }, "inputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "run_type": { "type": "string", @@ -34223,11 +28941,9 @@ }, { "type": "number" - }, - { - "type": "null" } - ] + ], + "nullable": true }, "end_time": { "oneOf": [ @@ -34236,172 +28952,80 @@ }, { "type": "number" - }, - { - "type": "null" } - ] + ], + "nullable": true }, "extra": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "error": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "serialized": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "outputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "parent_run_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "events": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "trace_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "dotted_order": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "session_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "session_name": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "reference_example_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "input_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "output_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true } } }, @@ -34456,88 +29080,44 @@ }, { "type": "number" - }, - { - "type": "null" } - ] + ], + "nullable": true }, "extra": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "error": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "serialized": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "outputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "parent_run_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] - }, - "events": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object" - } - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" + }, + "events": { + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "trace_id": { "type": "string", @@ -34551,56 +29131,26 @@ "format": "uuid" }, "session_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "session_name": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "reference_example_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "input_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "output_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true } } } @@ -34624,15 +29174,9 @@ "type": "string" }, "parent_run_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "end_time": { "oneOf": [ @@ -34645,90 +29189,42 @@ ] }, "error": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "inputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "outputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "events": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "extra": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "input_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "output_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "id": { "type": "string", @@ -34744,36 +29240,18 @@ "type": "object", "properties": { "trace_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "dotted_order": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "parent_run_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "end_time": { "oneOf": [ @@ -34782,118 +29260,56 @@ }, { "type": "number" - }, - { - "type": "null" } - ] + ], + "nullable": true }, "error": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true }, "inputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "outputs": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "events": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "object" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "object" + } }, "tags": { - "oneOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "null" - } - ] + "type": "array", + "nullable": true, + "items": { + "type": "string" + } }, "extra": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "input_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "output_attachments": { - "oneOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] + "type": "object", + "nullable": true }, "session_id": { - "oneOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true, + "format": "uuid" }, "session_name": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "type": "string", + "nullable": true } } }