diff --git a/src/libs/AutoSDK/Models/AnyOfData.cs b/src/libs/AutoSDK/Models/AnyOfData.cs index 816ac8bd63..90e1a6da61 100644 --- a/src/libs/AutoSDK/Models/AnyOfData.cs +++ b/src/libs/AutoSDK/Models/AnyOfData.cs @@ -47,9 +47,7 @@ public static AnyOfData FromSchemaContext(SchemaContext context) context.Settings.JsonSerializerType == JsonSerializerType.SystemTextJson && (!string.IsNullOrWhiteSpace(context.Settings.JsonSerializerContext) || context.Settings.GenerateJsonSerializerContextTypes), - Namespace: context.IsComponent - ? context.Settings.Namespace - : "System", + Namespace: context.Settings.Namespace, Name: context.IsComponent ? context.Id : string.Empty, diff --git a/src/libs/AutoSDK/Models/TypeData.cs b/src/libs/AutoSDK/Models/TypeData.cs index e5a10b1338..c4658f607e 100644 --- a/src/libs/AutoSDK/Models/TypeData.cs +++ b/src/libs/AutoSDK/Models/TypeData.cs @@ -208,9 +208,9 @@ public static string GetCSharpType(SchemaContext context, SchemaContext? additio (_, _) when context.Schema.IsOneOf() && context.IsComponent => ($"global::{context.Settings.Namespace}.{context.Id}", true), (_, _) when context.Schema.IsAllOf() && context.IsComponent => ($"global::{context.Settings.Namespace}.{context.Id}", true), - (_, _) when context.Schema.IsAnyOf() => ($"global::System.AnyOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AnyOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), - (_, _) when context.Schema.IsOneOf() => ($"global::System.OneOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.OneOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), - (_, _) when context.Schema.IsAllOf() => ($"global::System.AllOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AllOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), + (_, _) when context.Schema.IsAnyOf() => ($"global::{context.Settings.Namespace}.AnyOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AnyOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), + (_, _) when context.Schema.IsOneOf() => ($"global::{context.Settings.Namespace}.OneOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.OneOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), + (_, _) when context.Schema.IsAllOf() => ($"global::{context.Settings.Namespace}.AllOf<{string.Join(", ", context.Children.Where(x => x.Hint == Hint.AllOf).Select(x => x.TypeData?.CSharpTypeWithNullabilityForValueTypes))}>", true), ("object", _) or (null, _) when context.Schema.Reference != null => ($"global::{context.Settings.Namespace}.{context.Id}", true), diff --git a/src/libs/AutoSDK/Generation/Data.cs b/src/libs/AutoSDK/Sources/Data.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Data.cs rename to src/libs/AutoSDK/Sources/Data.cs diff --git a/src/libs/AutoSDK/Generation/Sources.AnyOf.cs b/src/libs/AutoSDK/Sources/Sources.AnyOf.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.AnyOf.cs rename to src/libs/AutoSDK/Sources/Sources.AnyOf.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Authorizations.cs b/src/libs/AutoSDK/Sources/Sources.Authorizations.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Authorizations.cs rename to src/libs/AutoSDK/Sources/Sources.Authorizations.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Clients.cs b/src/libs/AutoSDK/Sources/Sources.Clients.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Clients.cs rename to src/libs/AutoSDK/Sources/Sources.Clients.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Exceptions.cs b/src/libs/AutoSDK/Sources/Sources.Exceptions.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Exceptions.cs rename to src/libs/AutoSDK/Sources/Sources.Exceptions.cs diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs similarity index 97% rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs index 002cda3ed4..ec94eff1d0 100644 --- a/src/libs/AutoSDK/Generation/Sources.JsonConverters.AnyOf.cs +++ b/src/libs/AutoSDK/Sources/Sources.JsonConverters.AnyOf.cs @@ -22,7 +22,7 @@ public static string GenerateAnyOfJsonConverter( ? $"{subType}JsonConverter{types}" : $"{name}JsonConverter"; var typeNameWithTypes = string.IsNullOrWhiteSpace(name) - ? $"global::System.{subType}{types}" + ? $"global::{@namespace}.{subType}{types}" : $"global::{@namespace}.{name}"; var allTypes = fixedTypes.IsEmpty ? Enumerable @@ -156,7 +156,7 @@ public sealed class {subType}JsonConverterFactory{count} : global::System.Text.J /// public override bool CanConvert(global::System.Type? typeToConvert) {{ - return typeToConvert is {{ IsGenericType: true }} && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.{subType}{types}); + return typeToConvert is {{ IsGenericType: true }} && typeToConvert.GetGenericTypeDefinition() == typeof(global::{anyOfData.Settings.Namespace}.{subType}{types}); }} /// diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.Enum.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.Enum.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.Enum.cs rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.Enum.cs diff --git a/src/libs/AutoSDK/Generation/Sources.JsonConverters.UnixTimestamp.cs b/src/libs/AutoSDK/Sources/Sources.JsonConverters.UnixTimestamp.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.JsonConverters.UnixTimestamp.cs rename to src/libs/AutoSDK/Sources/Sources.JsonConverters.UnixTimestamp.cs diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContext.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContext.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContext.cs rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContext.cs diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContextConverters.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContextConverters.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContextConverters.cs rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContextConverters.cs diff --git a/src/libs/AutoSDK/Generation/Sources.JsonSerializerContextTypes.cs b/src/libs/AutoSDK/Sources/Sources.JsonSerializerContextTypes.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.JsonSerializerContextTypes.cs rename to src/libs/AutoSDK/Sources/Sources.JsonSerializerContextTypes.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Methods.cs b/src/libs/AutoSDK/Sources/Sources.Methods.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Methods.cs rename to src/libs/AutoSDK/Sources/Sources.Methods.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Models.Enum.cs b/src/libs/AutoSDK/Sources/Sources.Models.Enum.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Models.Enum.cs rename to src/libs/AutoSDK/Sources/Sources.Models.Enum.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Models.cs b/src/libs/AutoSDK/Sources/Sources.Models.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Models.cs rename to src/libs/AutoSDK/Sources/Sources.Models.cs diff --git a/src/libs/AutoSDK/Generation/Sources.Polyfills.cs b/src/libs/AutoSDK/Sources/Sources.Polyfills.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.Polyfills.cs rename to src/libs/AutoSDK/Sources/Sources.Polyfills.cs diff --git a/src/libs/AutoSDK/Generation/Sources.cs b/src/libs/AutoSDK/Sources/Sources.cs similarity index 100% rename from src/libs/AutoSDK/Generation/Sources.cs rename to src/libs/AutoSDK/Sources/Sources.cs diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs index 8cd2d6abd6..dad2affaea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Api.V1Embed.g.verified.cs @@ -106,7 +106,7 @@ partial void ProcessV1EmbedResponseContent( /// public async global::System.Threading.Tasks.Task V1EmbedAsync( global::System.Collections.Generic.IList texts, - global::System.AllOf? type = default, + global::G.AllOf? type = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.EmbeddingsBody diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs index be711e496e..1cb3aa599e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs @@ -141,9 +141,9 @@ partial void ProcessV1J2UltraChatResponseContent( global::System.Collections.Generic.IList messages, string system, string? model = "j2-ultra", - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int numResults = 1, double temperature = 0.7, int maxTokens = 300, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs index 0796dc30bb..707a545c2c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs index 820354ae95..fb417ff416 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2GrandeCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs index b230f71762..2178cc9b07 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs index 9b320718c2..90c3ac5425 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2JumboCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs index 46b58ac758..28e6afa3a4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2JumboComplete2ResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs index be056725e3..00a8c49cca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2JumboInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs index be67b8e4be..a545a51872 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LargeCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs index e9ae1dae82..7bd15de0ea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2LargeCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs index 611b0c1643..ee0e533c46 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LargeInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs index 75304456e8..7f49bcaa80 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LightCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs index 7b4d9181bb..284aaffa01 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2LightCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs index 45f11eb1f5..a8859fe17d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2MidCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs index 7752701085..8f2005e9d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2MidCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs index 876785d8c9..2fe223dcfa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2UltraCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs index b63da2644c..4d9a00aade 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2UltraComplete2ResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs index f7ca7018d2..f5a7a88e30 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs @@ -36,7 +36,7 @@ partial void ProcessV1ChatCompleteResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( + public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( string authorization, global::G.LanguageStudioApiServerDataTypesChatChatRequest request, global::System.Threading.CancellationToken cancellationToken = default) @@ -102,7 +102,7 @@ partial void ProcessV1ChatCompleteResponseContent( } 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}\" "); } @@ -146,20 +146,20 @@ partial void ProcessV1ChatCompleteResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( + public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( string authorization, global::G.ModelName model, - global::System.Collections.Generic.IList> messages, + global::System.Collections.Generic.IList> messages, global::System.Collections.Generic.IList? tools = default, int n = 1, int maxTokens = 4096, double temperature = default, double topP = 1, - global::System.AnyOf>? stop = default, + global::G.AnyOf>? stop = default, bool stream = false, global::G.MockResponseConfig? mockResponse = default, global::System.Collections.Generic.IList? documents = default, - global::System.AllOf? responseFormat = default, + global::G.AllOf? responseFormat = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.LanguageStudioApiServerDataTypesChatChatRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs index ac01b3cd68..94dd8fbd79 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class ChatCompletionResponseDeltaChoice /// - **Subsequent messages** will have an object `{"content": __token__}` with the generated token. /// [global::Newtonsoft.Json.JsonProperty("delta", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Delta { get; set; } = default!; + public global::G.AnyOf Delta { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs index 57376df461..6d41045cf7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.CompletionBody.g.verified.cs @@ -75,19 +75,19 @@ public sealed partial class CompletionBody /// /// [global::Newtonsoft.Json.JsonProperty("frequencyPenalty")] - public global::System.AllOf? FrequencyPenalty { get; set; } + public global::G.AllOf? FrequencyPenalty { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("presencePenalty")] - public global::System.AllOf? PresencePenalty { get; set; } + public global::G.AllOf? PresencePenalty { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("countPenalty")] - public global::System.AllOf? CountPenalty { get; set; } + public global::G.AllOf? CountPenalty { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs index 11abf36aae..75975d6e4a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.EmbeddingsBody.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class EmbeddingsBody /// Default Value: segment /// [global::Newtonsoft.Json.JsonProperty("type")] - public global::System.AllOf? Type { get; set; } = global::G.EmbedType.Segment; + public global::G.AllOf? Type { get; set; } = global::G.EmbedType.Segment; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs index a7f88bb965..afe85b7013 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest /// messages /// [global::Newtonsoft.Json.JsonProperty("messages", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Messages { get; set; } = default!; + public global::System.Collections.Generic.IList> Messages { get; set; } = default!; /// /// @@ -57,7 +57,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest /// /// [global::Newtonsoft.Json.JsonProperty("stop")] - public global::System.AnyOf>? Stop { get; set; } + public global::G.AnyOf>? Stop { get; set; } /// /// Whether or not to stream the result one token at a time using
@@ -86,7 +86,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest /// ///
[global::Newtonsoft.Json.JsonProperty("response_format")] - public global::System.AllOf? ResponseFormat { get; set; } + public global::G.AllOf? ResponseFormat { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs index 1bae7fc091..7536ddac8b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs @@ -27,19 +27,19 @@ public sealed partial class LanguageStudioApiServerDataTypesJ2ChatChatRequest /// /// [global::Newtonsoft.Json.JsonProperty("frequencyPenalty")] - public global::System.AllOf? FrequencyPenalty { get; set; } + public global::G.AllOf? FrequencyPenalty { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("presencePenalty")] - public global::System.AllOf? PresencePenalty { get; set; } + public global::G.AllOf? PresencePenalty { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("countPenalty")] - public global::System.AllOf? CountPenalty { get; set; } + public global::G.AllOf? CountPenalty { get; set; } /// /// Default Value: 1 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs index f116ac4c41..cfdf2ee415 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibraryAnswerRequest.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class LibraryAnswerRequest /// Default Value: default /// [global::Newtonsoft.Json.JsonProperty("retrievalStrategy")] - public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; + public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs index eaa08f3c0b..34fa6f85ea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.LibrarySearchRequest.g.verified.cs @@ -45,7 +45,7 @@ public sealed partial class LibrarySearchRequest /// Default Value: default /// [global::Newtonsoft.Json.JsonProperty("retrievalStrategy")] - public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; + public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; /// /// Default Value: 1 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs index 6b6d94964f..8c035a5c3a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ParaphraseBody.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class ParaphraseBody /// Default Value: general /// [global::Newtonsoft.Json.JsonProperty("style")] - public global::System.AllOf? Style { get; set; } = global::G.StyleType.General; + public global::G.AllOf? Style { get; set; } = global::G.StyleType.General; /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs index 829e8b106e..aca8da89d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ValidationError /// /// [global::Newtonsoft.Json.JsonProperty("loc", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Loc { get; set; } = default!; + public global::System.Collections.Generic.IList> Loc { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs index 02d62b410f..8c28dcde92 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs @@ -110,7 +110,7 @@ partial void ProcessV1ParaphrazeResponseContent( /// public async global::System.Threading.Tasks.Task V1ParaphrazeAsync( string text, - global::System.AllOf? style = default, + global::G.AllOf? style = default, int startIndex = 0, int endIndex = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs index 7dbb502b8b..ec0e94d1cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs @@ -124,7 +124,7 @@ partial void ProcessV1LibraryAnswerResponseContent( global::System.Collections.Generic.IList? fileIds = default, global::G.AnswerLength? answerLength = default, global::G.Mode? mode = default, - global::System.AllOf? retrievalStrategy = default, + global::G.AllOf? retrievalStrategy = default, double retrievalSimilarityThreshold = default, double hybridSearchAlpha = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs index 9abf4e0929..1ede5b4328 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs @@ -119,7 +119,7 @@ partial void ProcessV1LibrarySearchResponseContent( string? path = default, global::System.Collections.Generic.IList? labels = default, global::System.Collections.Generic.IList? fileIds = default, - global::System.AllOf? retrievalStrategy = default, + global::G.AllOf? retrievalStrategy = default, int maxNeighbors = 1, double retrievalSimilarityThreshold = default, double hybridSearchAlpha = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/NewtonsoftJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs index 990d56583d..18a3dcbe54 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Api.V1Embed.g.verified.cs @@ -106,7 +106,7 @@ partial void ProcessV1EmbedResponseContent( /// public async global::System.Threading.Tasks.Task V1EmbedAsync( global::System.Collections.Generic.IList texts, - global::System.AllOf? type = default, + global::G.AllOf? type = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.EmbeddingsBody diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs index 434c8b9061..7d3cae6971 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ChatClient.V1J2UltraChat.g.verified.cs @@ -141,9 +141,9 @@ partial void ProcessV1J2UltraChatResponseContent( global::System.Collections.Generic.IList messages, string system, string? model = "j2-ultra", - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int numResults = 1, double temperature = 0.7, int maxTokens = 300, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs index 94326ab226..79683fbf37 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs index 3905e50aec..666b45ca07 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2GrandeCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs index dc96f72b10..73d4c9a870 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2GrandeInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2GrandeInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs index 3f94d3bb02..f833ef6b2d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2JumboCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs index 996c0b65f2..deb997aad1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboComplete2.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2JumboComplete2ResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs index ecdbdb46e8..ac4043cac5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2JumboInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2JumboInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs index 6ebf4579b1..38e52295cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LargeCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs index 0360f3e438..99df316959 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2LargeCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs index 918410732a..5944a7db73 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LargeInstructComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LargeInstructCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs index 61c3cba9cf..7780cda98f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2LightCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs index 5b8759de85..e98af51a3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2LightCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2LightCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs index 8275f9230c..d41ed06804 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2MidCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs index 7d2853c198..6b423e861d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2MidCustomModelComplete.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2MidCustomModelCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs index 4016a04f35..d0636625f3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete.g.verified.cs @@ -151,9 +151,9 @@ partial void ProcessV1J2UltraCompleteResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs index 956596be5b..c3807720b6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.CompletionClient.V1J2UltraComplete2.g.verified.cs @@ -159,9 +159,9 @@ partial void ProcessV1J2UltraComplete2ResponseContent( global::System.Collections.Generic.IList? stopSequences = default, int topKReturn = 0, global::G.CompletionBodyLogitBias? logitBias = default, - global::System.AllOf? frequencyPenalty = default, - global::System.AllOf? presencePenalty = default, - global::System.AllOf? countPenalty = default, + global::G.AllOf? frequencyPenalty = default, + global::G.AllOf? presencePenalty = default, + global::G.AllOf? countPenalty = default, int epoch = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs index 641f7364ea..abbbf36370 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.JambaCompleteClient.V1ChatComplete.g.verified.cs @@ -36,7 +36,7 @@ partial void ProcessV1ChatCompleteResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( + public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( string authorization, global::G.LanguageStudioApiServerDataTypesChatChatRequest request, global::System.Threading.CancellationToken cancellationToken = default) @@ -102,7 +102,7 @@ partial void ProcessV1ChatCompleteResponseContent( } 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}\" "); } @@ -146,20 +146,20 @@ partial void ProcessV1ChatCompleteResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( + public async global::System.Threading.Tasks.Task>> V1ChatCompleteAsync( string authorization, global::G.ModelName model, - global::System.Collections.Generic.IList> messages, + global::System.Collections.Generic.IList> messages, global::System.Collections.Generic.IList? tools = default, int n = 1, int maxTokens = 4096, double temperature = default, double topP = 1, - global::System.AnyOf>? stop = default, + global::G.AnyOf>? stop = default, bool stream = false, global::G.MockResponseConfig? mockResponse = default, global::System.Collections.Generic.IList? documents = default, - global::System.AllOf? responseFormat = default, + global::G.AllOf? responseFormat = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.LanguageStudioApiServerDataTypesChatChatRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs index 561c54d6df..e5cd4a7d17 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ChatCompletionResponseDeltaChoice.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class ChatCompletionResponseDeltaChoice [global::System.Text.Json.Serialization.JsonPropertyName("delta")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Delta { get; set; } + public required global::G.AnyOf Delta { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs index dc3d255d82..0d5abfa4b9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.CompletionBody.g.verified.cs @@ -77,21 +77,21 @@ public sealed partial class CompletionBody /// [global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? FrequencyPenalty { get; set; } + public global::G.AllOf? FrequencyPenalty { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? PresencePenalty { get; set; } + public global::G.AllOf? PresencePenalty { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("countPenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? CountPenalty { get; set; } + public global::G.AllOf? CountPenalty { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs index a97bddbdc5..df51b41150 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.EmbeddingsBody.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class EmbeddingsBody /// [global::System.Text.Json.Serialization.JsonPropertyName("type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Type { get; set; } = global::G.EmbedType.Segment; + public global::G.AllOf? Type { get; set; } = global::G.EmbedType.Segment; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs index 667ff3d993..4b2585486c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesChatChatRequest.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("messages")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Messages { get; set; } + public required global::System.Collections.Generic.IList> Messages { get; set; } /// /// @@ -61,7 +61,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("stop")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf>? Stop { get; set; } + public global::G.AnyOf>? Stop { get; set; } /// /// Whether or not to stream the result one token at a time using
@@ -91,7 +91,7 @@ public sealed partial class LanguageStudioApiServerDataTypesChatChatRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("response_format")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? ResponseFormat { get; set; } + public global::G.AllOf? ResponseFormat { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs index 584f304f67..46111e7ffc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LanguageStudioApiServerDataTypesJ2ChatChatRequest.g.verified.cs @@ -30,21 +30,21 @@ public sealed partial class LanguageStudioApiServerDataTypesJ2ChatChatRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? FrequencyPenalty { get; set; } + public global::G.AllOf? FrequencyPenalty { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? PresencePenalty { get; set; } + public global::G.AllOf? PresencePenalty { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("countPenalty")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? CountPenalty { get; set; } + public global::G.AllOf? CountPenalty { get; set; } /// /// Default Value: 1 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs index c683e70562..971acd1f68 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibraryAnswerRequest.g.verified.cs @@ -61,7 +61,7 @@ public sealed partial class LibraryAnswerRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("retrievalStrategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; + public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs index 1e8f2c2f08..efaf82cce6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.LibrarySearchRequest.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class LibrarySearchRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("retrievalStrategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; + public global::G.AllOf? RetrievalStrategy { get; set; } = global::G.RetrievalStrategy3.Default; /// /// Default Value: 1 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs index e889a2fee5..5b2282a39f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ParaphraseBody.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class ParaphraseBody /// [global::System.Text.Json.Serialization.JsonPropertyName("style")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Style { get; set; } = global::G.StyleType.General; + public global::G.AllOf? Style { get; set; } = global::G.StyleType.General; /// /// Default Value: 0 diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs index 1868a06a87..4bbd0af7c0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.Models.ValidationError.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class ValidationError /// [global::System.Text.Json.Serialization.JsonPropertyName("loc")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Loc { get; set; } + public required global::System.Collections.Generic.IList> Loc { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs index 5e0a54a47f..17e7e27342 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.ParaphraseClient.V1Paraphraze.g.verified.cs @@ -110,7 +110,7 @@ partial void ProcessV1ParaphrazeResponseContent( /// public async global::System.Threading.Tasks.Task V1ParaphrazeAsync( string text, - global::System.AllOf? style = default, + global::G.AllOf? style = default, int startIndex = 0, int endIndex = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs index 68250af9ee..6271763003 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibraryAnswer.g.verified.cs @@ -124,7 +124,7 @@ partial void ProcessV1LibraryAnswerResponseContent( global::System.Collections.Generic.IList? fileIds = default, global::G.AnswerLength? answerLength = default, global::G.Mode? mode = default, - global::System.AllOf? retrievalStrategy = default, + global::G.AllOf? retrievalStrategy = default, double retrievalSimilarityThreshold = default, double hybridSearchAlpha = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs index dcb1d3c03f..325b9da68e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#G.RAGEngineClient.V1LibrarySearch.g.verified.cs @@ -119,7 +119,7 @@ partial void ProcessV1LibrarySearchResponseContent( string? path = default, global::System.Collections.Generic.IList? labels = default, global::System.Collections.Generic.IList? fileIds = default, - global::System.AllOf? retrievalStrategy = default, + global::G.AllOf? retrievalStrategy = default, int maxNeighbors = 1, double retrievalSimilarityThreshold = default, double hybridSearchAlpha = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs index 065b7b7667..28122c230f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AllOf Read( + public override global::G.AllOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.AllOf( + var result = new global::G.AllOf( value1 ); @@ -40,7 +40,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AllOf value, + global::G.AllOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs index e43ac28aeb..f1d60f1cc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs index dc36115487..0f6c5aea48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3, @@ -85,7 +85,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs index 8193f367d6..2bca2bec47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory4 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Ai21/SystemTextJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs index 793533eb4c..4527e4ce72 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Api.CreateMessage.g.verified.cs @@ -308,7 +308,7 @@ partial void ProcessCreateMessageResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateMessageAsync( - global::System.AnyOf model, + global::G.AnyOf model, global::System.Collections.Generic.IList messages, int maxTokens, global::G.CreateMessageRequestMetadata? metadata = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs index 998aab08c3..9e26963748 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class CreateMessageRequest /// Example: claude-3-5-sonnet-20240620 /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// Input messages.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.Message.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.Message.g.verified.cs index 0cd09bb7be..5e478308d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.Message.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.Message.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class Message /// The content of the message. ///
[global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// The role of the messages author. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.ToolResultBlock.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.ToolResultBlock.g.verified.cs index 2f4c3516cd..15b8075275 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.ToolResultBlock.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#G.Models.ToolResultBlock.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class ToolResultBlock /// These content blocks can use the text or image types. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// Set to `true` if the tool execution resulted in an error. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Api.CreateMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Api.CreateMessage.g.verified.cs index 8efbff0ecf..368407b0aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Api.CreateMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Api.CreateMessage.g.verified.cs @@ -308,7 +308,7 @@ partial void ProcessCreateMessageResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateMessageAsync( - global::System.AnyOf model, + global::G.AnyOf model, global::System.Collections.Generic.IList messages, int maxTokens, global::G.CreateMessageRequestMetadata? metadata = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs index a4fa843963..0dfed8b7d5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs @@ -20,7 +20,7 @@ public sealed partial class CreateMessageRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// Input messages.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.Message.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.Message.g.verified.cs index 7bc974ec6f..8298cc92c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.Message.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.Message.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class Message [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// The role of the messages author. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.ToolResultBlock.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.ToolResultBlock.g.verified.cs index bda942f399..dcb6e303d3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.ToolResultBlock.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#G.Models.ToolResultBlock.g.verified.cs @@ -26,7 +26,7 @@ public sealed partial class ToolResultBlock [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// Set to `true` if the tool execution resulted in an error. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index 6a6f52ea1f..e1cc33573d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -40,7 +40,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -64,7 +64,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index b1471585c7..151ea65388 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -40,7 +40,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -64,7 +64,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs index d25bc8b1c5..775ecbadd6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#JsonSerializerContextTypes.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.AnyOf? Type1 { get; set; } + public global::G.AnyOf? Type1 { get; set; } /// /// /// @@ -38,7 +38,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.OneOf>? Type6 { get; set; } + public global::G.OneOf>? Type6 { get; set; } /// /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Anthropic/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurBaseParams.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurBaseParams.g.verified.cs index 51c447279e..f751e3c0cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurBaseParams.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurBaseParams.g.verified.cs @@ -29,14 +29,14 @@ public sealed partial class LemurBaseParams /// Context to provide the model. This can be a string or a free-form JSON value. /// [global::Newtonsoft.Json.JsonProperty("context")] - public global::System.OneOf? Context { get; set; } + public global::G.OneOf? Context { get; set; } /// /// The model that is used for the final prompt after compression is performed.
/// Default Value: default ///
[global::Newtonsoft.Json.JsonProperty("final_model")] - public global::System.AnyOf? FinalModel { get; set; } = global::G.LemurModel.Default; + public global::G.AnyOf? FinalModel { get; set; } = global::G.LemurModel.Default; /// /// Max output size in tokens, up to 4000
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurQuestion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurQuestion.g.verified.cs index 29de6f5b43..91e69049c6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurQuestion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.LemurQuestion.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class LemurQuestion /// Any context about the transcripts you wish to provide. This can be a string or any object. ///
[global::Newtonsoft.Json.JsonProperty("context")] - public global::System.OneOf? Context { get; set; } + public global::G.OneOf? Context { get; set; } /// /// How you want the answer to be returned. This can be any text. Can't be used with answer_options. Examples: "short sentence", "bullet points" diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.Transcript.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.Transcript.g.verified.cs index 5a5f6b3af1..b5e8f04699 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.Transcript.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.Transcript.g.verified.cs @@ -35,7 +35,7 @@ public sealed partial class Transcript /// The default value is 'en_us'. /// [global::Newtonsoft.Json.JsonProperty("language_code")] - public global::System.AnyOf? LanguageCode { get; set; } + public global::G.AnyOf? LanguageCode { get; set; } /// /// Whether [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection) is enabled, either true or false @@ -60,7 +60,7 @@ public sealed partial class Transcript /// The speech model used for the transcription. When `null`, the default model is used. /// [global::Newtonsoft.Json.JsonProperty("speech_model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf SpeechModel { get; set; } = default!; + public global::G.OneOf SpeechModel { get; set; } = default!; /// /// The textual transcript of your media file @@ -162,7 +162,7 @@ public sealed partial class Transcript /// See [Key Phrases](https://www.assemblyai.com/docs/models/key-phrases) for more information. /// [global::Newtonsoft.Json.JsonProperty("auto_highlights_result")] - public global::System.OneOf? AutoHighlightsResult { get; set; } + public global::G.OneOf? AutoHighlightsResult { get; set; } /// /// The point in time, in milliseconds, in the file at which the transcription was started @@ -212,7 +212,7 @@ public sealed partial class Transcript /// See [PII redaction](https://www.assemblyai.com/docs/models/pii-redaction) for more information. /// [global::Newtonsoft.Json.JsonProperty("redact_pii_audio_quality")] - public global::System.OneOf? RedactPiiAudioQuality { get; set; } + public global::G.OneOf? RedactPiiAudioQuality { get; set; } /// /// The list of PII Redaction policies that were enabled, if PII Redaction is enabled.
@@ -250,7 +250,7 @@ public sealed partial class Transcript /// See [Content moderation](https://www.assemblyai.com/docs/models/content-moderation) for more information. ///
[global::Newtonsoft.Json.JsonProperty("content_safety_labels")] - public global::System.OneOf? ContentSafetyLabels { get; set; } + public global::G.OneOf? ContentSafetyLabels { get; set; } /// /// Whether [Topic Detection](https://www.assemblyai.com/docs/models/topic-detection) is enabled, can be true or false @@ -263,7 +263,7 @@ public sealed partial class Transcript /// See [Topic Detection](https://www.assemblyai.com/docs/models/topic-detection) for more information. /// [global::Newtonsoft.Json.JsonProperty("iab_categories_result")] - public global::System.OneOf? IabCategoriesResult { get; set; } + public global::G.OneOf? IabCategoriesResult { get; set; } /// /// Customize how words are spelled and formatted using to and from values diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.TranscriptOptionalParams.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.TranscriptOptionalParams.g.verified.cs index 6e3a9d14d8..20f3edfe26 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.TranscriptOptionalParams.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#G.Models.TranscriptOptionalParams.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class TranscriptOptionalParams /// Default Value: en_us /// [global::Newtonsoft.Json.JsonProperty("language_code")] - public global::System.OneOf?, object>? LanguageCode { get; set; } = "en_us"; + public global::G.OneOf?, object>? LanguageCode { get; set; } = "en_us"; /// /// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
@@ -40,7 +40,7 @@ public sealed partial class TranscriptOptionalParams /// Default Value: best ///
[global::Newtonsoft.Json.JsonProperty("speech_model")] - public global::System.OneOf? SpeechModel { get; set; } = global::G.SpeechModel2.Best; + public global::G.OneOf? SpeechModel { get; set; } = global::G.SpeechModel2.Best; /// /// Enable Automatic Punctuation, can be true or false
@@ -160,7 +160,7 @@ public sealed partial class TranscriptOptionalParams /// Default Value: hash ///
[global::Newtonsoft.Json.JsonProperty("redact_pii_sub")] - public global::System.OneOf? RedactPiiSub { get; set; } = global::G.SubstitutionPolicy.Hash; + public global::G.OneOf? RedactPiiSub { get; set; } = global::G.SubstitutionPolicy.Hash; /// /// Enable [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization), can be true or false
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurBaseParams.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurBaseParams.g.verified.cs index 59f417235a..15189fcb2e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurBaseParams.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurBaseParams.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class LemurBaseParams /// [global::System.Text.Json.Serialization.JsonPropertyName("context")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Context { get; set; } + public global::G.OneOf? Context { get; set; } /// /// The model that is used for the final prompt after compression is performed.
@@ -38,7 +38,7 @@ public sealed partial class LemurBaseParams ///
[global::System.Text.Json.Serialization.JsonPropertyName("final_model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FinalModel { get; set; } = global::G.LemurModel.Default; + public global::G.AnyOf? FinalModel { get; set; } = global::G.LemurModel.Default; /// /// Max output size in tokens, up to 4000
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurQuestion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurQuestion.g.verified.cs index e352155b1a..46b7322df6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurQuestion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.LemurQuestion.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class LemurQuestion ///
[global::System.Text.Json.Serialization.JsonPropertyName("context")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Context { get; set; } + public global::G.OneOf? Context { get; set; } /// /// How you want the answer to be returned. This can be any text. Can't be used with answer_options. Examples: "short sentence", "bullet points" diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.Transcript.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.Transcript.g.verified.cs index 1edaed8dce..7ff1371bc3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.Transcript.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.Transcript.g.verified.cs @@ -40,7 +40,7 @@ public sealed partial class Transcript /// [global::System.Text.Json.Serialization.JsonPropertyName("language_code")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LanguageCode { get; set; } + public global::G.AnyOf? LanguageCode { get; set; } /// /// Whether [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection) is enabled, either true or false @@ -69,7 +69,7 @@ public sealed partial class Transcript [global::System.Text.Json.Serialization.JsonPropertyName("speech_model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf SpeechModel { get; set; } + public required global::G.OneOf SpeechModel { get; set; } /// /// The textual transcript of your media file @@ -174,7 +174,7 @@ public sealed partial class Transcript /// [global::System.Text.Json.Serialization.JsonPropertyName("auto_highlights_result")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? AutoHighlightsResult { get; set; } + public global::G.OneOf? AutoHighlightsResult { get; set; } /// /// The point in time, in milliseconds, in the file at which the transcription was started @@ -226,7 +226,7 @@ public sealed partial class Transcript /// [global::System.Text.Json.Serialization.JsonPropertyName("redact_pii_audio_quality")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? RedactPiiAudioQuality { get; set; } + public global::G.OneOf? RedactPiiAudioQuality { get; set; } /// /// The list of PII Redaction policies that were enabled, if PII Redaction is enabled.
@@ -266,7 +266,7 @@ public sealed partial class Transcript ///
[global::System.Text.Json.Serialization.JsonPropertyName("content_safety_labels")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ContentSafetyLabels { get; set; } + public global::G.OneOf? ContentSafetyLabels { get; set; } /// /// Whether [Topic Detection](https://www.assemblyai.com/docs/models/topic-detection) is enabled, can be true or false @@ -280,7 +280,7 @@ public sealed partial class Transcript /// [global::System.Text.Json.Serialization.JsonPropertyName("iab_categories_result")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? IabCategoriesResult { get; set; } + public global::G.OneOf? IabCategoriesResult { get; set; } /// /// Customize how words are spelled and formatted using to and from values diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.TranscriptOptionalParams.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.TranscriptOptionalParams.g.verified.cs index 3b309680cb..fbb52778e3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.TranscriptOptionalParams.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#G.Models.TranscriptOptionalParams.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class TranscriptOptionalParams /// [global::System.Text.Json.Serialization.JsonPropertyName("language_code")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf?, object>? LanguageCode { get; set; } = "en_us"; + public global::G.OneOf?, object>? LanguageCode { get; set; } = "en_us"; /// /// Enable [Automatic language detection](https://www.assemblyai.com/docs/models/speech-recognition#automatic-language-detection), either true or false.
@@ -42,7 +42,7 @@ public sealed partial class TranscriptOptionalParams ///
[global::System.Text.Json.Serialization.JsonPropertyName("speech_model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? SpeechModel { get; set; } = global::G.SpeechModel2.Best; + public global::G.OneOf? SpeechModel { get; set; } = global::G.SpeechModel2.Best; /// /// Enable Automatic Punctuation, can be true or false
@@ -165,7 +165,7 @@ public sealed partial class TranscriptOptionalParams ///
[global::System.Text.Json.Serialization.JsonPropertyName("redact_pii_sub")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? RedactPiiSub { get; set; } = global::G.SubstitutionPolicy.Hash; + public global::G.OneOf? RedactPiiSub { get; set; } = global::G.SubstitutionPolicy.Hash; /// /// Enable [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization), can be true or false
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/AssemblyAi/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chat.g.verified.cs index 4a6ba02153..7df940fb6d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chat.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chat.g.verified.cs @@ -33,7 +33,7 @@ partial void ProcessChatResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ChatAsync( + public async global::System.Threading.Tasks.Task> ChatAsync( global::G.ChatRequest request, string? xClientName = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -99,7 +99,7 @@ partial void ProcessChatResponseContent( } 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}\" "); } @@ -267,7 +267,7 @@ partial void ProcessChatResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ChatAsync( + public async global::System.Threading.Tasks.Task> ChatAsync( string message, string? xClientName = default, string? model = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chatv2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chatv2.g.verified.cs index 33872590fe..ddd2f27d48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chatv2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Chatv2.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessChatv2ResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> Chatv2Async( + public async global::System.Threading.Tasks.Task> Chatv2Async( global::G.Chatv2Request request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -92,7 +92,7 @@ partial void ProcessChatv2ResponseContent( } 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}\" "); } @@ -159,7 +159,7 @@ partial void ProcessChatv2ResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> Chatv2Async( + public async global::System.Threading.Tasks.Task> Chatv2Async( string model, global::System.Collections.Generic.IList messages, global::System.Collections.Generic.IList? tools = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Embed.g.verified.cs index 341e857940..19154f3505 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Embed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Embed.g.verified.cs @@ -34,7 +34,7 @@ partial void ProcessEmbedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> EmbedAsync( + public async global::System.Threading.Tasks.Task> EmbedAsync( global::G.EmbedRequest request, string? xClientName = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -100,7 +100,7 @@ partial void ProcessEmbedResponseContent( } 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}\" "); } @@ -149,7 +149,7 @@ partial void ProcessEmbedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> EmbedAsync( + public async global::System.Threading.Tasks.Task> EmbedAsync( global::System.Collections.Generic.IList texts, string? xClientName = default, string? model = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Rerank.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Rerank.g.verified.cs index 3d35d164f4..0b447e66d9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Rerank.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Api.Rerank.g.verified.cs @@ -138,7 +138,7 @@ partial void ProcessRerankResponseContent( /// public async global::System.Threading.Tasks.Task RerankAsync( string query, - global::System.Collections.Generic.IList> documents, + global::System.Collections.Generic.IList> documents, string? xClientName = default, string? model = default, int topN = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessage.g.verified.cs index 1aaeefb6fe..480c10b9d9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessage.g.verified.cs @@ -33,7 +33,7 @@ public sealed partial class AssistantMessage /// /// [global::Newtonsoft.Json.JsonProperty("content")] - public global::System.OneOf>>? Content { get; set; } + public global::G.OneOf>>? Content { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessageResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessageResponse.g.verified.cs index 4477e619bf..6c38146b4f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessageResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.AssistantMessageResponse.g.verified.cs @@ -33,7 +33,7 @@ public sealed partial class AssistantMessageResponse /// /// [global::Newtonsoft.Json.JsonProperty("content")] - public global::System.Collections.Generic.IList>? Content { get; set; } + public global::System.Collections.Generic.IList>? Content { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs index 761f1b3714..ce8fdad63a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class RerankRequest /// We recommend a maximum of 1,000 documents for optimal endpoint performance. /// [global::Newtonsoft.Json.JsonProperty("documents", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Documents { get; set; } = default!; + public global::System.Collections.Generic.IList> Documents { get; set; } = default!; /// /// The number of most relevant documents or indices to return, defaults to the length of the documents diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.SystemMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.SystemMessage.g.verified.cs index 48a693ced8..a91759fc95 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.SystemMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.SystemMessage.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class SystemMessage /// /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf>> Content { get; set; } = default!; + public global::G.OneOf>> Content { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.ToolMessage2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.ToolMessage2.g.verified.cs index 07b16c4612..65bb1ebd6a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.ToolMessage2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.ToolMessage2.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class ToolMessage2 /// /// [global::Newtonsoft.Json.JsonProperty("tool_content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> ToolContent { get; set; } = default!; + public global::System.Collections.Generic.IList> ToolContent { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.UserMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.UserMessage.g.verified.cs index ed78c120a2..f2ccfa6168 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.UserMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.Models.UserMessage.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class UserMessage /// If a string is provided, it will be treated as a text content block. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// Documents seen by the model when generating the reply. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chat.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chat.g.verified.cs index 30a7c3f2ae..7774d78223 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chat.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chat.g.verified.cs @@ -33,7 +33,7 @@ partial void ProcessChatResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ChatAsync( + public async global::System.Threading.Tasks.Task> ChatAsync( global::G.ChatRequest request, string? xClientName = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -99,7 +99,7 @@ partial void ProcessChatResponseContent( } 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}\" "); } @@ -267,7 +267,7 @@ partial void ProcessChatResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> ChatAsync( + public async global::System.Threading.Tasks.Task> ChatAsync( string message, string? xClientName = default, string? model = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chatv2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chatv2.g.verified.cs index aa455dad8a..3143f6f3ef 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chatv2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Chatv2.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessChatv2ResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> Chatv2Async( + public async global::System.Threading.Tasks.Task> Chatv2Async( global::G.Chatv2Request request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -92,7 +92,7 @@ partial void ProcessChatv2ResponseContent( } 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}\" "); } @@ -159,7 +159,7 @@ partial void ProcessChatv2ResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> Chatv2Async( + public async global::System.Threading.Tasks.Task> Chatv2Async( string model, global::System.Collections.Generic.IList messages, global::System.Collections.Generic.IList? tools = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Embed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Embed.g.verified.cs index 156dbeb81f..b0ad50e092 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Embed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Embed.g.verified.cs @@ -34,7 +34,7 @@ partial void ProcessEmbedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> EmbedAsync( + public async global::System.Threading.Tasks.Task> EmbedAsync( global::G.EmbedRequest request, string? xClientName = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -100,7 +100,7 @@ partial void ProcessEmbedResponseContent( } 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}\" "); } @@ -149,7 +149,7 @@ partial void ProcessEmbedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> EmbedAsync( + public async global::System.Threading.Tasks.Task> EmbedAsync( global::System.Collections.Generic.IList texts, string? xClientName = default, string? model = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Rerank.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Rerank.g.verified.cs index 321957b0eb..6907212ede 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Rerank.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Api.Rerank.g.verified.cs @@ -138,7 +138,7 @@ partial void ProcessRerankResponseContent( /// public async global::System.Threading.Tasks.Task RerankAsync( string query, - global::System.Collections.Generic.IList> documents, + global::System.Collections.Generic.IList> documents, string? xClientName = default, string? model = default, int topN = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessage.g.verified.cs index a25cebedde..ac46ca0732 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessage.g.verified.cs @@ -35,7 +35,7 @@ public sealed partial class AssistantMessage /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>>? Content { get; set; } + public global::G.OneOf>>? Content { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessageResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessageResponse.g.verified.cs index bdaee9664e..9781190f40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessageResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.AssistantMessageResponse.g.verified.cs @@ -34,7 +34,7 @@ public sealed partial class AssistantMessageResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::System.Collections.Generic.IList>? Content { get; set; } + public global::System.Collections.Generic.IList>? Content { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs index cf6f02f827..ae16a57c51 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs @@ -32,7 +32,7 @@ public sealed partial class RerankRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("documents")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Documents { get; set; } + public required global::System.Collections.Generic.IList> Documents { get; set; } /// /// The number of most relevant documents or indices to return, defaults to the length of the documents diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.SystemMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.SystemMessage.g.verified.cs index 5f4ad808bc..93d5624b79 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.SystemMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.SystemMessage.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class SystemMessage [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf>> Content { get; set; } + public required global::G.OneOf>> Content { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.ToolMessage2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.ToolMessage2.g.verified.cs index 7481f9ded5..26fb02c37b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.ToolMessage2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.ToolMessage2.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class ToolMessage2 /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_content")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> ToolContent { get; set; } + public required global::System.Collections.Generic.IList> ToolContent { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.UserMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.UserMessage.g.verified.cs index 78042cee58..c065f8ec09 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.UserMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#G.Models.UserMessage.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class UserMessage [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// Documents seen by the model when generating the reply. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs index 8f6fb328ce..ade9215444 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1 ); @@ -40,7 +40,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs index 57ff9d167d..50f7b590c3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Cohere/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs index 8535771955..8c493e4b20 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs @@ -45,7 +45,7 @@ public sealed partial class ValidationErrorError /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.OneOf>? Value { get; set; } + public global::G.OneOf>? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/NewtonsoftJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs index 79fee392b1..962ec6c5ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class ValidationErrorError /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf>? Value { get; set; } + public global::G.OneOf>? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs index 73bc9f5c18..64a17520a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs index 141db21b25..a60f3e9978 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Filtering/SystemTextJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.2.g.verified.cs index cc8cad9ec0..5ba8f097cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AllOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.3.g.verified.cs index 80ee5cae1a..d4413137f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#AnyOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs index f9631ff073..ebae3839ec 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs @@ -10,14 +10,14 @@ partial void PrepareActionsCreateWorkflowDispatchArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId, + ref global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request); partial void PrepareActionsCreateWorkflowDispatchRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request); partial void ProcessActionsCreateWorkflowDispatchResponse( global::System.Net.Http.HttpClient httpClient, @@ -38,7 +38,7 @@ partial void ProcessActionsCreateWorkflowDispatchResponse( public async global::System.Threading.Tasks.Task ActionsCreateWorkflowDispatchAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -108,7 +108,7 @@ partial void ProcessActionsCreateWorkflowDispatchResponse( public async global::System.Threading.Tasks.Task ActionsCreateWorkflowDispatchAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string @ref, global::G.ActionsCreateWorkflowDispatchRequestInputs? inputs = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs index f59339d1ce..177f90d9e1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsDisableWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsDisableWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsDisableWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -34,7 +34,7 @@ partial void ProcessActionsDisableWorkflowResponse( public async global::System.Threading.Tasks.Task ActionsDisableWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs index cd149c79ee..41ac5e9144 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsEnableWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsEnableWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsEnableWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -34,7 +34,7 @@ partial void ProcessActionsEnableWorkflowResponse( public async global::System.Threading.Tasks.Task ActionsEnableWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs index d0a92df458..dff4f00b97 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsGetWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsGetWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsGetWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -41,7 +41,7 @@ partial void ProcessActionsGetWorkflowResponseContent( public async global::System.Threading.Tasks.Task ActionsGetWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs index 65db293d27..d9fae02ca0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsGetWorkflowUsageArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsGetWorkflowUsageRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsGetWorkflowUsageResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -41,7 +41,7 @@ partial void ProcessActionsGetWorkflowUsageResponseContent( public async global::System.Threading.Tasks.Task ActionsGetWorkflowUsageAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs index 71d27e80c7..15b90ba127 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs @@ -10,7 +10,7 @@ partial void PrepareActionsListWorkflowRunsArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId, + ref global::G.OneOf workflowId, ref string? actor, ref string? branch, ref string? @event, @@ -26,7 +26,7 @@ partial void PrepareActionsListWorkflowRunsRequest( global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string? actor, string? branch, string? @event, @@ -76,7 +76,7 @@ partial void ProcessActionsListWorkflowRunsResponseContent( public async global::System.Threading.Tasks.Task ActionsListWorkflowRunsAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string? actor = default, string? branch = default, string? @event = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs index b5c852ffd2..eefa124338 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareActionsReviewCustomGatesForRunArguments( ref string owner, ref string repo, ref int runId, - global::System.AnyOf request); + global::G.AnyOf request); partial void PrepareActionsReviewCustomGatesForRunRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int runId, - global::System.AnyOf request); + global::G.AnyOf request); partial void ProcessActionsReviewCustomGatesForRunResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -40,7 +40,7 @@ partial void ProcessActionsReviewCustomGatesForRunResponse( string owner, string repo, int runId, - global::System.AnyOf request, + global::G.AnyOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -105,7 +105,7 @@ partial void ProcessActionsReviewCustomGatesForRunResponse( int runId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AnyOf + var request = new global::G.AnyOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs index 7ac8169f94..6e29f5c163 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs @@ -51,7 +51,7 @@ partial void ProcessActivityListReposStarredByUserResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListReposStarredByUserAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListReposStarredByUserAsync( string username, global::G.ActivityListReposStarredByUserSort? sort = global::G.ActivityListReposStarredByUserSort.Created, global::G.ActivityListReposStarredByUserDirection? direction = global::G.ActivityListReposStarredByUserDirection.Desc, @@ -130,7 +130,7 @@ partial void ProcessActivityListReposStarredByUserResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs index ec60abee2e..e8afc434fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs @@ -44,7 +44,7 @@ partial void ProcessActivityListStargazersForRepoResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListStargazersForRepoAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListStargazersForRepoAsync( string owner, string repo, int perPage = 30, @@ -108,7 +108,7 @@ partial void ProcessActivityListStargazersForRepoResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs index 349961936f..7d0e8f9d69 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessAppsCreateFromManifestResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> AppsCreateFromManifestAsync( + public async global::System.Threading.Tasks.Task> AppsCreateFromManifestAsync( string code, global::System.Threading.CancellationToken cancellationToken = default) { @@ -84,7 +84,7 @@ partial void ProcessAppsCreateFromManifestResponseContent( } 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/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs index 6471cc2ed9..da20eb5730 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class CodespacesClient { partial void PrepareCodespacesCreateForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf request); + global::G.OneOf request); partial void PrepareCodespacesCreateForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf request); + global::G.OneOf request); partial void ProcessCodespacesCreateForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -32,7 +32,7 @@ partial void ProcessCodespacesCreateForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CodespacesCreateForAuthenticatedUserAsync( - global::System.OneOf request, + global::G.OneOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -107,7 +107,7 @@ partial void ProcessCodespacesCreateForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task CodespacesCreateForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf + var request = new global::G.OneOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs index 8c75b66474..5b8177f73c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCodespacesCreateOrUpdateSecretForAuthenticatedUserResponseCo string secretName, string keyId, string? encryptedValue = default, - global::System.Collections.Generic.IList>? selectedRepositoryIds = default, + global::System.Collections.Generic.IList>? selectedRepositoryIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.GistsClient.GistsCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.GistsClient.GistsCreate.g.verified.cs index 18a8f8137a..c9bc781780 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.GistsClient.GistsCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.GistsClient.GistsCreate.g.verified.cs @@ -115,7 +115,7 @@ partial void ProcessGistsCreateResponseContent( public async global::System.Threading.Tasks.Task GistsCreateAsync( global::G.GistsCreateRequestFiles files, string? description = default, - global::System.OneOf? @public = default, + global::G.OneOf? @public = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.GistsCreateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs index 362729c772..5e65de39fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs @@ -26,7 +26,7 @@ partial void ProcessInteractionsGetRestrictionsForAuthenticatedUserResponseConte /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForAuthenticatedUserAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -78,7 +78,7 @@ partial void ProcessInteractionsGetRestrictionsForAuthenticatedUserResponseConte } 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/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs index 1fbc74b04b..4f4ef7201b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessInteractionsGetRestrictionsForOrgResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForOrgAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForOrgAsync( string org, global::System.Threading.CancellationToken cancellationToken = default) { @@ -84,7 +84,7 @@ partial void ProcessInteractionsGetRestrictionsForOrgResponseContent( } 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/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs index a5a5dc8026..4fe4bedb4e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs @@ -32,7 +32,7 @@ partial void ProcessInteractionsGetRestrictionsForRepoResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForRepoAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForRepoAsync( string owner, string repo, global::System.Threading.CancellationToken cancellationToken = default) @@ -90,7 +90,7 @@ partial void ProcessInteractionsGetRestrictionsForRepoResponseContent( } 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/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs index 921aeb24be..9ad22389fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareIssuesAddLabelsArguments( ref string owner, ref string repo, ref int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void PrepareIssuesAddLabelsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void ProcessIssuesAddLabelsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessIssuesAddLabelsResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessIssuesAddLabelsResponseContent( int issueNumber, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> + var request = new global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesCreate.g.verified.cs index ee70eb5a27..55dbde3de9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesCreate.g.verified.cs @@ -149,11 +149,11 @@ partial void ProcessIssuesCreateResponseContent( public async global::System.Threading.Tasks.Task IssuesCreateAsync( string owner, string repo, - global::System.OneOf title, + global::G.OneOf title, string? body = default, string? assignee = default, - global::System.OneOf? milestone = default, - global::System.Collections.Generic.IList>? labels = default, + global::G.OneOf? milestone = default, + global::System.Collections.Generic.IList>? labels = default, global::System.Collections.Generic.IList? assignees = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs index c8b1642761..d65134178b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareIssuesSetLabelsArguments( ref string owner, ref string repo, ref int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void PrepareIssuesSetLabelsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void ProcessIssuesSetLabelsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessIssuesSetLabelsResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessIssuesSetLabelsResponseContent( int issueNumber, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> + var request = new global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs index 498610eb6e..3647cf9e04 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs @@ -160,13 +160,13 @@ partial void ProcessIssuesUpdateResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf? title = default, + global::G.OneOf? title = default, string? body = default, string? assignee = default, global::G.IssuesUpdateRequestState? state = default, global::G.IssuesUpdateRequestStateReason? stateReason = default, - global::System.OneOf? milestone = default, - global::System.Collections.Generic.IList>? labels = default, + global::G.OneOf? milestone = default, + global::System.Collections.Generic.IList>? labels = default, global::System.Collections.Generic.IList? assignees = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs index 6f0f5d1fbe..963a543182 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class CodespacesCreateOrUpdateSecretForAuthenticatedUserRe /// An array of repository ids that can access the user secret. You can manage the list of selected repositories using the [List selected repositories for a user secret](https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret), [Set selected repositories for a user secret](https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret), and [Remove a selected repository from a user secret](https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret) endpoints. /// [global::Newtonsoft.Json.JsonProperty("selected_repository_ids")] - public global::System.Collections.Generic.IList>? SelectedRepositoryIds { get; set; } + public global::System.Collections.Generic.IList>? SelectedRepositoryIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CopilotSeatDetails.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CopilotSeatDetails.g.verified.cs index 7b19a244a8..1968938f48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CopilotSeatDetails.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CopilotSeatDetails.g.verified.cs @@ -15,13 +15,13 @@ public sealed partial class CopilotSeatDetails /// The assignee that has been granted access to GitHub Copilot. /// [global::Newtonsoft.Json.JsonProperty("assignee", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Assignee { get; set; } = default!; + public global::G.OneOf Assignee { get; set; } = default!; /// /// The team that granted access to GitHub Copilot to the assignee. This will be null if the user was assigned a seat individually. /// [global::Newtonsoft.Json.JsonProperty("assigning_team")] - public global::System.OneOf? AssigningTeam { get; set; } + public global::G.OneOf? AssigningTeam { get; set; } /// /// The pending cancellation date for the seat, in `YYYY-MM-DD` format. This will be null unless the assignee's Copilot access has been canceled during the current billing cycle. If the seat has been cancelled, this corresponds to the start of the organization's next billing cycle. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CustomPropertyValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CustomPropertyValue.g.verified.cs index 94dbf2e6b5..999e54efdc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CustomPropertyValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.CustomPropertyValue.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CustomPropertyValue /// The value assigned to the property /// [global::Newtonsoft.Json.JsonProperty("value", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf>? Value { get; set; } = default!; + public global::G.OneOf>? Value { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Deployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Deployment.g.verified.cs index 186eb6600a..c602367209 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Deployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Deployment.g.verified.cs @@ -54,7 +54,7 @@ public sealed partial class Deployment /// /// [global::Newtonsoft.Json.JsonProperty("payload", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Payload { get; set; } = default!; + public global::G.OneOf Payload { get; set; } = default!; /// /// Example: staging diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Environment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Environment.g.verified.cs index 5499cffc10..17c0d7c158 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Environment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Environment.g.verified.cs @@ -59,7 +59,7 @@ public sealed partial class Environment /// Built-in deployment protection rules for the environment. /// [global::Newtonsoft.Json.JsonProperty("protection_rules")] - public global::System.Collections.Generic.IList>? ProtectionRules { get; set; } + public global::System.Collections.Generic.IList>? ProtectionRules { get; set; } /// /// The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs index 9f2a18b1a3..a43aba3c65 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class EnvironmentProtectionRuleVariant2Reviewer /// /// [global::Newtonsoft.Json.JsonProperty("reviewer")] - public global::System.AnyOf? Reviewer { get; set; } + public global::G.AnyOf? Reviewer { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.GistsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.GistsCreateRequest.g.verified.cs index 628fa3f674..499bb96e90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.GistsCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.GistsCreateRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class GistsCreateRequest /// /// [global::Newtonsoft.Json.JsonProperty("public")] - public global::System.OneOf? Public { get; set; } + public global::G.OneOf? Public { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Installation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Installation.g.verified.cs index 5b854c133a..912ea8e524 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Installation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Installation.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class Installation /// /// [global::Newtonsoft.Json.JsonProperty("account", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf? Account { get; set; } = default!; + public global::G.AnyOf? Account { get; set; } = default!; /// /// Describe whether all repositories have been selected or there's a selection involved diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs index 4db783a040..310bdba730 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class IntegrationInstallationRequest /// /// [global::Newtonsoft.Json.JsonProperty("account", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Account { get; set; } = default!; + public global::G.AnyOf Account { get; set; } = default!; /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Issue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Issue.g.verified.cs index 457230bf1c..f8964aa83b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Issue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.Issue.g.verified.cs @@ -106,7 +106,7 @@ public sealed partial class Issue /// Example: [bug, registration] /// [global::Newtonsoft.Json.JsonProperty("labels", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Labels { get; set; } = default!; + public global::System.Collections.Generic.IList> Labels { get; set; } = default!; /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesCreateRequest.g.verified.cs index 90509f0875..2ea75c89a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesCreateRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class IssuesCreateRequest /// The title of the issue. /// [global::Newtonsoft.Json.JsonProperty("title", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Title { get; set; } = default!; + public global::G.OneOf Title { get; set; } = default!; /// /// The contents of the issue. @@ -33,13 +33,13 @@ public sealed partial class IssuesCreateRequest /// /// [global::Newtonsoft.Json.JsonProperty("milestone")] - public global::System.OneOf? Milestone { get; set; } + public global::G.OneOf? Milestone { get; set; } /// /// Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._ /// [global::Newtonsoft.Json.JsonProperty("labels")] - public global::System.Collections.Generic.IList>? Labels { get; set; } + public global::System.Collections.Generic.IList>? Labels { get; set; } /// /// Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._ diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesUpdateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesUpdateRequest.g.verified.cs index 8aab02f7c7..8282a2fa63 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesUpdateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.IssuesUpdateRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class IssuesUpdateRequest /// The title of the issue. /// [global::Newtonsoft.Json.JsonProperty("title")] - public global::System.OneOf? Title { get; set; } + public global::G.OneOf? Title { get; set; } /// /// The contents of the issue. @@ -46,13 +46,13 @@ public sealed partial class IssuesUpdateRequest /// /// [global::Newtonsoft.Json.JsonProperty("milestone")] - public global::System.OneOf? Milestone { get; set; } + public global::G.OneOf? Milestone { get; set; } /// /// Labels to associate with this issue. Pass one or more labels to _replace_ the set of labels on this issue. Send an empty array (`[]`) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped. /// [global::Newtonsoft.Json.JsonProperty("labels")] - public global::System.Collections.Generic.IList>? Labels { get; set; } + public global::System.Collections.Generic.IList>? Labels { get; set; } /// /// Usernames to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this issue. Send an empty array (`[]`) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.NullableIssue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.NullableIssue.g.verified.cs index 1f158037a5..86f50287a0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.NullableIssue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.NullableIssue.g.verified.cs @@ -106,7 +106,7 @@ public sealed partial class NullableIssue /// Example: [bug, registration] /// [global::Newtonsoft.Json.JsonProperty("labels", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Labels { get; set; } = default!; + public global::System.Collections.Generic.IList> Labels { get; set; } = default!; /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgCustomProperty.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgCustomProperty.g.verified.cs index 7be04a340a..9dba806ccf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgCustomProperty.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgCustomProperty.g.verified.cs @@ -34,7 +34,7 @@ public sealed partial class OrgCustomProperty /// Default value of the property /// [global::Newtonsoft.Json.JsonProperty("default_value")] - public global::System.OneOf>? DefaultValue { get; set; } + public global::G.OneOf>? DefaultValue { get; set; } /// /// Short description of the property diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgRulesetConditions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgRulesetConditions.g.verified.cs index c62d3bec64..25a29e77cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgRulesetConditions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgRulesetConditions.g.verified.cs @@ -15,9 +15,9 @@ namespace G /// Conditions to target repositories by name and refs by name /// #if NET6_0_OR_GREATER - public global::System.AllOf? Value1 { get; init; } + public global::G.AllOf? Value1 { get; init; } #else - public global::System.AllOf? Value1 { get; } + public global::G.AllOf? Value1 { get; } #endif /// @@ -31,17 +31,17 @@ namespace G /// /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value1; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value1; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value1 = value; } @@ -50,9 +50,9 @@ public OrgRulesetConditions(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value2 { get; init; } + public global::G.AllOf? Value2 { get; init; } #else - public global::System.AllOf? Value2 { get; } + public global::G.AllOf? Value2 { get; } #endif /// @@ -66,17 +66,17 @@ public OrgRulesetConditions(global::System.AllOf /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value2; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value2; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value2 = value; } @@ -85,9 +85,9 @@ public OrgRulesetConditions(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value3 { get; init; } + public global::G.AllOf? Value3 { get; init; } #else - public global::System.AllOf? Value3 { get; } + public global::G.AllOf? Value3 { get; } #endif /// @@ -101,17 +101,17 @@ public OrgRulesetConditions(global::System.AllOf /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value3; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value3; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value3 = value; } @@ -120,9 +120,9 @@ public OrgRulesetConditions(global::System.AllOf public OrgRulesetConditions( - global::System.AllOf? value1, - global::System.AllOf? value2, - global::System.AllOf? value3 + global::G.AllOf? value1, + global::G.AllOf? value2, + global::G.AllOf? value3 ) { Value1 = value1; @@ -155,11 +155,11 @@ public override int GetHashCode() var fields = new object?[] { Value1, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value2, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value3, - typeof(global::System.AllOf), + typeof(global::G.AllOf), }; const int offset = unchecked((int)2166136261); const int prime = 16777619; @@ -175,9 +175,9 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null public bool Equals(OrgRulesetConditions 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(Value1, other.Value1) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value2, other.Value2) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value3, other.Value3) ; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs index d8951fdac1..cd5b353aa2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class OrgsCreateOrUpdateCustomPropertyRequest /// Default value of the property /// [global::Newtonsoft.Json.JsonProperty("default_value")] - public global::System.OneOf>? DefaultValue { get; set; } + public global::G.OneOf>? DefaultValue { get; set; } /// /// Short description of the property diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PageDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PageDeployment.g.verified.cs index c130c74874..5989e7554f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PageDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PageDeployment.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class PageDeployment /// The ID of the GitHub Pages deployment. This is the Git SHA of the deployed commit. /// [global::Newtonsoft.Json.JsonProperty("id", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Id { get; set; } = default!; + public global::G.OneOf Id { get; set; } = default!; /// /// The URI to monitor GitHub Pages deployment status.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs index 4ddfa6761d..2f13079e9d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class PendingDeploymentReviewer /// ///
[global::Newtonsoft.Json.JsonProperty("reviewer")] - public global::System.AnyOf? Reviewer { get; set; } + public global::G.AnyOf? Reviewer { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs index 570b6c93cd..227b9cab6e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs @@ -41,7 +41,7 @@ public sealed partial class ReposCreateDeploymentRequest /// /// [global::Newtonsoft.Json.JsonProperty("payload")] - public global::System.OneOf? Payload { get; set; } + public global::G.OneOf? Payload { get; set; } /// /// Name for the target deployment environment (e.g., `production`, `staging`, `qa`).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs index f59262ee70..063cd0d4f4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs @@ -33,7 +33,7 @@ public sealed partial class ReposUpdateInformationAboutPagesSiteRequest /// ///
[global::Newtonsoft.Json.JsonProperty("source")] - public global::System.AnyOf? Source { get; set; } + public global::G.AnyOf? Source { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryAdvisory.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryAdvisory.g.verified.cs index 4d60e7019c..0f692a4751 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryAdvisory.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryAdvisory.g.verified.cs @@ -57,13 +57,13 @@ public sealed partial class RepositoryAdvisory /// The author of the advisory. /// [global::Newtonsoft.Json.JsonProperty("author", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf? Author { get; set; } = default!; + public global::G.AllOf? Author { get; set; } = default!; /// /// The publisher of the advisory. /// [global::Newtonsoft.Json.JsonProperty("publisher", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf? Publisher { get; set; } = default!; + public global::G.AllOf? Publisher { get; set; } = default!; /// /// @@ -165,7 +165,7 @@ public sealed partial class RepositoryAdvisory /// A temporary private fork of the advisory's repository for collaborating on a fix. /// [global::Newtonsoft.Json.JsonProperty("private_fork", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf? PrivateFork { get; set; } = default!; + public global::G.AllOf? PrivateFork { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs index b000fb60ee..1279afe264 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs @@ -15,9 +15,9 @@ namespace G /// /// #if NET6_0_OR_GREATER - public global::System.AllOf? Value1 { get; init; } + public global::G.AllOf? Value1 { get; init; } #else - public global::System.AllOf? Value1 { get; } + public global::G.AllOf? Value1 { get; } #endif /// @@ -31,17 +31,17 @@ namespace G /// /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value1; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value1; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value1 = value; } @@ -50,9 +50,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value2 { get; init; } + public global::G.AllOf? Value2 { get; init; } #else - public global::System.AllOf? Value2 { get; } + public global::G.AllOf? Value2 { get; } #endif /// @@ -66,17 +66,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value2; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value2; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value2 = value; } @@ -85,9 +85,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value3 { get; init; } + public global::G.AllOf? Value3 { get; init; } #else - public global::System.AllOf? Value3 { get; } + public global::G.AllOf? Value3 { get; } #endif /// @@ -101,17 +101,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value3; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value3; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value3 = value; } @@ -120,9 +120,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value4 { get; init; } + public global::G.AllOf? Value4 { get; init; } #else - public global::System.AllOf? Value4 { get; } + public global::G.AllOf? Value4 { get; } #endif /// @@ -136,17 +136,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value4; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value4; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value4 = value; } @@ -155,9 +155,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value5 { get; init; } + public global::G.AllOf? Value5 { get; init; } #else - public global::System.AllOf? Value5 { get; } + public global::G.AllOf? Value5 { get; } #endif /// @@ -171,17 +171,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value5; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value5; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value5 = value; } @@ -190,9 +190,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value6 { get; init; } + public global::G.AllOf? Value6 { get; init; } #else - public global::System.AllOf? Value6 { get; } + public global::G.AllOf? Value6 { get; } #endif /// @@ -206,17 +206,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value6; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value6; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value6 = value; } @@ -225,9 +225,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value7 { get; init; } + public global::G.AllOf? Value7 { get; init; } #else - public global::System.AllOf? Value7 { get; } + public global::G.AllOf? Value7 { get; } #endif /// @@ -241,17 +241,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value7; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value7; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value7 = value; } @@ -260,9 +260,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value8 { get; init; } + public global::G.AllOf? Value8 { get; init; } #else - public global::System.AllOf? Value8 { get; } + public global::G.AllOf? Value8 { get; } #endif /// @@ -276,17 +276,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value8; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value8; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value8 = value; } @@ -295,9 +295,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value9 { get; init; } + public global::G.AllOf? Value9 { get; init; } #else - public global::System.AllOf? Value9 { get; } + public global::G.AllOf? Value9 { get; } #endif /// @@ -311,17 +311,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value9; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value9; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value9 = value; } @@ -330,9 +330,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value10 { get; init; } + public global::G.AllOf? Value10 { get; init; } #else - public global::System.AllOf? Value10 { get; } + public global::G.AllOf? Value10 { get; } #endif /// @@ -346,17 +346,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value10; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value10; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value10 = value; } @@ -365,9 +365,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value11 { get; init; } + public global::G.AllOf? Value11 { get; init; } #else - public global::System.AllOf? Value11 { get; } + public global::G.AllOf? Value11 { get; } #endif /// @@ -381,17 +381,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value11; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value11; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value11 = value; } @@ -400,9 +400,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value12 { get; init; } + public global::G.AllOf? Value12 { get; init; } #else - public global::System.AllOf? Value12 { get; } + public global::G.AllOf? Value12 { get; } #endif /// @@ -416,17 +416,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value12; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value12; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value12 = value; } @@ -435,9 +435,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value13 { get; init; } + public global::G.AllOf? Value13 { get; init; } #else - public global::System.AllOf? Value13 { get; } + public global::G.AllOf? Value13 { get; } #endif /// @@ -451,17 +451,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value13; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value13; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value13 = value; } @@ -470,9 +470,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value14 { get; init; } + public global::G.AllOf? Value14 { get; init; } #else - public global::System.AllOf? Value14 { get; } + public global::G.AllOf? Value14 { get; } #endif /// @@ -486,17 +486,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value14; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value14; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value14 = value; } @@ -505,9 +505,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value15 { get; init; } + public global::G.AllOf? Value15 { get; init; } #else - public global::System.AllOf? Value15 { get; } + public global::G.AllOf? Value15 { get; } #endif /// @@ -521,17 +521,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value15; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value15; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value15 = value; } @@ -540,9 +540,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value16 { get; init; } + public global::G.AllOf? Value16 { get; init; } #else - public global::System.AllOf? Value16 { get; } + public global::G.AllOf? Value16 { get; } #endif /// @@ -556,17 +556,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value16; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value16; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value16 = value; } @@ -575,22 +575,22 @@ public RepositoryRuleDetailed(global::System.AllOf public RepositoryRuleDetailed( - global::System.AllOf? value1, - global::System.AllOf? value2, - global::System.AllOf? value3, - global::System.AllOf? value4, - global::System.AllOf? value5, - global::System.AllOf? value6, - global::System.AllOf? value7, - global::System.AllOf? value8, - global::System.AllOf? value9, - global::System.AllOf? value10, - global::System.AllOf? value11, - global::System.AllOf? value12, - global::System.AllOf? value13, - global::System.AllOf? value14, - global::System.AllOf? value15, - global::System.AllOf? value16 + global::G.AllOf? value1, + global::G.AllOf? value2, + global::G.AllOf? value3, + global::G.AllOf? value4, + global::G.AllOf? value5, + global::G.AllOf? value6, + global::G.AllOf? value7, + global::G.AllOf? value8, + global::G.AllOf? value9, + global::G.AllOf? value10, + global::G.AllOf? value11, + global::G.AllOf? value12, + global::G.AllOf? value13, + global::G.AllOf? value14, + global::G.AllOf? value15, + global::G.AllOf? value16 ) { Value1 = value1; @@ -649,37 +649,37 @@ public override int GetHashCode() var fields = new object?[] { Value1, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value2, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value3, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value4, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value5, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value6, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value7, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value8, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value9, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value10, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value11, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value12, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value13, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value14, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value15, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value16, - typeof(global::System.AllOf), + typeof(global::G.AllOf), }; const int offset = unchecked((int)2166136261); const int prime = 16777619; @@ -695,22 +695,22 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null public bool Equals(RepositoryRuleDetailed 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) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value7, other.Value7) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value8, other.Value8) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value9, other.Value9) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value10, other.Value10) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value11, other.Value11) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value12, other.Value12) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value13, other.Value13) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value14, other.Value14) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value15, other.Value15) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value16, other.Value16) + 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) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value7, other.Value7) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value8, other.Value8) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value9, other.Value9) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value10, other.Value10) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value11, other.Value11) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value12, other.Value12) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value13, other.Value13) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value14, other.Value14) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value15, other.Value15) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value16, other.Value16) ; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleset.g.verified.cs index 08c757d9bc..f83c8ac263 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.RepositoryRuleset.g.verified.cs @@ -77,7 +77,7 @@ public sealed partial class RepositoryRuleset /// /// [global::Newtonsoft.Json.JsonProperty("conditions")] - public global::System.AnyOf? Conditions { get; set; } + public global::G.AnyOf? Conditions { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.SecretScanningLocation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.SecretScanningLocation.g.verified.cs index cb62e9381c..8912ae55d8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.SecretScanningLocation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.SecretScanningLocation.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class SecretScanningLocation /// /// [global::Newtonsoft.Json.JsonProperty("details")] - public global::System.OneOf? Details { get; set; } + public global::G.OneOf? Details { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs index 8535771955..8c493e4b20 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.ValidationErrorError.g.verified.cs @@ -45,7 +45,7 @@ public sealed partial class ValidationErrorError /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.OneOf>? Value { get; set; } + public global::G.OneOf>? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs index 8dff6cb0aa..ce5e5dcbf0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class WebhookDeploymentCreatedDeployment /// /// [global::Newtonsoft.Json.JsonProperty("payload", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Payload { get; set; } = default!; + public global::G.OneOf Payload { get; set; } = default!; /// /// GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs index 8b88447fbd..7018d0db30 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class WebhookDeploymentStatusCreatedDeployment /// /// [global::Newtonsoft.Json.JsonProperty("payload", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? Payload { get; set; } = default!; + public global::G.OneOf? Payload { get; set; } = default!; /// /// GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookFork.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookFork.g.verified.cs index 404ed8a7ba..8b645e256c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookFork.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookFork.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class WebhookFork /// The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. /// [global::Newtonsoft.Json.JsonProperty("forkee", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Forkee { get; set; } = default!; + public global::G.AllOf Forkee { get; set; } = default!; /// /// The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs index a9720addf3..44e5251181 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookForkForkeeVariant1 /// ///
[global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookForkForkeeVariant1 /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs index 827b6fe837..4e318c3844 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs @@ -43,7 +43,7 @@ public sealed partial class WebhookIssueCommentCreated /// The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. /// [global::Newtonsoft.Json.JsonProperty("issue", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Issue { get; set; } = default!; + public global::G.AllOf Issue { get; set; } = default!; /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs index 098f69043c..e952ff2d7b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs @@ -43,7 +43,7 @@ public sealed partial class WebhookIssueCommentDeleted /// The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. ///
[global::Newtonsoft.Json.JsonProperty("issue", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Issue { get; set; } = default!; + public global::G.AllOf Issue { get; set; } = default!; /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs index 443b543ab2..21562e8b9e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs @@ -49,7 +49,7 @@ public sealed partial class WebhookIssueCommentEdited /// The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. ///
[global::Newtonsoft.Json.JsonProperty("issue", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Issue { get; set; } = default!; + public global::G.AllOf Issue { get; set; } = default!; /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesClosed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesClosed.g.verified.cs index ba259a1e92..fda70f37ff 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesClosed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesClosed.g.verified.cs @@ -37,7 +37,7 @@ public sealed partial class WebhookIssuesClosed /// The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. ///
[global::Newtonsoft.Json.JsonProperty("issue", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Issue { get; set; } = default!; + public global::G.AllOf Issue { get; set; } = default!; /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs index 292a89f296..b5b3417245 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookIssuesOpenedChangesOldRepository /// ///
[global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -445,7 +445,7 @@ public sealed partial class WebhookIssuesOpenedChangesOldRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs index 08ce4d26a8..83e814eaca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookIssuesTransferredChangesNewRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -446,7 +446,7 @@ public sealed partial class WebhookIssuesTransferredChangesNewRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs index 45750d2200..efd9d6b86c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersion /// /// [global::Newtonsoft.Json.JsonProperty("body")] - public global::System.OneOf? Body { get; set; } + public global::G.OneOf? Body { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs index 94cbbd3c1a..4190931ea9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersionNugetMet /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// @@ -27,7 +27,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersionNugetMet /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.OneOf? Value { get; set; } + public global::G.OneOf? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs index 599e4a1cc5..f7ed24e424 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs @@ -50,7 +50,7 @@ public sealed partial class WebhookProjectCardMoved /// /// [global::Newtonsoft.Json.JsonProperty("project_card", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf ProjectCard { get; set; } = default!; + public global::G.AllOf ProjectCard { get; set; } = default!; /// /// The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs index 592576b465..53f34796a0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class WebhookProjectsV2ItemEdited /// ///
[global::Newtonsoft.Json.JsonProperty("changes")] - public global::System.OneOf? Changes { get; set; } + public global::G.OneOf? Changes { get; set; } /// /// The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs index ef59aab5e0..6572b7334e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequest /// ///
[global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs index 0d67f7c6ff..beae5fc3aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs index de7c5c3558..4a76cf03cd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs index 01658da10c..ec26ac6a8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs index 558a885279..028adfbb91 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestBaseRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestBaseRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs index fe50eaf368..8b0732e6ff 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestHeadRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestHeadRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs index bea3060b6e..3cf066b989 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs index 470cadac5a..aeb85025b8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestBaseRep /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestBaseRep /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs index d0f9ceaaf0..95534de787 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestHeadRep /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestHeadRep /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs index a63df7b0ec..60caee8457 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs index 776f24cde7..5f328ffc16 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs index 1cbe8a6c4e..82e02929ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs index 60dc4f02b3..45ec773070 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs index bd60864d37..d07affe98e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs index 52c59fc421..e829abd961 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs index 92158a9f7e..e81ade16c1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs index ebce72c6af..dcc5e15c3d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs index d5a511aa53..d052b7c5d7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs index d0c615cb9c..a5a90e8262 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestLockedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs index 837951e515..bc0591b453 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs index e48b5f1cba..159190a55c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs index c16c8daad3..3b35d6dba9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs index 799c377472..d0020451c4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs index af1ca2eb75..501068b4bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs index a46336e637..492f98a76f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs index d5a65ca983..7363a1bacc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs index 7862015d38..a15e28efd7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs index f364607bba..fedfdb1ea4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs index 8349a3815f..13246903d5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestBase /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestBase /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs index 85b3a6fd5f..37170ea69d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestHead /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestHead /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs index 0458112035..d90edbeab5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs index eda9c2e777..fa08f44ec9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs index 872ea45251..8164f75358 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs index 4a9c832299..caa0d9fda6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs index f4a9d81cac..84485e6ba6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -433,7 +433,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs index c7e4a79419..69c6f8570d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -433,7 +433,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs index 6ae71e8fcd..26b8f807d0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs index a0ee8c54f4..e6c2fff6bc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs index 383992d6e7..d5c785faa8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs index 31d0936457..73c551fe37 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs index d0e3ac6f83..514fb3aa88 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs index df6dab4116..bea07c4b9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs index d097ebcc54..ef006f0228 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs index dc16d69359..6d4ff2fff8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs index 1bc929f1bc..12a7c5918a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs index 0b303cd705..136182fabf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs index 8357af204b..bdda13eecd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs index a306033997..35eed69908 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs index 445ca80410..cefd592559 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs index c7a015a690..0531d3423e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs index 569fe08ea5..41aeeb1a8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs index c07f0ab12d..d0685890a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs index d444415c66..881e91982a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -440,7 +440,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestBas /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs index db5411e07a..8903b63f6d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -440,7 +440,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestHea /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs index 813f832b48..01e885e7ae 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs @@ -171,7 +171,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs index 29b2b01542..f9e4f9b0e5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestB /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -440,7 +440,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestB /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs index 5fdae20c23..01a996353c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestH /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -440,7 +440,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestH /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs index a07c725544..8b77a6b747 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs index 84b499d2d0..0f6db5d886 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs index b8c8014df7..cd14573401 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -452,7 +452,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs index b10424581e..2323903b41 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs index 9267065150..f389feb7af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs index d1eef3901c..b115dbb502 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs index 0f5a20b813..fd8f0c2c7c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs index 23b1b6b157..9dd6bc899c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs index 9034faba2a..08606e38d5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -452,7 +452,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs index de0b65fa21..88d9a75989 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequest /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs index 7f1daf8484..052abe9157 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestBaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs index cdf9c4a192..4adce535cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestHeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPushRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPushRepository.g.verified.cs index dfa179d7ca..77c74bbea1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPushRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookPushRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookPushRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -446,7 +446,7 @@ public sealed partial class WebhookPushRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs index e78afdbceb..39cd29d0a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("body")] - public global::System.OneOf? Body { get; set; } + public global::G.OneOf? Body { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs index 20b741501f..a59461cc49 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs @@ -33,13 +33,13 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("author")] - public global::System.OneOf? Author { get; set; } + public global::G.OneOf? Author { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("bugs")] - public global::System.OneOf? Bugs { get; set; } + public global::G.OneOf? Bugs { get; set; } /// /// @@ -75,7 +75,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("dist")] - public global::System.OneOf? Dist { get; set; } + public global::G.OneOf? Dist { get; set; } /// /// @@ -105,7 +105,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("repository")] - public global::System.OneOf? Repository { get; set; } + public global::G.OneOf? Repository { get; set; } /// /// @@ -183,7 +183,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("directories")] - public global::System.OneOf? Directories { get; set; } + public global::G.OneOf? Directories { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs index 74432e948a..3cd8b2e189 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// @@ -27,7 +27,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.OneOf? Value { get; set; } + public global::G.OneOf? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs index 547f0d5ebb..d900effd75 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class WebhookStatusCommitCommit /// /// [global::Newtonsoft.Json.JsonProperty("author", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Author { get; set; } = default!; + public global::G.AllOf Author { get; set; } = default!; /// /// @@ -27,7 +27,7 @@ public sealed partial class WebhookStatusCommitCommit /// /// [global::Newtonsoft.Json.JsonProperty("committer", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Committer { get; set; } = default!; + public global::G.AllOf Committer { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs index 596c0386d3..53789f5a77 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookTeamAddedToRepositoryRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookTeamAddedToRepositoryRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs index 4c8f630e27..42c96b570b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookTeamCreatedRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookTeamCreatedRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs index 802fdab988..e61fc15c40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookTeamDeletedRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookTeamDeletedRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs index 1662e1c5fb..c30cd95ae1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookTeamEditedRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookTeamEditedRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs index 5a5ab0c405..eaaefaab77 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhookTeamRemovedFromRepositoryRepository /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -439,7 +439,7 @@ public sealed partial class WebhookTeamRemovedFromRepositoryRepository /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs index c0783a9c24..9ae6869b77 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class WebhookWorkflowJobCompleted /// /// [global::Newtonsoft.Json.JsonProperty("workflow_job", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf WorkflowJob { get; set; } = default!; + public global::G.AllOf WorkflowJob { get; set; } = default!; /// /// A request for a specific ref(branch,sha,tag) to be deployed diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs index a1f0aec82e..007d338d33 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class WebhookWorkflowJobInProgress /// /// [global::Newtonsoft.Json.JsonProperty("workflow_job", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf WorkflowJob { get; set; } = default!; + public global::G.AllOf WorkflowJob { get; set; } = default!; /// /// A request for a specific ref(branch,sha,tag) to be deployed diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5.g.verified.cs index 3ea02816a3..fd9a8fe11b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5.g.verified.cs @@ -237,7 +237,7 @@ public sealed partial class WebhooksPullRequest5 /// /// [global::Newtonsoft.Json.JsonProperty("requested_reviewers", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; + public global::System.Collections.Generic.IList> RequestedReviewers { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs index a060970bcc..f235afbbac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhooksPullRequest5BaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhooksPullRequest5BaseRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs index 4dd640f8df..15d6a8791a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs @@ -128,7 +128,7 @@ public sealed partial class WebhooksPullRequest5HeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("created_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf CreatedAt { get; set; } = default!; + public global::G.OneOf CreatedAt { get; set; } = default!; /// /// The default branch of the repository. @@ -457,7 +457,7 @@ public sealed partial class WebhooksPullRequest5HeadRepo /// /// [global::Newtonsoft.Json.JsonProperty("pushed_at", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf? PushedAt { get; set; } = default!; + public global::G.OneOf? PushedAt { get; set; } = default!; /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs index ba28c4f456..16a4fff9d7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs @@ -144,7 +144,7 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertyResponseContent( string customPropertyName, global::G.OrgsCreateOrUpdateCustomPropertyRequestValueType valueType, bool required = default, - global::System.OneOf>? defaultValue = default, + global::G.OneOf>? defaultValue = default, string? description = default, global::System.Collections.Generic.IList? allowedValues = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs index 0b43ad35f5..3b1c6cb9e6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs @@ -9,12 +9,12 @@ public partial class ProjectsClient partial void PrepareProjectsCreateCardArguments( global::System.Net.Http.HttpClient httpClient, ref int columnId, - global::System.OneOf request); + global::G.OneOf request); partial void PrepareProjectsCreateCardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int columnId, - global::System.OneOf request); + global::G.OneOf request); partial void ProcessProjectsCreateCardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -33,7 +33,7 @@ partial void ProcessProjectsCreateCardResponseContent( /// public async global::System.Threading.Tasks.Task ProjectsCreateCardAsync( int columnId, - global::System.OneOf request, + global::G.OneOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -109,7 +109,7 @@ partial void ProcessProjectsCreateCardResponseContent( int columnId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf + var request = new global::G.OneOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs index 275834b5dd..8dd4abebb5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposAddAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposAddAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs index d7e0cd7b10..0553d75267 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposAddStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposAddStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs index da21dcb28e..15c3620d01 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposAddTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposAddTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs index f5a3ab5fe9..6f7a96ae84 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposAddUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposAddUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs index c2d7ad323e..eedff52c4a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReposCancelPagesDeploymentArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf pagesDeploymentId); + ref global::G.OneOf pagesDeploymentId); partial void PrepareReposCancelPagesDeploymentRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf pagesDeploymentId); + global::G.OneOf pagesDeploymentId); partial void ProcessReposCancelPagesDeploymentResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,7 +39,7 @@ partial void ProcessReposCancelPagesDeploymentResponseContent( public async global::System.Threading.Tasks.Task ReposCancelPagesDeploymentAsync( string owner, string repo, - global::System.OneOf pagesDeploymentId, + global::G.OneOf pagesDeploymentId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs index 613bb121c8..109d060383 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs @@ -218,7 +218,7 @@ partial void ProcessReposCreateDeploymentResponseContent( string? task = "deploy", bool autoMerge = true, global::System.Collections.Generic.IList? requiredContexts = default, - global::System.OneOf? payload = default, + global::G.OneOf? payload = default, string? environment = "production", string? description = default, bool transientEnvironment = false, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs index 530f6dd3e6..9e63bda25b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReposGetPagesDeploymentArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf pagesDeploymentId); + ref global::G.OneOf pagesDeploymentId); partial void PrepareReposGetPagesDeploymentRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf pagesDeploymentId); + global::G.OneOf pagesDeploymentId); partial void ProcessReposGetPagesDeploymentResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,7 +39,7 @@ partial void ProcessReposGetPagesDeploymentResponseContent( public async global::System.Threading.Tasks.Task ReposGetPagesDeploymentAsync( string owner, string repo, - global::System.OneOf pagesDeploymentId, + global::G.OneOf pagesDeploymentId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs index 1cbc91b369..244d280650 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposRemoveAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposRemoveAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs index 6b2c0fb161..163516b54f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposRemoveStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposRemoveStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs index 514bd50361..2f9b857aab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposRemoveTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposRemoveTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs index ba7fa1c5b5..da96c5e926 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposRemoveUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposRemoveUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs index 94ed6565a1..7c5a5c5775 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposSetAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposSetAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs index 65c51d5a27..4b17f9259a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposSetStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposSetStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs index 067cf68f7f..b9160591bd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposSetTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposSetTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs index 08acc3a9ea..e333c94187 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposSetUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposSetUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs index 42ecf8c478..611ca6e4a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs @@ -136,7 +136,7 @@ partial void ProcessReposUpdateInformationAboutPagesSiteResponseContent( string? cname = default, bool httpsEnforced = default, global::G.ReposUpdateInformationAboutPagesSiteRequestBuildType? buildType = default, - global::System.AnyOf? source = default, + global::G.AnyOf? source = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ReposUpdateInformationAboutPagesSiteRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs index e7c1294a58..45b259c8bb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs @@ -13,9 +13,9 @@ partial void PrepareSecurityAdvisoriesListGlobalAdvisoriesArguments( ref string? cveId, ref global::G.SecurityAdvisoryEcosystems? ecosystem, ref global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity, - ref global::System.OneOf>? cwes, + ref global::G.OneOf>? cwes, ref bool isWithdrawn, - ref global::System.OneOf>? affects, + ref global::G.OneOf>? affects, ref string? published, ref string? updated, ref string? modified, @@ -32,9 +32,9 @@ partial void PrepareSecurityAdvisoriesListGlobalAdvisoriesRequest( string? cveId, global::G.SecurityAdvisoryEcosystems? ecosystem, global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity, - global::System.OneOf>? cwes, + global::G.OneOf>? cwes, bool isWithdrawn, - global::System.OneOf>? affects, + global::G.OneOf>? affects, string? published, string? updated, string? modified, @@ -91,9 +91,9 @@ partial void ProcessSecurityAdvisoriesListGlobalAdvisoriesResponseContent( string? cveId = default, global::G.SecurityAdvisoryEcosystems? ecosystem = default, global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity = default, - global::System.OneOf>? cwes = default, + global::G.OneOf>? cwes = default, bool isWithdrawn = default, - global::System.OneOf>? affects = default, + global::G.OneOf>? affects = default, string? published = default, string? updated = default, string? modified = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs index 03d72df945..f4f602bedd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class UsersClient { partial void PrepareUsersAddEmailForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void PrepareUsersAddEmailForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void ProcessUsersAddEmailForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessUsersAddEmailForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> UsersAddEmailForAuthenticatedUserAsync( - global::System.OneOf, string> request, + global::G.OneOf, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessUsersAddEmailForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task> UsersAddEmailForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, string> + var request = new global::G.OneOf, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs index faa125396c..23f9e0a9af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class UsersClient { partial void PrepareUsersDeleteEmailForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void PrepareUsersDeleteEmailForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void ProcessUsersDeleteEmailForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessUsersDeleteEmailForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UsersDeleteEmailForAuthenticatedUserAsync( - global::System.OneOf, string> request, + global::G.OneOf, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessUsersDeleteEmailForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task UsersDeleteEmailForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, string> + var request = new global::G.OneOf, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs index 36ef9ea551..cad262ab0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs @@ -26,7 +26,7 @@ partial void ProcessUsersGetAuthenticatedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> UsersGetAuthenticatedAsync( + public async global::System.Threading.Tasks.Task> UsersGetAuthenticatedAsync( global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -78,7 +78,7 @@ partial void ProcessUsersGetAuthenticatedResponseContent( } 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/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs index 1e6c6c99c8..39bfd56c7d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs @@ -31,7 +31,7 @@ partial void ProcessUsersGetByUsernameResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> UsersGetByUsernameAsync( + public async global::System.Threading.Tasks.Task> UsersGetByUsernameAsync( string username, global::System.Threading.CancellationToken cancellationToken = default) { @@ -86,7 +86,7 @@ partial void ProcessUsersGetByUsernameResponseContent( } 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/GitHub/NewtonsoftJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.13.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.13.g.verified.cs index 6f07d2be6a..2b02a1361b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.13.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.13.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.5.g.verified.cs index 051e7d69e1..026bd6075b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/NewtonsoftJson/_#OneOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.2.g.verified.cs index cc8cad9ec0..5ba8f097cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AllOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.3.g.verified.cs index 80ee5cae1a..d4413137f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#AnyOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs index 39dea1ee1f..6783a47898 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsCreateWorkflowDispatch.g.verified.cs @@ -10,14 +10,14 @@ partial void PrepareActionsCreateWorkflowDispatchArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId, + ref global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request); partial void PrepareActionsCreateWorkflowDispatchRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request); partial void ProcessActionsCreateWorkflowDispatchResponse( global::System.Net.Http.HttpClient httpClient, @@ -38,7 +38,7 @@ partial void ProcessActionsCreateWorkflowDispatchResponse( public async global::System.Threading.Tasks.Task ActionsCreateWorkflowDispatchAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::G.ActionsCreateWorkflowDispatchRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -108,7 +108,7 @@ partial void ProcessActionsCreateWorkflowDispatchResponse( public async global::System.Threading.Tasks.Task ActionsCreateWorkflowDispatchAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string @ref, global::G.ActionsCreateWorkflowDispatchRequestInputs? inputs = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs index f59339d1ce..177f90d9e1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsDisableWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsDisableWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsDisableWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsDisableWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -34,7 +34,7 @@ partial void ProcessActionsDisableWorkflowResponse( public async global::System.Threading.Tasks.Task ActionsDisableWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs index cd149c79ee..41ac5e9144 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsEnableWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsEnableWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsEnableWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsEnableWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -34,7 +34,7 @@ partial void ProcessActionsEnableWorkflowResponse( public async global::System.Threading.Tasks.Task ActionsEnableWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs index 7ab34327f2..c723d9a422 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflow.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsGetWorkflowArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsGetWorkflowRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsGetWorkflowResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -41,7 +41,7 @@ partial void ProcessActionsGetWorkflowResponseContent( public async global::System.Threading.Tasks.Task ActionsGetWorkflowAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs index 41ae555d81..c0c29da8fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsGetWorkflowUsage.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareActionsGetWorkflowUsageArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId); + ref global::G.OneOf workflowId); partial void PrepareActionsGetWorkflowUsageRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId); + global::G.OneOf workflowId); partial void ProcessActionsGetWorkflowUsageResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -41,7 +41,7 @@ partial void ProcessActionsGetWorkflowUsageResponseContent( public async global::System.Threading.Tasks.Task ActionsGetWorkflowUsageAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs index 611f21c507..6101263ade 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsListWorkflowRuns.g.verified.cs @@ -10,7 +10,7 @@ partial void PrepareActionsListWorkflowRunsArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf workflowId, + ref global::G.OneOf workflowId, ref string? actor, ref string? branch, ref string? @event, @@ -26,7 +26,7 @@ partial void PrepareActionsListWorkflowRunsRequest( global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string? actor, string? branch, string? @event, @@ -76,7 +76,7 @@ partial void ProcessActionsListWorkflowRunsResponseContent( public async global::System.Threading.Tasks.Task ActionsListWorkflowRunsAsync( string owner, string repo, - global::System.OneOf workflowId, + global::G.OneOf workflowId, string? actor = default, string? branch = default, string? @event = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs index dfb8403440..057df24ca6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActionsClient.ActionsReviewCustomGatesForRun.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareActionsReviewCustomGatesForRunArguments( ref string owner, ref string repo, ref int runId, - global::System.AnyOf request); + global::G.AnyOf request); partial void PrepareActionsReviewCustomGatesForRunRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int runId, - global::System.AnyOf request); + global::G.AnyOf request); partial void ProcessActionsReviewCustomGatesForRunResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -40,7 +40,7 @@ partial void ProcessActionsReviewCustomGatesForRunResponse( string owner, string repo, int runId, - global::System.AnyOf request, + global::G.AnyOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -105,7 +105,7 @@ partial void ProcessActionsReviewCustomGatesForRunResponse( int runId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AnyOf + var request = new global::G.AnyOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs index 6a25d4330a..ceed86816f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListReposStarredByUser.g.verified.cs @@ -51,7 +51,7 @@ partial void ProcessActivityListReposStarredByUserResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListReposStarredByUserAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListReposStarredByUserAsync( string username, global::G.ActivityListReposStarredByUserSort? sort = global::G.ActivityListReposStarredByUserSort.Created, global::G.ActivityListReposStarredByUserDirection? direction = global::G.ActivityListReposStarredByUserDirection.Desc, @@ -118,7 +118,7 @@ partial void ProcessActivityListReposStarredByUserResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs index 019fc09729..5c3e2893ee 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ActivityClient.ActivityListStargazersForRepo.g.verified.cs @@ -44,7 +44,7 @@ partial void ProcessActivityListStargazersForRepoResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListStargazersForRepoAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ActivityListStargazersForRepoAsync( string owner, string repo, int perPage = 30, @@ -108,7 +108,7 @@ partial void ProcessActivityListStargazersForRepoResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs index de73c8d66e..e3e150b7fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.AppsClient.AppsCreateFromManifest.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessAppsCreateFromManifestResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> AppsCreateFromManifestAsync( + public async global::System.Threading.Tasks.Task> AppsCreateFromManifestAsync( string code, global::System.Threading.CancellationToken cancellationToken = default) { @@ -84,7 +84,7 @@ partial void ProcessAppsCreateFromManifestResponseContent( } 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/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs index a53f45236c..df7ece9384 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class CodespacesClient { partial void PrepareCodespacesCreateForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf request); + global::G.OneOf request); partial void PrepareCodespacesCreateForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf request); + global::G.OneOf request); partial void ProcessCodespacesCreateForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -32,7 +32,7 @@ partial void ProcessCodespacesCreateForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CodespacesCreateForAuthenticatedUserAsync( - global::System.OneOf request, + global::G.OneOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -107,7 +107,7 @@ partial void ProcessCodespacesCreateForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task CodespacesCreateForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf + var request = new global::G.OneOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs index a3a454565e..ae5eb6a8df 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.CodespacesClient.CodespacesCreateOrUpdateSecretForAuthenticatedUser.g.verified.cs @@ -128,7 +128,7 @@ partial void ProcessCodespacesCreateOrUpdateSecretForAuthenticatedUserResponseCo string secretName, string keyId, string? encryptedValue = default, - global::System.Collections.Generic.IList>? selectedRepositoryIds = default, + global::System.Collections.Generic.IList>? selectedRepositoryIds = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.GistsClient.GistsCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.GistsClient.GistsCreate.g.verified.cs index e600bd83f8..0fce9804d4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.GistsClient.GistsCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.GistsClient.GistsCreate.g.verified.cs @@ -115,7 +115,7 @@ partial void ProcessGistsCreateResponseContent( public async global::System.Threading.Tasks.Task GistsCreateAsync( global::G.GistsCreateRequestFiles files, string? description = default, - global::System.OneOf? @public = default, + global::G.OneOf? @public = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.GistsCreateRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs index cb4d68ff99..04b08a37a7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForAuthenticatedUser.g.verified.cs @@ -26,7 +26,7 @@ partial void ProcessInteractionsGetRestrictionsForAuthenticatedUserResponseConte /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForAuthenticatedUserAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -78,7 +78,7 @@ partial void ProcessInteractionsGetRestrictionsForAuthenticatedUserResponseConte } 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/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs index e1813348c7..211a480c90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForOrg.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessInteractionsGetRestrictionsForOrgResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForOrgAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForOrgAsync( string org, global::System.Threading.CancellationToken cancellationToken = default) { @@ -84,7 +84,7 @@ partial void ProcessInteractionsGetRestrictionsForOrgResponseContent( } 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/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs index 4c19e18453..c10089196a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.InteractionsClient.InteractionsGetRestrictionsForRepo.g.verified.cs @@ -32,7 +32,7 @@ partial void ProcessInteractionsGetRestrictionsForRepoResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForRepoAsync( + public async global::System.Threading.Tasks.Task> InteractionsGetRestrictionsForRepoAsync( string owner, string repo, global::System.Threading.CancellationToken cancellationToken = default) @@ -90,7 +90,7 @@ partial void ProcessInteractionsGetRestrictionsForRepoResponseContent( } 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/GitHub/SystemTextJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs index dd56679719..4be72ceb69 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesAddLabels.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareIssuesAddLabelsArguments( ref string owner, ref string repo, ref int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void PrepareIssuesAddLabelsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void ProcessIssuesAddLabelsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessIssuesAddLabelsResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, + global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessIssuesAddLabelsResponseContent( int issueNumber, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> + var request = new global::G.OneOf, global::G.IssuesAddLabelsRequestVariant3, global::System.Collections.Generic.IList, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesCreate.g.verified.cs index 04ccdfa40a..09e2fa3a62 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesCreate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesCreate.g.verified.cs @@ -149,11 +149,11 @@ partial void ProcessIssuesCreateResponseContent( public async global::System.Threading.Tasks.Task IssuesCreateAsync( string owner, string repo, - global::System.OneOf title, + global::G.OneOf title, string? body = default, string? assignee = default, - global::System.OneOf? milestone = default, - global::System.Collections.Generic.IList>? labels = default, + global::G.OneOf? milestone = default, + global::System.Collections.Generic.IList>? labels = default, global::System.Collections.Generic.IList? assignees = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs index 9a496835bd..f46a622503 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesSetLabels.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareIssuesSetLabelsArguments( ref string owner, ref string repo, ref int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void PrepareIssuesSetLabelsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request); partial void ProcessIssuesSetLabelsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessIssuesSetLabelsResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, + global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessIssuesSetLabelsResponseContent( int issueNumber, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> + var request = new global::G.OneOf, global::G.IssuesSetLabelsRequestVariant3, global::System.Collections.Generic.IList, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs index 7c90c95153..703ebf3b19 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.IssuesClient.IssuesUpdate.g.verified.cs @@ -160,13 +160,13 @@ partial void ProcessIssuesUpdateResponseContent( string owner, string repo, int issueNumber, - global::System.OneOf? title = default, + global::G.OneOf? title = default, string? body = default, string? assignee = default, global::G.IssuesUpdateRequestState? state = default, global::G.IssuesUpdateRequestStateReason? stateReason = default, - global::System.OneOf? milestone = default, - global::System.Collections.Generic.IList>? labels = default, + global::G.OneOf? milestone = default, + global::System.Collections.Generic.IList>? labels = default, global::System.Collections.Generic.IList? assignees = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs index 804d7c0622..a1d0506500 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class CodespacesCreateOrUpdateSecretForAuthenticatedUserRe /// An array of repository ids that can access the user secret. You can manage the list of selected repositories using the [List selected repositories for a user secret](https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret), [Set selected repositories for a user secret](https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret), and [Remove a selected repository from a user secret](https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret) endpoints. /// [global::System.Text.Json.Serialization.JsonPropertyName("selected_repository_ids")] - public global::System.Collections.Generic.IList>? SelectedRepositoryIds { get; set; } + public global::System.Collections.Generic.IList>? SelectedRepositoryIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CopilotSeatDetails.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CopilotSeatDetails.g.verified.cs index 75e14c1e24..b01571b714 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CopilotSeatDetails.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CopilotSeatDetails.g.verified.cs @@ -17,14 +17,14 @@ public sealed partial class CopilotSeatDetails [global::System.Text.Json.Serialization.JsonPropertyName("assignee")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Assignee { get; set; } + public required global::G.OneOf Assignee { get; set; } /// /// The team that granted access to GitHub Copilot to the assignee. This will be null if the user was assigned a seat individually. /// [global::System.Text.Json.Serialization.JsonPropertyName("assigning_team")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory1))] - public global::System.OneOf? AssigningTeam { get; set; } + public global::G.OneOf? AssigningTeam { get; set; } /// /// The pending cancellation date for the seat, in `YYYY-MM-DD` format. This will be null unless the assignee's Copilot access has been canceled during the current billing cycle. If the seat has been cancelled, this corresponds to the start of the organization's next billing cycle. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CustomPropertyValue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CustomPropertyValue.g.verified.cs index 8c7cbe3994..d628282248 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CustomPropertyValue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.CustomPropertyValue.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class CustomPropertyValue [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf>? Value { get; set; } + public required global::G.OneOf>? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Deployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Deployment.g.verified.cs index aae6f821c8..62f0f5df1f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Deployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Deployment.g.verified.cs @@ -62,7 +62,7 @@ public sealed partial class Deployment [global::System.Text.Json.Serialization.JsonPropertyName("payload")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Payload { get; set; } + public required global::G.OneOf Payload { get; set; } /// /// Example: staging diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Environment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Environment.g.verified.cs index 2af01754c7..39180c2f21 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Environment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Environment.g.verified.cs @@ -66,7 +66,7 @@ public sealed partial class Environment /// Built-in deployment protection rules for the environment. /// [global::System.Text.Json.Serialization.JsonPropertyName("protection_rules")] - public global::System.Collections.Generic.IList>? ProtectionRules { get; set; } + public global::System.Collections.Generic.IList>? ProtectionRules { get; set; } /// /// The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs index 51b83ca919..8e8a1f31b6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.EnvironmentProtectionRuleVariant2Reviewer.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class EnvironmentProtectionRuleVariant2Reviewer /// [global::System.Text.Json.Serialization.JsonPropertyName("reviewer")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Reviewer { get; set; } + public global::G.AnyOf? Reviewer { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.GistsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.GistsCreateRequest.g.verified.cs index c0d3ba42d2..f8df3d49f8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.GistsCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.GistsCreateRequest.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class GistsCreateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("public")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Public { get; set; } + public global::G.OneOf? Public { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Installation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Installation.g.verified.cs index 90d31a0892..b6405337d0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Installation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Installation.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class Installation [global::System.Text.Json.Serialization.JsonPropertyName("account")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf? Account { get; set; } + public required global::G.AnyOf? Account { get; set; } /// /// Describe whether all repositories have been selected or there's a selection involved diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs index 6f12ff3b26..e13d10e61f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IntegrationInstallationRequest.g.verified.cs @@ -31,7 +31,7 @@ public sealed partial class IntegrationInstallationRequest [global::System.Text.Json.Serialization.JsonPropertyName("account")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Account { get; set; } + public required global::G.AnyOf Account { get; set; } /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Issue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Issue.g.verified.cs index 47a6f67c25..ed01c502ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Issue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.Issue.g.verified.cs @@ -120,7 +120,7 @@ public sealed partial class Issue /// [global::System.Text.Json.Serialization.JsonPropertyName("labels")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Labels { get; set; } + public required global::System.Collections.Generic.IList> Labels { get; set; } /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesCreateRequest.g.verified.cs index 4d47d19240..d54b585dfa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesCreateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesCreateRequest.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class IssuesCreateRequest [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Title { get; set; } + public required global::G.OneOf Title { get; set; } /// /// The contents of the issue. @@ -36,13 +36,13 @@ public sealed partial class IssuesCreateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("milestone")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Milestone { get; set; } + public global::G.OneOf? Milestone { get; set; } /// /// Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._ /// [global::System.Text.Json.Serialization.JsonPropertyName("labels")] - public global::System.Collections.Generic.IList>? Labels { get; set; } + public global::System.Collections.Generic.IList>? Labels { get; set; } /// /// Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._ diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesUpdateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesUpdateRequest.g.verified.cs index 8fc09c7924..8de97b1292 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesUpdateRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.IssuesUpdateRequest.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class IssuesUpdateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Title { get; set; } + public global::G.OneOf? Title { get; set; } /// /// The contents of the issue. @@ -50,13 +50,13 @@ public sealed partial class IssuesUpdateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("milestone")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Milestone { get; set; } + public global::G.OneOf? Milestone { get; set; } /// /// Labels to associate with this issue. Pass one or more labels to _replace_ the set of labels on this issue. Send an empty array (`[]`) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped. /// [global::System.Text.Json.Serialization.JsonPropertyName("labels")] - public global::System.Collections.Generic.IList>? Labels { get; set; } + public global::System.Collections.Generic.IList>? Labels { get; set; } /// /// Usernames to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this issue. Send an empty array (`[]`) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.NullableIssue.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.NullableIssue.g.verified.cs index 9a7e48351b..94f1386ff2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.NullableIssue.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.NullableIssue.g.verified.cs @@ -120,7 +120,7 @@ public sealed partial class NullableIssue /// [global::System.Text.Json.Serialization.JsonPropertyName("labels")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Labels { get; set; } + public required global::System.Collections.Generic.IList> Labels { get; set; } /// /// A GitHub user. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgCustomProperty.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgCustomProperty.g.verified.cs index f3bee76853..3922f119fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgCustomProperty.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgCustomProperty.g.verified.cs @@ -38,7 +38,7 @@ public sealed partial class OrgCustomProperty /// [global::System.Text.Json.Serialization.JsonPropertyName("default_value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>? DefaultValue { get; set; } + public global::G.OneOf>? DefaultValue { get; set; } /// /// Short description of the property diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgRulesetConditions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgRulesetConditions.g.verified.cs index c62d3bec64..25a29e77cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgRulesetConditions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgRulesetConditions.g.verified.cs @@ -15,9 +15,9 @@ namespace G /// Conditions to target repositories by name and refs by name /// #if NET6_0_OR_GREATER - public global::System.AllOf? Value1 { get; init; } + public global::G.AllOf? Value1 { get; init; } #else - public global::System.AllOf? Value1 { get; } + public global::G.AllOf? Value1 { get; } #endif /// @@ -31,17 +31,17 @@ namespace G /// /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value1; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value1; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value1 = value; } @@ -50,9 +50,9 @@ public OrgRulesetConditions(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value2 { get; init; } + public global::G.AllOf? Value2 { get; init; } #else - public global::System.AllOf? Value2 { get; } + public global::G.AllOf? Value2 { get; } #endif /// @@ -66,17 +66,17 @@ public OrgRulesetConditions(global::System.AllOf /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value2; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value2; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value2 = value; } @@ -85,9 +85,9 @@ public OrgRulesetConditions(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value3 { get; init; } + public global::G.AllOf? Value3 { get; init; } #else - public global::System.AllOf? Value3 { get; } + public global::G.AllOf? Value3 { get; } #endif /// @@ -101,17 +101,17 @@ public OrgRulesetConditions(global::System.AllOf /// /// - public static implicit operator OrgRulesetConditions(global::System.AllOf value) => new OrgRulesetConditions(value); + public static implicit operator OrgRulesetConditions(global::G.AllOf value) => new OrgRulesetConditions(value); /// /// /// - public static implicit operator global::System.AllOf?(OrgRulesetConditions @this) => @this.Value3; + public static implicit operator global::G.AllOf?(OrgRulesetConditions @this) => @this.Value3; /// /// /// - public OrgRulesetConditions(global::System.AllOf? value) + public OrgRulesetConditions(global::G.AllOf? value) { Value3 = value; } @@ -120,9 +120,9 @@ public OrgRulesetConditions(global::System.AllOf public OrgRulesetConditions( - global::System.AllOf? value1, - global::System.AllOf? value2, - global::System.AllOf? value3 + global::G.AllOf? value1, + global::G.AllOf? value2, + global::G.AllOf? value3 ) { Value1 = value1; @@ -155,11 +155,11 @@ public override int GetHashCode() var fields = new object?[] { Value1, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value2, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value3, - typeof(global::System.AllOf), + typeof(global::G.AllOf), }; const int offset = unchecked((int)2166136261); const int prime = 16777619; @@ -175,9 +175,9 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null public bool Equals(OrgRulesetConditions 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(Value1, other.Value1) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value2, other.Value2) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value3, other.Value3) ; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs index 659a714ae9..dde4adae0e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.OrgsCreateOrUpdateCustomPropertyRequest.g.verified.cs @@ -31,7 +31,7 @@ public sealed partial class OrgsCreateOrUpdateCustomPropertyRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("default_value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>? DefaultValue { get; set; } + public global::G.OneOf>? DefaultValue { get; set; } /// /// Short description of the property diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PageDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PageDeployment.g.verified.cs index 98815efbd1..d538434564 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PageDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PageDeployment.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class PageDeployment [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Id { get; set; } + public required global::G.OneOf Id { get; set; } /// /// The URI to monitor GitHub Pages deployment status.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs index f7725f197c..9dd34cf99c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.PendingDeploymentReviewer.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class PendingDeploymentReviewer ///
[global::System.Text.Json.Serialization.JsonPropertyName("reviewer")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Reviewer { get; set; } + public global::G.AnyOf? Reviewer { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs index 9952bf32d0..b288032e10 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposCreateDeploymentRequest.g.verified.cs @@ -43,7 +43,7 @@ public sealed partial class ReposCreateDeploymentRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("payload")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Payload { get; set; } + public global::G.OneOf? Payload { get; set; } /// /// Name for the target deployment environment (e.g., `production`, `staging`, `qa`).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs index 0f06c772fd..0464b359e2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ReposUpdateInformationAboutPagesSiteRequest.g.verified.cs @@ -35,7 +35,7 @@ public sealed partial class ReposUpdateInformationAboutPagesSiteRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("source")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Source { get; set; } + public global::G.AnyOf? Source { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryAdvisory.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryAdvisory.g.verified.cs index d4daaec091..3bf9204e47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryAdvisory.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryAdvisory.g.verified.cs @@ -67,7 +67,7 @@ public sealed partial class RepositoryAdvisory [global::System.Text.Json.Serialization.JsonPropertyName("author")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf? Author { get; set; } + public required global::G.AllOf? Author { get; set; } /// /// The publisher of the advisory. @@ -75,7 +75,7 @@ public sealed partial class RepositoryAdvisory [global::System.Text.Json.Serialization.JsonPropertyName("publisher")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf? Publisher { get; set; } + public required global::G.AllOf? Publisher { get; set; } /// /// @@ -196,7 +196,7 @@ public sealed partial class RepositoryAdvisory [global::System.Text.Json.Serialization.JsonPropertyName("private_fork")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf? PrivateFork { get; set; } + public required global::G.AllOf? PrivateFork { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs index b000fb60ee..1279afe264 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleDetailed.g.verified.cs @@ -15,9 +15,9 @@ namespace G /// /// #if NET6_0_OR_GREATER - public global::System.AllOf? Value1 { get; init; } + public global::G.AllOf? Value1 { get; init; } #else - public global::System.AllOf? Value1 { get; } + public global::G.AllOf? Value1 { get; } #endif /// @@ -31,17 +31,17 @@ namespace G /// /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value1; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value1; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value1 = value; } @@ -50,9 +50,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value2 { get; init; } + public global::G.AllOf? Value2 { get; init; } #else - public global::System.AllOf? Value2 { get; } + public global::G.AllOf? Value2 { get; } #endif /// @@ -66,17 +66,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value2; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value2; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value2 = value; } @@ -85,9 +85,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value3 { get; init; } + public global::G.AllOf? Value3 { get; init; } #else - public global::System.AllOf? Value3 { get; } + public global::G.AllOf? Value3 { get; } #endif /// @@ -101,17 +101,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value3; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value3; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value3 = value; } @@ -120,9 +120,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value4 { get; init; } + public global::G.AllOf? Value4 { get; init; } #else - public global::System.AllOf? Value4 { get; } + public global::G.AllOf? Value4 { get; } #endif /// @@ -136,17 +136,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value4; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value4; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value4 = value; } @@ -155,9 +155,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value5 { get; init; } + public global::G.AllOf? Value5 { get; init; } #else - public global::System.AllOf? Value5 { get; } + public global::G.AllOf? Value5 { get; } #endif /// @@ -171,17 +171,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value5; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value5; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value5 = value; } @@ -190,9 +190,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value6 { get; init; } + public global::G.AllOf? Value6 { get; init; } #else - public global::System.AllOf? Value6 { get; } + public global::G.AllOf? Value6 { get; } #endif /// @@ -206,17 +206,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value6; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value6; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value6 = value; } @@ -225,9 +225,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value7 { get; init; } + public global::G.AllOf? Value7 { get; init; } #else - public global::System.AllOf? Value7 { get; } + public global::G.AllOf? Value7 { get; } #endif /// @@ -241,17 +241,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value7; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value7; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value7 = value; } @@ -260,9 +260,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value8 { get; init; } + public global::G.AllOf? Value8 { get; init; } #else - public global::System.AllOf? Value8 { get; } + public global::G.AllOf? Value8 { get; } #endif /// @@ -276,17 +276,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value8; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value8; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value8 = value; } @@ -295,9 +295,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value9 { get; init; } + public global::G.AllOf? Value9 { get; init; } #else - public global::System.AllOf? Value9 { get; } + public global::G.AllOf? Value9 { get; } #endif /// @@ -311,17 +311,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value9; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value9; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value9 = value; } @@ -330,9 +330,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value10 { get; init; } + public global::G.AllOf? Value10 { get; init; } #else - public global::System.AllOf? Value10 { get; } + public global::G.AllOf? Value10 { get; } #endif /// @@ -346,17 +346,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value10; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value10; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value10 = value; } @@ -365,9 +365,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value11 { get; init; } + public global::G.AllOf? Value11 { get; init; } #else - public global::System.AllOf? Value11 { get; } + public global::G.AllOf? Value11 { get; } #endif /// @@ -381,17 +381,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value11; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value11; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value11 = value; } @@ -400,9 +400,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value12 { get; init; } + public global::G.AllOf? Value12 { get; init; } #else - public global::System.AllOf? Value12 { get; } + public global::G.AllOf? Value12 { get; } #endif /// @@ -416,17 +416,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value12; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value12; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value12 = value; } @@ -435,9 +435,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value13 { get; init; } + public global::G.AllOf? Value13 { get; init; } #else - public global::System.AllOf? Value13 { get; } + public global::G.AllOf? Value13 { get; } #endif /// @@ -451,17 +451,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value13; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value13; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value13 = value; } @@ -470,9 +470,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value14 { get; init; } + public global::G.AllOf? Value14 { get; init; } #else - public global::System.AllOf? Value14 { get; } + public global::G.AllOf? Value14 { get; } #endif /// @@ -486,17 +486,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value14; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value14; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value14 = value; } @@ -505,9 +505,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value15 { get; init; } + public global::G.AllOf? Value15 { get; init; } #else - public global::System.AllOf? Value15 { get; } + public global::G.AllOf? Value15 { get; } #endif /// @@ -521,17 +521,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value15; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value15; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value15 = value; } @@ -540,9 +540,9 @@ public RepositoryRuleDetailed(global::System.AllOf #if NET6_0_OR_GREATER - public global::System.AllOf? Value16 { get; init; } + public global::G.AllOf? Value16 { get; init; } #else - public global::System.AllOf? Value16 { get; } + public global::G.AllOf? Value16 { get; } #endif /// @@ -556,17 +556,17 @@ public RepositoryRuleDetailed(global::System.AllOf /// /// - public static implicit operator RepositoryRuleDetailed(global::System.AllOf value) => new RepositoryRuleDetailed(value); + public static implicit operator RepositoryRuleDetailed(global::G.AllOf value) => new RepositoryRuleDetailed(value); /// /// /// - public static implicit operator global::System.AllOf?(RepositoryRuleDetailed @this) => @this.Value16; + public static implicit operator global::G.AllOf?(RepositoryRuleDetailed @this) => @this.Value16; /// /// /// - public RepositoryRuleDetailed(global::System.AllOf? value) + public RepositoryRuleDetailed(global::G.AllOf? value) { Value16 = value; } @@ -575,22 +575,22 @@ public RepositoryRuleDetailed(global::System.AllOf public RepositoryRuleDetailed( - global::System.AllOf? value1, - global::System.AllOf? value2, - global::System.AllOf? value3, - global::System.AllOf? value4, - global::System.AllOf? value5, - global::System.AllOf? value6, - global::System.AllOf? value7, - global::System.AllOf? value8, - global::System.AllOf? value9, - global::System.AllOf? value10, - global::System.AllOf? value11, - global::System.AllOf? value12, - global::System.AllOf? value13, - global::System.AllOf? value14, - global::System.AllOf? value15, - global::System.AllOf? value16 + global::G.AllOf? value1, + global::G.AllOf? value2, + global::G.AllOf? value3, + global::G.AllOf? value4, + global::G.AllOf? value5, + global::G.AllOf? value6, + global::G.AllOf? value7, + global::G.AllOf? value8, + global::G.AllOf? value9, + global::G.AllOf? value10, + global::G.AllOf? value11, + global::G.AllOf? value12, + global::G.AllOf? value13, + global::G.AllOf? value14, + global::G.AllOf? value15, + global::G.AllOf? value16 ) { Value1 = value1; @@ -649,37 +649,37 @@ public override int GetHashCode() var fields = new object?[] { Value1, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value2, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value3, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value4, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value5, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value6, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value7, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value8, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value9, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value10, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value11, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value12, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value13, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value14, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value15, - typeof(global::System.AllOf), + typeof(global::G.AllOf), Value16, - typeof(global::System.AllOf), + typeof(global::G.AllOf), }; const int offset = unchecked((int)2166136261); const int prime = 16777619; @@ -695,22 +695,22 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null public bool Equals(RepositoryRuleDetailed 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) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value7, other.Value7) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value8, other.Value8) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value9, other.Value9) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value10, other.Value10) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value11, other.Value11) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value12, other.Value12) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value13, other.Value13) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value14, other.Value14) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value15, other.Value15) && - global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value16, other.Value16) + 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) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value7, other.Value7) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value8, other.Value8) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value9, other.Value9) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value10, other.Value10) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value11, other.Value11) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value12, other.Value12) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value13, other.Value13) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value14, other.Value14) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value15, other.Value15) && + global::System.Collections.Generic.EqualityComparer?>.Default.Equals(Value16, other.Value16) ; } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleset.g.verified.cs index 6e791f3ff5..3236a5d199 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.RepositoryRuleset.g.verified.cs @@ -86,7 +86,7 @@ public sealed partial class RepositoryRuleset /// [global::System.Text.Json.Serialization.JsonPropertyName("conditions")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Conditions { get; set; } + public global::G.AnyOf? Conditions { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.SecretScanningLocation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.SecretScanningLocation.g.verified.cs index fa225f85df..0bbc9a2144 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.SecretScanningLocation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.SecretScanningLocation.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class SecretScanningLocation /// [global::System.Text.Json.Serialization.JsonPropertyName("details")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory13))] - public global::System.OneOf? Details { get; set; } + public global::G.OneOf? Details { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs index 79fee392b1..962ec6c5ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.ValidationErrorError.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class ValidationErrorError /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf>? Value { get; set; } + public global::G.OneOf>? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs index f4348e78e7..07b409ca90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentCreatedDeployment.g.verified.cs @@ -66,7 +66,7 @@ public sealed partial class WebhookDeploymentCreatedDeployment [global::System.Text.Json.Serialization.JsonPropertyName("payload")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Payload { get; set; } + public required global::G.OneOf Payload { get; set; } /// /// GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs index 3cfe4df6a6..78f848f477 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookDeploymentStatusCreatedDeployment.g.verified.cs @@ -66,7 +66,7 @@ public sealed partial class WebhookDeploymentStatusCreatedDeployment [global::System.Text.Json.Serialization.JsonPropertyName("payload")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? Payload { get; set; } + public required global::G.OneOf? Payload { get; set; } /// /// GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookFork.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookFork.g.verified.cs index a4f3713c78..b942b9f6b8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookFork.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookFork.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class WebhookFork [global::System.Text.Json.Serialization.JsonPropertyName("forkee")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Forkee { get; set; } + public required global::G.AllOf Forkee { get; set; } /// /// The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs index 8ebf67c870..b2d2bf12fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookForkForkeeVariant1.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookForkForkeeVariant1 [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookForkForkeeVariant1 [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs index 8f823bebb9..00f970d514 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentCreated.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class WebhookIssueCommentCreated [global::System.Text.Json.Serialization.JsonPropertyName("issue")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Issue { get; set; } + public required global::G.AllOf Issue { get; set; } /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs index 29d15e9de2..5212dd3866 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentDeleted.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class WebhookIssueCommentDeleted [global::System.Text.Json.Serialization.JsonPropertyName("issue")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Issue { get; set; } + public required global::G.AllOf Issue { get; set; } /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs index 73fb0f625b..4ebe440e56 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssueCommentEdited.g.verified.cs @@ -54,7 +54,7 @@ public sealed partial class WebhookIssueCommentEdited [global::System.Text.Json.Serialization.JsonPropertyName("issue")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Issue { get; set; } + public required global::G.AllOf Issue { get; set; } /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesClosed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesClosed.g.verified.cs index 2e46662884..29f26a6417 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesClosed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesClosed.g.verified.cs @@ -40,7 +40,7 @@ public sealed partial class WebhookIssuesClosed [global::System.Text.Json.Serialization.JsonPropertyName("issue")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Issue { get; set; } + public required global::G.AllOf Issue { get; set; } /// /// A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs index 411405ee35..518e2d8716 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesOpenedChangesOldRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookIssuesOpenedChangesOldRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -503,7 +503,7 @@ public sealed partial class WebhookIssuesOpenedChangesOldRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs index 9c9b6edb19..b324fba2c0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookIssuesTransferredChangesNewRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookIssuesTransferredChangesNewRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -505,7 +505,7 @@ public sealed partial class WebhookIssuesTransferredChangesNewRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs index 72e675573f..0e85f16bdd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersion.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersion /// [global::System.Text.Json.Serialization.JsonPropertyName("body")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Body { get; set; } + public global::G.OneOf? Body { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs index c46e804520..89eed2b64e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPackagePublishedPackagePackageVersionNugetMetadataItem.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersionNugetMet /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// @@ -29,7 +29,7 @@ public sealed partial class WebhookPackagePublishedPackagePackageVersionNugetMet /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory4))] - public global::System.OneOf? Value { get; set; } + public global::G.OneOf? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs index 75d270d273..87b4d9bef2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectCardMoved.g.verified.cs @@ -53,7 +53,7 @@ public sealed partial class WebhookProjectCardMoved [global::System.Text.Json.Serialization.JsonPropertyName("project_card")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf ProjectCard { get; set; } + public required global::G.AllOf ProjectCard { get; set; } /// /// The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs index fef3b7007e..1ff3c7800b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookProjectsV2ItemEdited.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class WebhookProjectsV2ItemEdited ///
[global::System.Text.Json.Serialization.JsonPropertyName("changes")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Changes { get; set; } + public global::G.OneOf? Changes { get; set; } /// /// The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs index 59f75156c1..620892eabd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs index 70ca9b551a..43b2a21628 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs index bf1af3a196..838e1cdab1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAssignedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAssignedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs index ce4eca2621..d3abe0df09 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs index c458304d7a..75e067d178 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestBaseRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestBaseRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs index df37310a3b..04fe837069 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeDisabledPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestHeadRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAutoMergeDisabledPullRequestHeadRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs index 55303d52be..6d28fc76c5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs index a0bcfb738e..33c34008ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestBaseRep [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestBaseRep [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs index 6418f99785..72462fa556 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestAutoMergeEnabledPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestHeadRep [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestAutoMergeEnabledPullRequestHeadRep [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs index 045f7d0b96..64420e714c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs index 86e12ef0af..67db2bf959 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs index f280fb9713..7c1fbca0c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestDequeuedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestDequeuedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs index 37cffd5a2e..0c697564c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs index aa1f5502cc..701645cfe3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs index 0b4c4b0d7f..bb7a1d61ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestEnqueuedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestEnqueuedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs index 006a97c7ae..ee94270015 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs index c6eb8fafb0..437d8c5ecf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs index 13243719bc..b0fdcc2369 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLabeledPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestLabeledPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs index 47afdb322b..c398f0a5cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestLockedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs index 81a8fcedbc..cfebf8383e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs index 2e08467924..d0f12b64fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestLockedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestLockedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs index b922c60f2e..ac3953422b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequest.g.verified.cs @@ -198,7 +198,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs index d321d957a2..256c6044bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs index 0614ec679f..132da1cfcd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentCreatedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -517,7 +517,7 @@ public sealed partial class WebhookPullRequestReviewCommentCreatedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs index 0c4ff870cf..371f4faea1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequest.g.verified.cs @@ -198,7 +198,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs index fd1a2c8494..3e476b25b4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs index 278317be30..66db0959c8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentDeletedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewCommentDeletedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs index 8ea2b50ea4..02f9162248 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequest.g.verified.cs @@ -198,7 +198,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs index b81aab8fd6..f3d202c266 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestBase [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestBase [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs index af7f114f37..4731298d88 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewCommentEditedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestHead [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewCommentEditedPullRequestHead [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs index e5b9d387e8..60681dc4f6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequest.g.verified.cs @@ -200,7 +200,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs index b964d7ef78..762430e627 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs index f8ffb79815..0bbae90fe0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewDismissedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewDismissedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs index df058a1ef8..3d7c6aa6ab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequest.g.verified.cs @@ -200,7 +200,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs index 3994c53c11..5c3debe812 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -491,7 +491,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs index 629ea94845..dd77ef283f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewEditedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -491,7 +491,7 @@ public sealed partial class WebhookPullRequestReviewEditedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs index 2a3eb5be60..093c3ac916 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs index 145dbbd4b8..40e3ebfe7b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs index db2b47ce27..36160181be 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant1PullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant1PullRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs index df5958d453..d83ba46ccd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs index ea9d84a7d0..386355162d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs index f3419f2b98..461757ab76 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestRemovedVariant2PullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestRemovedVariant2PullRe [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs index bf348a2766..b5134d3867 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs index 4149803a42..e1990db41c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs index b8dd44bfd6..5a2e671a49 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant1PullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant1PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs index 9851eca005..64a13484dd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs index f49d30c49e..e1ec2c77e9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs index 87cb9967c1..a96f815b95 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewRequestedVariant2PullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewRequestedVariant2PullRequest [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs index ca24296d8d..99a55b8825 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequest.g.verified.cs @@ -200,7 +200,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs index 30db3fd1a2..98f4d5d1e9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs index aed0d2ec13..1751294d16 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewSubmittedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestReviewSubmittedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs index e00dc0cc0d..55ff812e1a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequest.g.verified.cs @@ -200,7 +200,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs index a553306540..6f68649889 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -499,7 +499,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestBas [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs index 4bc9794ae5..894dbe8aea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadResolvedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -499,7 +499,7 @@ public sealed partial class WebhookPullRequestReviewThreadResolvedPullRequestHea [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs index 4a255abb63..ffbe0b790a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequest.g.verified.cs @@ -200,7 +200,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs index 53ef90b1ef..81f04f47d4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestB [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -499,7 +499,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestB [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs index 22e07c25ca..c53fba6aa5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestReviewThreadUnresolvedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestH [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -499,7 +499,7 @@ public sealed partial class WebhookPullRequestReviewThreadUnresolvedPullRequestH [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs index eb7defa8bf..8fd83ece7a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs index 879f62f791..c17f46eba6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs index d371c8d331..dd497498aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestSynchronizePullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -513,7 +513,7 @@ public sealed partial class WebhookPullRequestSynchronizePullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs index 1918c52b4b..cb4e89aaa6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs index 56851e9097..9a36405cc9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs index 6e71a24a2d..6f40497f20 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnassignedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestUnassignedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs index 8daa62da70..88baad2562 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs index b1553b889d..4a0b177e50 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs index 6b7ca17ad8..7bf0208c40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlabeledPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -513,7 +513,7 @@ public sealed partial class WebhookPullRequestUnlabeledPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs index 33c20c999e..326f025bed 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequest.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs index c0892a3919..c011ba1b5a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestBaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestBaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs index 8dab17f382..f70b761b05 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPullRequestUnlockedPullRequestHeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhookPullRequestUnlockedPullRequestHeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPushRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPushRepository.g.verified.cs index d6f85cc695..466da26af2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPushRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookPushRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookPushRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -505,7 +505,7 @@ public sealed partial class WebhookPushRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs index 161837402f..a0342082ca 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersion.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("body")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Body { get; set; } + public global::G.OneOf? Body { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs index a46232e82c..4e0b907137 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.g.verified.cs @@ -34,14 +34,14 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("author")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Author { get; set; } + public global::G.OneOf? Author { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("bugs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Bugs { get; set; } + public global::G.OneOf? Bugs { get; set; } /// /// @@ -78,7 +78,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("dist")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Dist { get; set; } + public global::G.OneOf? Dist { get; set; } /// /// @@ -109,7 +109,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("repository")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Repository { get; set; } + public global::G.OneOf? Repository { get; set; } /// /// @@ -188,7 +188,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("directories")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Directories { get; set; } + public global::G.OneOf? Directories { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs index 61ca7bfaa0..3354476e6a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataItem.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// @@ -29,7 +29,7 @@ public sealed partial class WebhookRegistryPackagePublishedRegistryPackagePackag /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory4))] - public global::System.OneOf? Value { get; set; } + public global::G.OneOf? Value { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs index 742c745cad..7b4542994a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookStatusCommitCommit.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class WebhookStatusCommitCommit [global::System.Text.Json.Serialization.JsonPropertyName("author")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Author { get; set; } + public required global::G.AllOf Author { get; set; } /// /// @@ -32,7 +32,7 @@ public sealed partial class WebhookStatusCommitCommit [global::System.Text.Json.Serialization.JsonPropertyName("committer")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Committer { get; set; } + public required global::G.AllOf Committer { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs index 99b8099867..59080a9c06 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamAddedToRepositoryRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookTeamAddedToRepositoryRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookTeamAddedToRepositoryRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs index 809326c8fa..b5fab904eb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamCreatedRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookTeamCreatedRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookTeamCreatedRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs index 43c420eb44..f4c6e3e4d7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamDeletedRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookTeamDeletedRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookTeamDeletedRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs index 868a7a7357..db6b6140f9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamEditedRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookTeamEditedRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookTeamEditedRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs index 6e29c017ac..9d10774756 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookTeamRemovedFromRepositoryRepository.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhookTeamRemovedFromRepositoryRepository [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. @@ -497,7 +497,7 @@ public sealed partial class WebhookTeamRemovedFromRepositoryRepository [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs index a42e2b6927..7f700268af 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobCompleted.g.verified.cs @@ -62,7 +62,7 @@ public sealed partial class WebhookWorkflowJobCompleted [global::System.Text.Json.Serialization.JsonPropertyName("workflow_job")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf WorkflowJob { get; set; } + public required global::G.AllOf WorkflowJob { get; set; } /// /// A request for a specific ref(branch,sha,tag) to be deployed diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs index b38e6eb9d8..e8e5551604 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhookWorkflowJobInProgress.g.verified.cs @@ -62,7 +62,7 @@ public sealed partial class WebhookWorkflowJobInProgress [global::System.Text.Json.Serialization.JsonPropertyName("workflow_job")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf WorkflowJob { get; set; } + public required global::G.AllOf WorkflowJob { get; set; } /// /// A request for a specific ref(branch,sha,tag) to be deployed diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5.g.verified.cs index d9b70599a4..06a022af69 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5.g.verified.cs @@ -266,7 +266,7 @@ public sealed partial class WebhooksPullRequest5 /// [global::System.Text.Json.Serialization.JsonPropertyName("requested_reviewers")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } + public required global::System.Collections.Generic.IList> RequestedReviewers { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs index d56b997680..a0a6ff9d7e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5BaseRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhooksPullRequest5BaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhooksPullRequest5BaseRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs index b6c13eb286..08e33963ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.Models.WebhooksPullRequest5HeadRepo.g.verified.cs @@ -142,7 +142,7 @@ public sealed partial class WebhooksPullRequest5HeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf CreatedAt { get; set; } + public required global::G.OneOf CreatedAt { get; set; } /// /// The default branch of the repository. @@ -518,7 +518,7 @@ public sealed partial class WebhooksPullRequest5HeadRepo [global::System.Text.Json.Serialization.JsonPropertyName("pushed_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf? PushedAt { get; set; } + public required global::G.OneOf? PushedAt { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs index 3edc0855c3..c3e2f57502 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.OrgsClient.OrgsCreateOrUpdateCustomProperty.g.verified.cs @@ -144,7 +144,7 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertyResponseContent( string customPropertyName, global::G.OrgsCreateOrUpdateCustomPropertyRequestValueType valueType, bool required = default, - global::System.OneOf>? defaultValue = default, + global::G.OneOf>? defaultValue = default, string? description = default, global::System.Collections.Generic.IList? allowedValues = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs index 9b4693e7f5..107d799fa3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ProjectsClient.ProjectsCreateCard.g.verified.cs @@ -9,12 +9,12 @@ public partial class ProjectsClient partial void PrepareProjectsCreateCardArguments( global::System.Net.Http.HttpClient httpClient, ref int columnId, - global::System.OneOf request); + global::G.OneOf request); partial void PrepareProjectsCreateCardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int columnId, - global::System.OneOf request); + global::G.OneOf request); partial void ProcessProjectsCreateCardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -33,7 +33,7 @@ partial void ProcessProjectsCreateCardResponseContent( /// public async global::System.Threading.Tasks.Task ProjectsCreateCardAsync( int columnId, - global::System.OneOf request, + global::G.OneOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -109,7 +109,7 @@ partial void ProcessProjectsCreateCardResponseContent( int columnId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf + var request = new global::G.OneOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs index b7fe0fde40..03b168ee44 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposAddAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposAddAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs index 9476d70c94..ebd7be7e6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposAddStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposAddStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs index 1a8a381f5a..d60c0ae2ec 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposAddTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposAddTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs index 3e942ce367..5f22cb308f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposAddUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposAddUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposAddUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposAddUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposAddUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposAddUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs index d79d9d5c93..34410e2213 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCancelPagesDeployment.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReposCancelPagesDeploymentArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf pagesDeploymentId); + ref global::G.OneOf pagesDeploymentId); partial void PrepareReposCancelPagesDeploymentRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf pagesDeploymentId); + global::G.OneOf pagesDeploymentId); partial void ProcessReposCancelPagesDeploymentResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,7 +39,7 @@ partial void ProcessReposCancelPagesDeploymentResponseContent( public async global::System.Threading.Tasks.Task ReposCancelPagesDeploymentAsync( string owner, string repo, - global::System.OneOf pagesDeploymentId, + global::G.OneOf pagesDeploymentId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs index 66ecd5693e..caac8a47d9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposCreateDeployment.g.verified.cs @@ -218,7 +218,7 @@ partial void ProcessReposCreateDeploymentResponseContent( string? task = "deploy", bool autoMerge = true, global::System.Collections.Generic.IList? requiredContexts = default, - global::System.OneOf? payload = default, + global::G.OneOf? payload = default, string? environment = "production", string? description = default, bool transientEnvironment = false, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs index f8da4c906d..9415c05981 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposGetPagesDeployment.g.verified.cs @@ -10,13 +10,13 @@ partial void PrepareReposGetPagesDeploymentArguments( global::System.Net.Http.HttpClient httpClient, ref string owner, ref string repo, - ref global::System.OneOf pagesDeploymentId); + ref global::G.OneOf pagesDeploymentId); partial void PrepareReposGetPagesDeploymentRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, - global::System.OneOf pagesDeploymentId); + global::G.OneOf pagesDeploymentId); partial void ProcessReposGetPagesDeploymentResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -39,7 +39,7 @@ partial void ProcessReposGetPagesDeploymentResponseContent( public async global::System.Threading.Tasks.Task ReposGetPagesDeploymentAsync( string owner, string repo, - global::System.OneOf pagesDeploymentId, + global::G.OneOf pagesDeploymentId, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs index 1554963810..91e46d32de 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposRemoveAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposRemoveAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs index 56f2e73788..1fca99f891 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposRemoveStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposRemoveStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs index 29fcfc438e..d9d70ce2bc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposRemoveTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposRemoveTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs index a17e161d43..809d0eb0d4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposRemoveUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposRemoveUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposRemoveUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposRemoveUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposRemoveUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposRemoveUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs index a7e48d072d..18f4b3f967 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetAppAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetAppAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetAppAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetAppAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposSetAppAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposSetAppAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs index 7d43e2b9df..11d8659c9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetStatusCheckContexts.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetStatusCheckContextsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetStatusCheckContextsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetStatusCheckContextsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReposSetStatusCheckContextsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -127,7 +127,7 @@ partial void ProcessReposSetStatusCheckContextsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs index ed0527bcbe..35c8005471 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetTeamAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetTeamAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetTeamAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetTeamAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -43,7 +43,7 @@ partial void ProcessReposSetTeamAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -129,7 +129,7 @@ partial void ProcessReposSetTeamAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs index ab5acf61ce..75f3aa94a6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposSetUserAccessRestrictions.g.verified.cs @@ -11,14 +11,14 @@ partial void PrepareReposSetUserAccessRestrictionsArguments( ref string owner, ref string repo, ref string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void PrepareReposSetUserAccessRestrictionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string owner, string repo, string branch, - global::System.OneOf> request); + global::G.OneOf> request); partial void ProcessReposSetUserAccessRestrictionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -46,7 +46,7 @@ partial void ProcessReposSetUserAccessRestrictionsResponseContent( string owner, string repo, string branch, - global::System.OneOf> request, + global::G.OneOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -135,7 +135,7 @@ partial void ProcessReposSetUserAccessRestrictionsResponseContent( string branch, global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf> + var request = new global::G.OneOf> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs index ee2cbe259e..123696c992 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.ReposClient.ReposUpdateInformationAboutPagesSite.g.verified.cs @@ -136,7 +136,7 @@ partial void ProcessReposUpdateInformationAboutPagesSiteResponseContent( string? cname = default, bool httpsEnforced = default, global::G.ReposUpdateInformationAboutPagesSiteRequestBuildType? buildType = default, - global::System.AnyOf? source = default, + global::G.AnyOf? source = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.ReposUpdateInformationAboutPagesSiteRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs index 4b3a3cb873..d0b70006e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.SecurityAdvisoriesClient.SecurityAdvisoriesListGlobalAdvisories.g.verified.cs @@ -13,9 +13,9 @@ partial void PrepareSecurityAdvisoriesListGlobalAdvisoriesArguments( ref string? cveId, ref global::G.SecurityAdvisoryEcosystems? ecosystem, ref global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity, - ref global::System.OneOf>? cwes, + ref global::G.OneOf>? cwes, ref bool isWithdrawn, - ref global::System.OneOf>? affects, + ref global::G.OneOf>? affects, ref string? published, ref string? updated, ref string? modified, @@ -32,9 +32,9 @@ partial void PrepareSecurityAdvisoriesListGlobalAdvisoriesRequest( string? cveId, global::G.SecurityAdvisoryEcosystems? ecosystem, global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity, - global::System.OneOf>? cwes, + global::G.OneOf>? cwes, bool isWithdrawn, - global::System.OneOf>? affects, + global::G.OneOf>? affects, string? published, string? updated, string? modified, @@ -91,9 +91,9 @@ partial void ProcessSecurityAdvisoriesListGlobalAdvisoriesResponseContent( string? cveId = default, global::G.SecurityAdvisoryEcosystems? ecosystem = default, global::G.SecurityAdvisoriesListGlobalAdvisoriesSeverity? severity = default, - global::System.OneOf>? cwes = default, + global::G.OneOf>? cwes = default, bool isWithdrawn = default, - global::System.OneOf>? affects = default, + global::G.OneOf>? affects = default, string? published = default, string? updated = default, string? modified = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs index aa7014ebf0..6f71bf8d9f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersAddEmailForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class UsersClient { partial void PrepareUsersAddEmailForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void PrepareUsersAddEmailForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void ProcessUsersAddEmailForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessUsersAddEmailForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> UsersAddEmailForAuthenticatedUserAsync( - global::System.OneOf, string> request, + global::G.OneOf, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessUsersAddEmailForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task> UsersAddEmailForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, string> + var request = new global::G.OneOf, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs index 4424e2f597..b5d6b02ecd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersDeleteEmailForAuthenticatedUser.g.verified.cs @@ -8,11 +8,11 @@ public partial class UsersClient { partial void PrepareUsersDeleteEmailForAuthenticatedUserArguments( global::System.Net.Http.HttpClient httpClient, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void PrepareUsersDeleteEmailForAuthenticatedUserRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.OneOf, string> request); + global::G.OneOf, string> request); partial void ProcessUsersDeleteEmailForAuthenticatedUserResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessUsersDeleteEmailForAuthenticatedUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UsersDeleteEmailForAuthenticatedUserAsync( - global::System.OneOf, string> request, + global::G.OneOf, string> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessUsersDeleteEmailForAuthenticatedUserResponseContent( public async global::System.Threading.Tasks.Task UsersDeleteEmailForAuthenticatedUserAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.OneOf, string> + var request = new global::G.OneOf, string> { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs index fe1f55d40b..0e592c8bc4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetAuthenticated.g.verified.cs @@ -26,7 +26,7 @@ partial void ProcessUsersGetAuthenticatedResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> UsersGetAuthenticatedAsync( + public async global::System.Threading.Tasks.Task> UsersGetAuthenticatedAsync( global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -78,7 +78,7 @@ partial void ProcessUsersGetAuthenticatedResponseContent( } 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/GitHub/SystemTextJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs index a604bbfbf6..8947bb8845 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#G.UsersClient.UsersGetByUsername.g.verified.cs @@ -31,7 +31,7 @@ partial void ProcessUsersGetByUsernameResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> UsersGetByUsernameAsync( + public async global::System.Threading.Tasks.Task> UsersGetByUsernameAsync( string username, global::System.Threading.CancellationToken cancellationToken = default) { @@ -86,7 +86,7 @@ partial void ProcessUsersGetByUsernameResponseContent( } 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/GitHub/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs index 065b7b7667..28122c230f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AllOf Read( + public override global::G.AllOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.AllOf( + var result = new global::G.AllOf( value1 ); @@ -40,7 +40,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AllOf value, + global::G.AllOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs index db279d04d6..aedb302c29 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AllOf Read( + public override global::G.AllOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AllOf( + var result = new global::G.AllOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AllOf value, + global::G.AllOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs index e43ac28aeb..f1d60f1cc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs index 785e6bb987..1ce6ed91b5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs index 5fd4066d13..da431d1008 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs index 64d4f74aff..6da2c7f13e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs index 8f6fb328ce..ade9215444 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1 ); @@ -40,7 +40,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf13.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf13.g.verified.cs index 40062ba281..1d91708cb0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf13.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf13.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -145,7 +145,7 @@ public class OneOfJsonConverter( + var result = new global::G.OneOf( value1, value2, value3, @@ -220,7 +220,7 @@ public class OneOfJsonConverter public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs index 73bc9f5c18..64a17520a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs index dc36115487..0f6c5aea48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3, @@ -85,7 +85,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs index aa84794adc..f7d9bbe022 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -65,7 +65,7 @@ public class OneOfJsonConverter : global::System.Text.Json.S { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3, @@ -100,7 +100,7 @@ public class OneOfJsonConverter : global::System.Text.Json.S /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs index 57ff9d167d..50f7b590c3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory13.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory13.g.verified.cs index 5908543474..57e079e8f7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory13.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory13.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory13 : global::System.Text.Json.Seria /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,,,,,,,,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,,,,,,,,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs index 141db21b25..a60f3e9978 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs index 8193f367d6..2bca2bec47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory4 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs index 5232991b53..313553af48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory5 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OrgRulesetConditions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OrgRulesetConditions.g.verified.cs index ff5cedf6de..e3c1fb827b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OrgRulesetConditions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.OrgRulesetConditions.g.verified.cs @@ -17,30 +17,30 @@ public class OrgRulesetConditionsJsonConverter : global::System.Text.Json.Serial var readerCopy = reader; - global::System.AllOf? value1 = default; + global::G.AllOf? value1 = default; try { - value1 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value1 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value2 = default; + global::G.AllOf? value2 = default; try { - value2 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value2 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value3 = default; + global::G.AllOf? value3 = default; try { - value3 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value3 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { @@ -54,15 +54,15 @@ public class OrgRulesetConditionsJsonConverter : global::System.Text.Json.Serial if (value1 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value2 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value3 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } return result; @@ -78,15 +78,15 @@ public override void Write( if (value.IsValue1) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeof(global::G.AllOf), options); } else if (value.IsValue2) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeof(global::G.AllOf), options); } else if (value.IsValue3) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeof(global::G.AllOf), options); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.RepositoryRuleDetailed.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.RepositoryRuleDetailed.g.verified.cs index 2acc0e0197..7368098c98 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.RepositoryRuleDetailed.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#JsonConverters.RepositoryRuleDetailed.g.verified.cs @@ -17,160 +17,160 @@ public class RepositoryRuleDetailedJsonConverter : global::System.Text.Json.Seri var readerCopy = reader; - global::System.AllOf? value1 = default; + global::G.AllOf? value1 = default; try { - value1 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value1 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value2 = default; + global::G.AllOf? value2 = default; try { - value2 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value2 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value3 = default; + global::G.AllOf? value3 = default; try { - value3 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value3 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value4 = default; + global::G.AllOf? value4 = default; try { - value4 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value4 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value5 = default; + global::G.AllOf? value5 = default; try { - value5 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value5 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value6 = default; + global::G.AllOf? value6 = default; try { - value6 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value6 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value7 = default; + global::G.AllOf? value7 = default; try { - value7 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value7 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value8 = default; + global::G.AllOf? value8 = default; try { - value8 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value8 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value9 = default; + global::G.AllOf? value9 = default; try { - value9 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value9 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value10 = default; + global::G.AllOf? value10 = default; try { - value10 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value10 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value11 = default; + global::G.AllOf? value11 = default; try { - value11 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value11 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value12 = default; + global::G.AllOf? value12 = default; try { - value12 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value12 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value13 = default; + global::G.AllOf? value13 = default; try { - value13 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value13 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value14 = default; + global::G.AllOf? value14 = default; try { - value14 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value14 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value15 = default; + global::G.AllOf? value15 = default; try { - value15 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value15 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { } readerCopy = reader; - global::System.AllOf? value16 = default; + global::G.AllOf? value16 = default; try { - value16 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); + value16 = global::System.Text.Json.JsonSerializer.Deserialize>(ref readerCopy, options); } catch (global::System.Text.Json.JsonException) { @@ -197,67 +197,67 @@ public class RepositoryRuleDetailedJsonConverter : global::System.Text.Json.Seri if (value1 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value2 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value3 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value4 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value5 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value6 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value7 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value8 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value9 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value10 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value11 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value12 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value13 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value14 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value15 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } else if (value16 != null) { - _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); + _ = global::System.Text.Json.JsonSerializer.Deserialize>(ref reader, options); } return result; @@ -273,67 +273,67 @@ public override void Write( if (value.IsValue1) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeof(global::G.AllOf), options); } else if (value.IsValue2) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2, typeof(global::G.AllOf), options); } else if (value.IsValue3) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value3, typeof(global::G.AllOf), options); } else if (value.IsValue4) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value4, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value4, typeof(global::G.AllOf), options); } else if (value.IsValue5) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value5, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value5, typeof(global::G.AllOf), options); } else if (value.IsValue6) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value6, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value6, typeof(global::G.AllOf), options); } else if (value.IsValue7) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value7, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value7, typeof(global::G.AllOf), options); } else if (value.IsValue8) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value8, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value8, typeof(global::G.AllOf), options); } else if (value.IsValue9) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value9, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value9, typeof(global::G.AllOf), options); } else if (value.IsValue10) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value10, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value10, typeof(global::G.AllOf), options); } else if (value.IsValue11) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value11, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value11, typeof(global::G.AllOf), options); } else if (value.IsValue12) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value12, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value12, typeof(global::G.AllOf), options); } else if (value.IsValue13) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value13, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value13, typeof(global::G.AllOf), options); } else if (value.IsValue14) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value14, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value14, typeof(global::G.AllOf), options); } else if (value.IsValue15) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value15, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value15, typeof(global::G.AllOf), options); } else if (value.IsValue16) { - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value16, typeof(global::System.AllOf), options); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value16, typeof(global::G.AllOf), options); } } } diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.13.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.13.g.verified.cs index 6f07d2be6a..2b02a1361b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.13.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.13.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.5.g.verified.cs index 051e7d69e1..026bd6075b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/GitHub/SystemTextJson/_#OneOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#G.Models.ErrorResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#G.Models.ErrorResponse.g.verified.cs index a41811bc11..57b04ca830 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#G.Models.ErrorResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/NewtonsoftJson/_#G.Models.ErrorResponse.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ErrorResponse /// /// [global::Newtonsoft.Json.JsonProperty("error", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf> Error { get; set; } = default!; + public global::G.AnyOf> Error { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#G.Models.ErrorResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#G.Models.ErrorResponse.g.verified.cs index 3a8233c48e..ff4c361861 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#G.Models.ErrorResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#G.Models.ErrorResponse.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class ErrorResponse [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf> Error { get; set; } + public required global::G.AnyOf> Error { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/HuggingFace/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.3.g.verified.cs index 80ee5cae1a..d4413137f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.4.g.verified.cs index 4a020d5ee9..99227ffbc0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.5.g.verified.cs index 3bed9c3306..cf22e2968e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#AnyOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 index eaeffd2d24..5a9de1ca5d 100644 --- 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 @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 13ed94c20a..ce64fbcc23 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 @@ -117,13 +117,13 @@ partial void ProcessCreateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::System.AnyOf? description = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, global::System.DateTime updatedAt = default, - global::System.AnyOf? defaultDataset = default, - global::System.AnyOf? numReviewersPerItem = default, - global::System.AnyOf? enableReservations = default, - global::System.AnyOf? reservationMinutes = default, + global::G.AnyOf? defaultDataset = default, + global::G.AnyOf? numReviewersPerItem = default, + global::G.AnyOf? enableReservations = default, + global::G.AnyOf? reservationMinutes = default, 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 d92d2b8fe1..ecef8fb277 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 @@ -111,8 +111,8 @@ partial void ProcessCreateIdentityAnnotationQueueRunStatusResponseContent( /// public async global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::System.AnyOf? status = default, - global::System.AnyOf? overrideAddedAt = default, + global::G.AnyOf? status = default, + global::G.AnyOf? 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 6daa4523c2..9d1edfbd21 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::System.AnyOf, object>? ids, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, + ref global::G.AnyOf, object>? ids, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, ref int offset, ref int limit, - ref global::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareGetAnnotationQueuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? ids, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, + global::G.AnyOf, object>? ids, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, int offset, int limit, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessGetAnnotationQueuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -48,12 +48,12 @@ partial void ProcessGetAnnotationQueuesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::System.AnyOf, object>? ids = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, + global::G.AnyOf, object>? ids = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, int offset = 0, int limit = 100, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 f88163d390..2f834cb32b 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 @@ -119,12 +119,12 @@ partial void ProcessUpdateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDataset = default, - global::System.AnyOf? numReviewersPerItem = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? defaultDataset = default, + global::G.AnyOf? numReviewersPerItem = default, bool enableReservations = true, - global::System.AnyOf? reservationMinutes = default, + global::G.AnyOf? 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 1b2439bd9d..633213aeea 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 @@ -119,8 +119,8 @@ partial void ProcessUpdateRunInAnnotationQueueResponseContent( public async global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::System.AnyOf? lastReviewedTime = default, - global::System.AnyOf? addedAt = default, + global::G.AnyOf? lastReviewedTime = default, + global::G.AnyOf? 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.ApiKeyClient.GenerateApiKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs index 03055e77f8..dde64bb308 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs @@ -8,11 +8,11 @@ public partial class ApiKeyClient { partial void PrepareGenerateApiKeyArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AllOf request); + global::G.AllOf request); partial void PrepareGenerateApiKeyRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AllOf request); + global::G.AllOf request); partial void ProcessGenerateApiKeyResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessGenerateApiKeyResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GenerateApiKeyAsync( - global::System.AllOf request, + global::G.AllOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessGenerateApiKeyResponseContent( public async global::System.Threading.Tasks.Task GenerateApiKeyAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AllOf + var request = new global::G.AllOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs index 982635c7ab..9b0a818387 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs @@ -8,11 +8,11 @@ public partial class ApiKeyClient { partial void PrepareGeneratePersonalAccessTokenArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AllOf request); + global::G.AllOf request); partial void PrepareGeneratePersonalAccessTokenRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AllOf request); + global::G.AllOf request); partial void ProcessGeneratePersonalAccessTokenResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync( - global::System.AllOf request, + global::G.AllOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent( public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AllOf + var request = new global::G.AllOf { }; 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 e650a92ffc..aa4371be58 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 @@ -116,11 +116,11 @@ partial void ProcessCreateChartResponseContent( string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, - global::System.AnyOf? sectionId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? commonFilters = default, + 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, 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 66a8cd49da..0aaad69dae 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 @@ -107,8 +107,8 @@ partial void ProcessCreateSectionResponseContent( /// public async global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, + global::G.AnyOf? description = default, + global::G.AnyOf? 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 26a89177af..3cf3a5ab2e 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 @@ -113,10 +113,10 @@ partial void ProcessReadChartsResponseContent( public async global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::System.AnyOf? endTime = default, - global::System.AllOf? stride = default, - global::System.AnyOf? afterIndex = default, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf? endTime = default, + global::G.AllOf? stride = default, + global::G.AnyOf? afterIndex = default, + global::G.AnyOf, object>? 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 7dda87e87a..be7dec72fa 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,13 +10,13 @@ partial void PrepareReadSectionsArguments( global::System.Net.Http.HttpClient httpClient, ref int limit, ref int offset, - ref global::System.AnyOf? titleContains); + ref global::G.AnyOf? titleContains); partial void PrepareReadSectionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? titleContains); + global::G.AnyOf? titleContains); partial void ProcessReadSectionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReadSectionsResponseContent( public async global::System.Threading.Tasks.Task> ReadSectionsAsync( int limit = 100, int offset = 0, - global::System.AnyOf? titleContains = default, + global::G.AnyOf? titleContains = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 eec97eb51d..8950e60db3 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 @@ -121,10 +121,10 @@ partial void ProcessReadSingleChartResponseContent( global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::System.AnyOf? endTime = default, - global::System.AllOf? stride = default, - global::System.AnyOf? afterIndex = default, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf? endTime = default, + global::G.AllOf? stride = default, + global::G.AnyOf? afterIndex = default, + global::G.AnyOf, object>? 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.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ChartsClient.UpdateChart.g.verified.cs index 6a2a6d404c..2eeb0be123 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 @@ -119,14 +119,14 @@ partial void ProcessUpdateChartResponseContent( /// public async global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, - global::System.AnyOf? title = default, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, - global::System.AnyOf? chartType = default, - global::System.AnyOf, global::G.Missing>? series = default, - global::System.AnyOf? sectionId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? commonFilters = default, + global::G.AnyOf? title = 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::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 d1f52ff9a5..eee2875a6d 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 @@ -114,9 +114,9 @@ partial void ProcessUpdateSectionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, - global::System.AnyOf? title = default, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, + global::G.AnyOf? title = default, + global::G.AnyOf? description = default, + global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsSectionUpdate 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 703c6fccf8..081aa445bb 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 @@ -123,8 +123,8 @@ partial void ProcessCreateCommitResponseContent( string owner, string repo, global::G.CreateRepoCommitRequestManifest manifest, - global::System.AnyOf? parentCommit = default, - global::System.AnyOf, object>? exampleRunIds = default, + global::G.AnyOf? parentCommit = default, + global::G.AnyOf, object>? 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 0b7a85bfd1..109c59d7af 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::System.AnyOf? includeModel); + ref global::G.AnyOf? 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::System.AnyOf? includeModel); + global::G.AnyOf? 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::System.AnyOf? includeModel = default, + global::G.AnyOf? includeModel = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 106fc5b421..7f8dc74289 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 @@ -109,7 +109,7 @@ partial void ProcessCloneDatasetResponseContent( public async global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::System.AnyOf?, object>? asOf = default, + global::G.AnyOf?, 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 b1afa85923..435ece429f 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 @@ -114,11 +114,11 @@ partial void ProcessCreateComparativeExperimentResponseContent( global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? 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 08c853210a..67cdb7450b 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 @@ -117,14 +117,14 @@ partial void ProcessCreateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::System.AnyOf? description = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, - global::System.AnyOf? dataType = default, - global::System.AnyOf? inputsSchemaDefinition = default, - global::System.AnyOf? outputsSchemaDefinition = default, - global::System.AnyOf? externallyManaged = default, - global::System.AnyOf? id = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? dataType = 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, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs index 719864f153..ba82ccf156 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs @@ -9,14 +9,14 @@ public partial class DatasetsClient partial void PrepareDiffDatasetVersionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf fromVersion, - ref global::System.AnyOf toVersion); + ref global::G.AnyOf fromVersion, + ref global::G.AnyOf toVersion); partial void PrepareDiffDatasetVersionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf fromVersion, - global::System.AnyOf toVersion); + global::G.AnyOf fromVersion, + global::G.AnyOf toVersion); partial void ProcessDiffDatasetVersionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,8 +37,8 @@ partial void ProcessDiffDatasetVersionsResponseContent( /// public async global::System.Threading.Tasks.Task DiffDatasetVersionsAsync( global::System.Guid datasetId, - global::System.AnyOf fromVersion, - global::System.AnyOf toVersion, + global::G.AnyOf fromVersion, + global::G.AnyOf toVersion, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 4add16dc4f..e76e6cf4c3 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetCsvRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 81638bcd3d..723863f068 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetOpenaiRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 241a10affb..d5cdd189ae 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetOpenaiFtRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 3dd5a98166..74acf46da2 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 @@ -114,7 +114,7 @@ partial void ProcessGenerateResponseContent( public async global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::System.AnyOf, object>? exampleIds = default, + global::G.AnyOf, object>? 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.GetDatasetSplits.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs index ca95e1c1fd..2fcf7bc4e2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareGetDatasetSplitsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareGetDatasetSplitsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? asOf); partial void ProcessGetDatasetSplitsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessGetDatasetSplitsResponseContent( /// public async global::System.Threading.Tasks.Task> GetDatasetSplitsAsync( global::System.Guid datasetId, - global::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 434d6d90a1..6ce7bf6117 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::System.AnyOf? asOf, - ref global::System.AnyOf? tag); + ref global::G.AnyOf? asOf, + ref global::G.AnyOf? tag); partial void PrepareGetDatasetVersionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf, - global::System.AnyOf? tag); + global::G.AnyOf? asOf, + global::G.AnyOf? 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::System.AnyOf? asOf = default, - global::System.AnyOf? tag = default, + global::G.AnyOf? asOf = default, + global::G.AnyOf? tag = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 8890f5c6d3..2126e5ed55 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::System.AnyOf? search, - ref global::System.AnyOf? example, + ref global::G.AnyOf? search, + ref global::G.AnyOf? 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::System.AnyOf? search, - global::System.AnyOf? example, + global::G.AnyOf? search, + global::G.AnyOf? 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::System.AnyOf? search = default, - global::System.AnyOf? example = default, + global::G.AnyOf? search = default, + global::G.AnyOf? 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.DatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.Index.g.verified.cs index 851759cb83..8be6bf8692 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 @@ -114,7 +114,7 @@ partial void ProcessIndexResponseContent( /// public async global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::System.AnyOf? tag = default, + global::G.AnyOf? tag = default, 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 ce761edaeb..9491b2aeb1 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,23 +9,23 @@ public partial class DatasetsClient partial void PrepareReadComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf, object>? id, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf, object>? id, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf, object>? id, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf, object>? id, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadComparativeExperimentsResponse( global::System.Net.Http.HttpClient httpClient, @@ -60,12 +60,12 @@ partial void ProcessReadComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf, object>? id = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf, object>? id = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { 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 0c35c31d6d..cdc2c2c74f 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) { @@ -84,7 +84,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 3b1c34bd18..ea5c592823 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::System.AnyOf, object>? id, - ref global::System.AnyOf, global::G.DataType2?, object>? dataType, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? metadata, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf, global::G.DataType2?, object>? dataType, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf? metadata, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareReadDatasetsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? id, - global::System.AnyOf, global::G.DataType2?, object>? dataType, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? metadata, + global::G.AnyOf, object>? id, + global::G.AnyOf, global::G.DataType2?, object>? dataType, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf? metadata, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessReadDatasetsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,16 +65,16 @@ partial void ProcessReadDatasetsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf, global::G.DataType2?, object>? dataType = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? metadata = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf, global::G.DataType2?, object>? dataType = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf? metadata = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 ae39cdc13c..e751b05415 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 @@ -125,10 +125,10 @@ partial void ProcessReadDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::System.AnyOf? filters = default, + global::G.AnyOf? filters = default, int offset = 0, int limit = 100, - global::System.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 f8d3da7bad..26676d8087 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 @@ -32,7 +32,7 @@ partial void ProcessReadExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::G.QueryExampleSchemaWithRuns request, global::System.Threading.CancellationToken cancellationToken = default) @@ -98,7 +98,7 @@ partial void ProcessReadExamplesWithRunsResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } @@ -118,11 +118,11 @@ partial void ProcessReadExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? filters = default, + global::G.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs index fb2654ebe4..a93bfc021e 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? inputsSchemaDefinition = default, - global::System.AnyOf? outputsSchemaDefinition = default, - global::System.AnyOf? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::G.AnyOf? 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 246461ba95..2e5d15c604 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 @@ -149,10 +149,10 @@ partial void ProcessUploadCsvDatasetResponseContent( byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::System.AnyOf? name = default, - global::System.AllOf? dataType = default, + global::G.AnyOf? name = default, + global::G.AllOf? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 e1e9e9717a..733236e169 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 @@ -117,12 +117,12 @@ partial void ProcessUploadExperimentResponseContent( global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::System.AnyOf? experimentDescription = default, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? datasetName = default, - global::System.AnyOf? datasetDescription = default, - global::System.AnyOf, object>? summaryExperimentScores = default, - global::System.AnyOf? experimentMetadata = default, + 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, 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 70194bf460..b31f6e6c5d 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 @@ -108,7 +108,7 @@ partial void ProcessCreateEventResponseContent( global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::System.AnyOf? commit = default, + global::G.AnyOf? 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.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.CreateExample.g.verified.cs index 3dfc6ee366..7dfcee98fb 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 @@ -117,12 +117,12 @@ partial void ProcessCreateExampleResponseContent( /// public async global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::System.AnyOf? outputs = default, - global::System.AnyOf? sourceRunId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? inputs = default, - global::System.AnyOf, string, object>? split = default, - global::System.AnyOf? id = default, + 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, 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.ReadExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExample.g.verified.cs index 814a69d236..018ec7377e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ExamplesClient.ReadExample.g.verified.cs @@ -9,12 +9,12 @@ public partial class ExamplesClient partial void PrepareReadExampleArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid exampleId, - ref global::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareReadExampleRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid exampleId, - global::System.AnyOf? asOf); + global::G.AnyOf? asOf); partial void ProcessReadExampleResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,7 +37,7 @@ partial void ProcessReadExampleResponseContent( /// public async global::System.Threading.Tasks.Task ReadExampleAsync( global::System.Guid exampleId, - global::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 99fdba250b..5c006339a5 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 @@ -9,33 +9,33 @@ public partial class ExamplesClient { partial void PrepareReadExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? asOf, - ref global::System.AnyOf? metadata, - ref global::System.AnyOf, object>? fullTextContains, - ref global::System.AnyOf, object>? splits, - ref global::System.AnyOf? dataset, + ref global::G.AnyOf, object>? 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 int offset, ref int limit, - ref global::System.AllOf? order, - ref global::System.AnyOf? randomSeed, + ref global::G.AllOf? order, + ref global::G.AnyOf? randomSeed, global::System.Collections.Generic.IList? select, - ref global::System.AnyOf? filter); + ref global::G.AnyOf? filter); partial void PrepareReadExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? id, - global::System.AnyOf? asOf, - global::System.AnyOf? metadata, - global::System.AnyOf, object>? fullTextContains, - global::System.AnyOf, object>? splits, - global::System.AnyOf? dataset, + global::G.AnyOf, object>? id, + global::G.AnyOf? asOf, + global::G.AnyOf? metadata, + global::G.AnyOf, object>? fullTextContains, + global::G.AnyOf, object>? splits, + global::G.AnyOf? dataset, int offset, int limit, - global::System.AllOf? order, - global::System.AnyOf? randomSeed, + global::G.AllOf? order, + global::G.AnyOf? randomSeed, global::System.Collections.Generic.IList? select, - global::System.AnyOf? filter); + global::G.AnyOf? filter); partial void ProcessReadExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -75,18 +75,18 @@ partial void ProcessReadExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? asOf = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf, object>? fullTextContains = default, - global::System.AnyOf, object>? splits = default, - global::System.AnyOf? dataset = default, + global::G.AnyOf, object>? 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, int offset = 0, int limit = 100, - global::System.AllOf? order = default, - global::System.AnyOf? randomSeed = default, + global::G.AllOf? order = default, + global::G.AnyOf? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::System.AnyOf? filter = default, + global::G.AnyOf? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 15230e3bc1..b81ae44b19 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateExampleResponseContent( /// public async global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? inputs = default, - global::System.AnyOf? outputs = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf, string, object>? split = default, + 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.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 95d763f688..ceda6cb69d 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 @@ -120,17 +120,17 @@ partial void ProcessCreateFeedbackResponseContent( string key, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackGroupId = default, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? runId = default, - global::System.AnyOf? sessionId = 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::System.Guid id = default, - global::System.AnyOf? feedbackSource = default, - global::System.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.AnyOf? 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.CreateFeedbackIngestToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs index 20a4d5c4f5..ebca374303 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs @@ -8,11 +8,11 @@ public partial class FeedbackClient { partial void PrepareCreateFeedbackIngestTokenArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AnyOf> request); + global::G.AnyOf> request); partial void PrepareCreateFeedbackIngestTokenRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf> request); + global::G.AnyOf> request); partial void ProcessCreateFeedbackIngestTokenResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,8 +29,8 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( - global::System.AnyOf> request, + public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( + global::G.AnyOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -90,7 +90,7 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( } 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}\" "); } @@ -100,10 +100,10 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( + public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AnyOf> + var request = new global::G.AnyOf> { }; 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 f1c5f218fa..93e2dea7fe 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::System.AnyOf? score, - ref global::System.AnyOf? value, - ref global::System.AnyOf? comment, - ref global::System.AnyOf? correction); + ref global::G.AnyOf? score, + ref global::G.AnyOf? value, + ref global::G.AnyOf? comment, + ref global::G.AnyOf? correction); partial void PrepareCreateFeedbackWithTokenGetRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid token, - global::System.AnyOf? score, - global::System.AnyOf? value, - global::System.AnyOf? comment, - global::System.AnyOf? correction); + global::G.AnyOf? score, + global::G.AnyOf? value, + global::G.AnyOf? comment, + global::G.AnyOf? 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::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + global::G.AnyOf? comment = default, + global::G.AnyOf? correction = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 3ae540f485..5b7543ea43 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 @@ -116,11 +116,11 @@ partial void ProcessCreateFeedbackWithTokenPostResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? metadata = default, + 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::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 149b2b939b..200848f346 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 @@ -124,17 +124,17 @@ partial void ProcessEagerlyCreateFeedbackResponseContent( string key, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackGroupId = default, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? runId = default, - global::System.AnyOf? sessionId = 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::System.Guid id = default, - global::System.AnyOf? feedbackSource = default, - global::System.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.AnyOf? 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 3199113213..7443ef8c99 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level, - ref global::System.AnyOf? maxCreatedAt, - ref global::System.AnyOf? minCreatedAt); + 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); partial void PrepareReadFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level, - global::System.AnyOf? maxCreatedAt, - global::System.AnyOf? minCreatedAt); + 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); partial void ProcessReadFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -67,18 +67,18 @@ partial void ProcessReadFeedbacksResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, - global::System.AnyOf? maxCreatedAt = default, - global::System.AnyOf? minCreatedAt = default, + 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.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 9735f0e605..711c54fbee 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackConfig = default, + 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::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 2130d45c1b..fb5841cfd0 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 @@ -108,7 +108,7 @@ partial void ProcessCreateFeedbackConfigEndpointResponseContent( public async global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::System.AnyOf? isLowerScoreBetter = default, + global::G.AnyOf? isLowerScoreBetter = default, 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 531ee34d72..c9cd0cb4e4 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::System.AnyOf, object>? key); + ref global::G.AnyOf, object>? key); partial void PrepareListFeedbackConfigsEndpointRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? key); + global::G.AnyOf, object>? key); partial void ProcessListFeedbackConfigsEndpointResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessListFeedbackConfigsEndpointResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::System.AnyOf, object>? key = default, + global::G.AnyOf, object>? key = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 ac47f3b5ba..f1b37e58e3 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 @@ -105,8 +105,8 @@ partial void ProcessUpdateFeedbackConfigEndpointResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::System.AnyOf? feedbackConfig = default, - global::System.AnyOf? isLowerScoreBetter = default, + global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? 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.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs index b15e7d7bca..a0ece7c3a5 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 @@ -112,11 +112,11 @@ partial void ProcessCreateNewModelPriceResponseContent( public async global::System.Threading.Tasks.Task CreateNewModelPriceAsync( string name, string matchPattern, - global::System.AnyOf promptCost, - global::System.AnyOf completionCost, - global::System.AnyOf? startTime = default, + global::G.AnyOf promptCost, + global::G.AnyOf completionCost, + global::G.AnyOf? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::System.AnyOf? provider = default, + global::G.AnyOf? 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 2f139b8374..f58d9f2ae8 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 @@ -120,11 +120,11 @@ partial void ProcessUpdateModelPriceResponseContent( global::System.Guid id, string name, string matchPattern, - global::System.AnyOf promptCost, - global::System.AnyOf completionCost, - global::System.AnyOf? startTime = default, + global::G.AnyOf promptCost, + global::G.AnyOf completionCost, + global::G.AnyOf? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::System.AnyOf? provider = default, + global::G.AnyOf? 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 d7da3cc994..00d4c4d93e 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 @@ -21,7 +21,7 @@ public sealed partial class APIFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 34c4a460ac..eeb9077c75 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 @@ -15,7 +15,7 @@ public sealed partial class APIKeyCreateResponse /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { 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 fc9296fd9b..2d26b32511 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 @@ -15,7 +15,7 @@ public sealed partial class APIKeyGetResponse /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { get; set; } /// /// 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 281b2c46c5..01b469505e 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 @@ -21,7 +21,7 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -39,25 +39,25 @@ public sealed partial class AnnotationQueueCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 49a9e8b37e..618e44c236 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 @@ -27,7 +27,7 @@ public sealed partial class AnnotationQueueRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? 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 7d5d680a95..3ddf6a7235 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 @@ -15,13 +15,13 @@ public sealed partial class AnnotationQueueRunUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? LastReviewedTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("added_at")] - public global::System.AnyOf? AddedAt { get; set; } + public global::G.AnyOf? 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 188d4e50ed..b329e88843 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 @@ -21,7 +21,7 @@ public sealed partial class AnnotationQueueSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -39,25 +39,25 @@ public sealed partial class AnnotationQueueSchema /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 33b6712777..994a9ba898 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 @@ -21,7 +21,7 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -39,25 +39,25 @@ public sealed partial class AnnotationQueueSchemaWithSize /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::Newtonsoft.Json.JsonProperty("enable_reservations")] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 9cbeea2768..a719e78021 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 @@ -15,25 +15,25 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset")] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::Newtonsoft.Json.JsonProperty("num_reviewers_per_item")] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true @@ -45,7 +45,7 @@ public sealed partial class AnnotationQueueUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("reservation_minutes")] - public global::System.AnyOf? ReservationMinutes { get; set; } + public global::G.AnyOf? 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 54eab59a2b..9f14ff1db7 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 @@ -21,7 +21,7 @@ public sealed partial class AppFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 9bdab0408c..67b6bc1504 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 @@ -33,7 +33,7 @@ public sealed partial class AppHubCrudTenantsTenant /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 c4c755c82d..cc79c42985 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 @@ -21,7 +21,7 @@ public sealed partial class AppSchemasTenant /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class AppSchemasTenant /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 e166413b79..4066cd2826 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 @@ -21,7 +21,7 @@ public sealed partial class AutoEvalFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 a2f7db5138..0f752742d8 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 @@ -15,7 +15,7 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// @@ -27,37 +27,37 @@ public sealed partial class BasicAuthMemberCreate /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? ReadOnly { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? 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 05738f8c87..589f436b7c 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 @@ -15,13 +15,13 @@ public sealed partial class BasicAuthUserPatch /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? 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 880555b6aa..77c96bc6da 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,61 +27,61 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf EndTime { get; set; } = default!; + public global::G.OneOf EndTime { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? OutputAttachments { get; set; } /// /// 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 8d4e27f4ee..8b9fc5422f 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 @@ -33,55 +33,55 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::Newtonsoft.Json.JsonProperty("start_time", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf StartTime { get; set; } = default!; + public global::G.OneOf StartTime { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.OneOf? Serialized { get; set; } + public global::G.OneOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// @@ -105,31 +105,31 @@ public sealed partial class BatchIngestRunsRequestPostItem /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.OneOf? SessionId { get; set; } + public global::G.OneOf? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::System.OneOf? SessionName { get; set; } + public global::G.OneOf? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.OneOf? ReferenceExampleId { get; set; } + public global::G.OneOf? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs index f111e325c3..5211d2c517 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 @@ -27,7 +27,7 @@ public sealed partial class BodyCloneDatasetApiV1DatasetsClonePost /// /// [global::Newtonsoft.Json.JsonProperty("as_of")] - public global::System.AnyOf?, object>? AsOf { get; set; } + public global::G.AnyOf?, object>? AsOf { get; set; } /// /// 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 443557e1c8..73c26c7d13 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 @@ -15,103 +15,103 @@ public sealed partial class BodyParamsForRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace")] - public global::System.AnyOf? Trace { get; set; } + public global::G.AnyOf? Trace { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run")] - public global::System.AnyOf? ParentRun { get; set; } + public global::G.AnyOf? ParentRun { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? Session { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example")] - public global::System.AnyOf, object>? ReferenceExample { get; set; } + public global::G.AnyOf, object>? ReferenceExample { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("execution_order")] - public global::System.AnyOf? ExecutionOrder { get; set; } + public global::G.AnyOf? ExecutionOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("query")] - public global::System.AnyOf? Query { get; set; } + public global::G.AnyOf? Query { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_root")] - public global::System.AnyOf? IsRoot { get; set; } + public global::G.AnyOf? IsRoot { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("data_source_type")] - public global::System.AnyOf? DataSourceType { get; set; } + public global::G.AnyOf? DataSourceType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("cursor")] - public global::System.AnyOf? Cursor { get; set; } + public global::G.AnyOf? Cursor { get; set; } /// /// Default Value: 100 @@ -129,7 +129,7 @@ public sealed partial class BodyParamsForRunSchema /// Default Value: desc /// [global::Newtonsoft.Json.JsonProperty("order")] - public global::System.AllOf? Order { get; set; } = global::G.RunDateOrder.Desc; + public global::G.AllOf? Order { get; set; } = global::G.RunDateOrder.Desc; /// /// Additional properties that are not explicitly defined in the schema 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 89a5a1ce85..ec037f795d 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 @@ -33,13 +33,13 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// Default Value: kv /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::System.AllOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AllOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// @@ -51,7 +51,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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.Comment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.Comment.g.verified.cs index 04cc297c4b..2a723a223c 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 @@ -21,7 +21,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("comment_by")] - public global::System.AnyOf? CommentBy { get; set; } + public global::G.AnyOf? CommentBy { get; set; } /// /// @@ -33,7 +33,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("parent_id")] - public global::System.AnyOf? ParentId { get; set; } + public global::G.AnyOf? ParentId { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("comment_by_name")] - public global::System.AnyOf? CommentByName { get; set; } + public global::G.AnyOf? CommentByName { get; set; } /// /// @@ -75,7 +75,7 @@ public sealed partial class Comment /// /// [global::Newtonsoft.Json.JsonProperty("liked_by_auth_user")] - public global::System.AnyOf? LikedByAuthUser { get; set; } + public global::G.AnyOf? 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 fac2fcb876..c016d60217 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 @@ -27,7 +27,7 @@ public sealed partial class CommitManifestResponse /// /// [global::Newtonsoft.Json.JsonProperty("examples")] - public global::System.AnyOf, object>? Examples { get; set; } + public global::G.AnyOf, object>? 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 d558b78ba8..7581009de9 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 @@ -33,7 +33,7 @@ public sealed partial class CommitWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("parent_id")] - public global::System.AnyOf? ParentId { get; set; } + public global::G.AnyOf? ParentId { get; set; } /// /// @@ -75,7 +75,7 @@ public sealed partial class CommitWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("parent_commit_hash")] - public global::System.AnyOf? ParentCommitHash { get; set; } + public global::G.AnyOf? 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 9c91598d3e..832456040c 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 @@ -21,13 +21,13 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -69,7 +69,7 @@ public sealed partial class ComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? 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 08a903aa8d..5ba74e4f29 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 @@ -21,13 +21,13 @@ public sealed partial class ComparativeExperimentBase /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class ComparativeExperimentBase /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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 c4042c11e4..bf5aed67ad 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 @@ -27,13 +27,13 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class ComparativeExperimentCreate /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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 c2147d1923..6beb89214b 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 @@ -33,7 +33,7 @@ public sealed partial class CreateEventRequest /// /// [global::Newtonsoft.Json.JsonProperty("commit")] - public global::System.AnyOf? Commit { get; set; } + public global::G.AnyOf? 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 558761115c..eff969e48a 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 @@ -27,7 +27,7 @@ public sealed partial class CreateFeedbackConfigSchema /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } = false; + public global::G.AnyOf? 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 c8c165ef25..2613c4ff9c 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 @@ -21,13 +21,13 @@ public sealed partial class CreateRepoCommitRequest /// /// [global::Newtonsoft.Json.JsonProperty("parent_commit")] - public global::System.AnyOf? ParentCommit { get; set; } + public global::G.AnyOf? ParentCommit { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("example_run_ids")] - public global::System.AnyOf, object>? ExampleRunIds { get; set; } + public global::G.AnyOf, object>? 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 80bdadec72..0a9997c2fe 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 @@ -21,13 +21,13 @@ public sealed partial class CreateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// @@ -39,7 +39,7 @@ public sealed partial class CreateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? 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 3399a1b2ea..09eabeec2e 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::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// @@ -33,103 +33,103 @@ public sealed partial class CreateRunRequest /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::System.OneOf? StartTime { get; set; } + public global::G.OneOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.OneOf? Serialized { get; set; } + public global::G.OneOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_id")] - public global::System.OneOf? TraceId { get; set; } + public global::G.OneOf? TraceId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::System.OneOf? DottedOrder { get; set; } + public global::G.OneOf? DottedOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.OneOf? SessionId { get; set; } + public global::G.OneOf? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::System.OneOf? SessionName { get; set; } + public global::G.OneOf? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.OneOf? ReferenceExampleId { get; set; } + public global::G.OneOf? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.CustomChartCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreate.g.verified.cs index e73ff06a8a..ba68c27dca 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 @@ -21,13 +21,13 @@ public sealed partial class CustomChartCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// Enum for custom chart types. @@ -45,19 +45,19 @@ public sealed partial class CustomChartCreate /// /// [global::Newtonsoft.Json.JsonProperty("section_id")] - public global::System.AnyOf? SectionId { get; set; } + public global::G.AnyOf? SectionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::System.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.CustomChartCreatePreview.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartCreatePreview.g.verified.cs index a545d47033..6005cd39b0 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 @@ -21,7 +21,7 @@ public sealed partial class CustomChartCreatePreview /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::System.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.CustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomChartResponse.g.verified.cs index 80f93b7112..0b9a9e1d3a 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 @@ -27,7 +27,7 @@ public sealed partial class CustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -51,13 +51,13 @@ public sealed partial class CustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("series", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf, object> Series { get; set; } = default!; + public global::G.AnyOf, object> 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 a65c055709..8d2e43c482 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 @@ -21,7 +21,7 @@ public sealed partial class CustomChartSeries /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -33,7 +33,7 @@ public sealed partial class CustomChartSeries /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? 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 b814e7ec77..924908b676 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 @@ -21,7 +21,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -33,7 +33,7 @@ public sealed partial class CustomChartSeriesCreate /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? 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 709ecb201e..92550bdae1 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 @@ -15,25 +15,25 @@ public sealed partial class CustomChartSeriesFilters /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? 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 b1774c7066..1c4e5aeb3c 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 @@ -21,7 +21,7 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -33,13 +33,13 @@ public sealed partial class CustomChartSeriesUpdate /// /// [global::Newtonsoft.Json.JsonProperty("feedback_key")] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? FeedbackKey { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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 fec239216e..e2a99a4fef 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 @@ -15,49 +15,49 @@ public sealed partial class CustomChartUpdate /// /// [global::Newtonsoft.Json.JsonProperty("title")] - public global::System.AnyOf? Title { get; set; } + public global::G.AnyOf? Title { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("chart_type")] - public global::System.AnyOf? ChartType { get; set; } + public global::G.AnyOf? ChartType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("series")] - public global::System.AnyOf, global::G.Missing>? Series { get; set; } + public global::G.AnyOf, global::G.Missing>? Series { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("section_id")] - public global::System.AnyOf? SectionId { get; set; } + public global::G.AnyOf? SectionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::System.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 f8f6d56f13..9393b404dd 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::System.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 5e0c6c8433..719e735b32 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 @@ -27,25 +27,25 @@ public sealed partial class CustomChartsRequest /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("stride")] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("after_index")] - public global::System.AnyOf? AfterIndex { get; set; } + public global::G.AnyOf? AfterIndex { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tag_value_id")] - public global::System.AnyOf, object>? TagValueId { get; set; } + public global::G.AnyOf, object>? 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 9e10b8fc42..08d518bfce 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 @@ -27,13 +27,13 @@ public sealed partial class CustomChartsRequestBase /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("stride")] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { get; set; } /// /// Additional properties that are not explicitly defined in the schema 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 bb69fa8a7f..55dab9c01c 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 @@ -21,13 +21,13 @@ public sealed partial class CustomChartsSection /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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 a664665bf2..36d58695a5 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 @@ -21,13 +21,13 @@ public sealed partial class CustomChartsSectionCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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 53a7ac81a4..5ae6dd62b9 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 @@ -21,13 +21,13 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// @@ -39,7 +39,7 @@ public sealed partial class CustomChartsSectionResponse /// /// [global::Newtonsoft.Json.JsonProperty("is_at_capacity")] - public global::System.AnyOf? IsAtCapacity { get; set; } + public global::G.AnyOf? IsAtCapacity { 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 51d8ae147c..e422add8da 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 @@ -15,19 +15,19 @@ public sealed partial class CustomChartsSectionUpdate /// /// [global::Newtonsoft.Json.JsonProperty("title")] - public global::System.AnyOf? Title { get; set; } + public global::G.AnyOf? Title { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("index")] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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.CustomerVisiblePlanInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs index 1d886bcf62..072d8ff1c9 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 @@ -27,7 +27,7 @@ public sealed partial class CustomerVisiblePlanInfo /// /// [global::Newtonsoft.Json.JsonProperty("ends_on")] - public global::System.AnyOf? EndsOn { get; set; } + public global::G.AnyOf? 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 418e032a24..a8e39a757b 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 @@ -21,7 +21,7 @@ public sealed partial class Dataset /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -33,25 +33,25 @@ public sealed partial class Dataset /// Default Value: kv /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// @@ -87,7 +87,7 @@ public sealed partial class Dataset /// /// [global::Newtonsoft.Json.JsonProperty("last_session_start_time")] - public global::System.AnyOf? LastSessionStartTime { get; set; } + public global::G.AnyOf? 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 cece40f302..fc64623e78 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 @@ -21,7 +21,7 @@ public sealed partial class DatasetCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -33,37 +33,37 @@ public sealed partial class DatasetCreate /// Default Value: kv /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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.DatasetIndexInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.DatasetIndexInfo.g.verified.cs index 9786b8d108..097dd4ecf9 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 @@ -21,13 +21,13 @@ public sealed partial class DatasetIndexInfo /// Default Value: latest /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::System.AnyOf? Tag { get; set; } = "latest"; + public global::G.AnyOf? Tag { get; set; } = "latest"; /// /// /// [global::Newtonsoft.Json.JsonProperty("last_updated_version")] - public global::System.AnyOf? LastUpdatedVersion { get; set; } + public global::G.AnyOf? 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 aeacb75b41..7d6da39467 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 @@ -15,7 +15,7 @@ public sealed partial class DatasetIndexRequest /// Default Value: latest /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::System.AnyOf? Tag { get; set; } = "latest"; + public global::G.AnyOf? 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 ce25848f8e..167384f7cc 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 @@ -23,7 +23,7 @@ public sealed partial class DatasetPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -35,25 +35,25 @@ public sealed partial class DatasetPublicSchema /// Default Value: kv /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// 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 44047e9604..2315f6d727 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 @@ -21,7 +21,7 @@ public sealed partial class DatasetSchemaForUpdate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -33,25 +33,25 @@ public sealed partial class DatasetSchemaForUpdate /// Default Value: kv /// [global::Newtonsoft.Json.JsonProperty("data_type")] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::Newtonsoft.Json.JsonProperty("externally_managed")] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// 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 07a91397a3..118e582846 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::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_schema_definition")] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_schema_definition")] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("patch_examples")] - public global::System.AnyOf? PatchExamples { get; set; } + public global::G.AnyOf? 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 0201c396fd..fc0ee4e11d 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 @@ -15,7 +15,7 @@ public sealed partial class DatasetVersion /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? 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 6b859ba4bd..5d0e0fc26b 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 @@ -15,31 +15,31 @@ public sealed partial class EvaluatorStructuredOutput /// /// [global::Newtonsoft.Json.JsonProperty("hub_ref")] - public global::System.AnyOf? HubRef { get; set; } + public global::G.AnyOf? HubRef { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt")] - public global::System.AnyOf>, object>? Prompt { get; set; } + public global::G.AnyOf>, object>? Prompt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("template_format")] - public global::System.AnyOf? TemplateFormat { get; set; } + public global::G.AnyOf? TemplateFormat { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("schema")] - public global::System.AnyOf? Schema { get; set; } + public global::G.AnyOf? Schema { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("variable_mapping")] - public global::System.AnyOf? VariableMapping { get; set; } + public global::G.AnyOf? 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 8aa9541099..77e80016ee 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 @@ -15,7 +15,7 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,13 +27,13 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -63,7 +63,7 @@ public sealed partial class Example /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 d62a0dcbc2..ec5e9688c7 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::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,31 +27,31 @@ public sealed partial class ExampleBulkCreate /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// Default Value: base /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::System.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string, object>? Split { get; set; } = "base"; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// Default Value: false @@ -63,7 +63,7 @@ public sealed partial class ExampleBulkCreate /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? 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 e2d4607835..78d800023f 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::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,31 +27,31 @@ public sealed partial class ExampleCreate /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// Default Value: base /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::System.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string, object>? Split { get; set; } = "base"; /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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 567a43428a..a2350d026e 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::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::System.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string, object>? 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 50edc69d65..d488f9626a 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::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("split")] - public global::System.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string, object>? 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 a682c1b9a1..11f6e3a1f6 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 @@ -15,7 +15,7 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,13 +27,13 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -63,7 +63,7 @@ public sealed partial class ExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 cb246a5bcb..5241590e30 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 @@ -15,7 +15,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,13 +27,13 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -63,7 +63,7 @@ public sealed partial class ExampleWithRunsCH /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 5804dff7c5..530d7d13ce 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 @@ -15,7 +15,7 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("row_id")] - public global::System.AnyOf? RowId { get; set; } + public global::G.AnyOf? RowId { get; set; } /// /// @@ -27,19 +27,19 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("expected_outputs")] - public global::System.AnyOf? ExpectedOutputs { get; set; } + public global::G.AnyOf? ExpectedOutputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("actual_outputs")] - public global::System.AnyOf? ActualOutputs { get; set; } + public global::G.AnyOf? ActualOutputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluation_scores")] - public global::System.AnyOf, object>? EvaluationScores { get; set; } + public global::G.AnyOf, object>? EvaluationScores { get; set; } /// /// @@ -57,19 +57,19 @@ public sealed partial class ExperimentResultRow /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_metadata")] - public global::System.AnyOf? RunMetadata { get; set; } + public global::G.AnyOf? 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 de9f42df77..a7ac9fc581 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 @@ -21,31 +21,31 @@ public sealed partial class ExperimentResultsUpload /// /// [global::Newtonsoft.Json.JsonProperty("experiment_description")] - public global::System.AnyOf? ExperimentDescription { get; set; } + public global::G.AnyOf? ExperimentDescription { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? DatasetName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_description")] - public global::System.AnyOf? DatasetDescription { get; set; } + public global::G.AnyOf? DatasetDescription { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("summary_experiment_scores")] - public global::System.AnyOf, object>? SummaryExperimentScores { get; set; } + public global::G.AnyOf, object>? SummaryExperimentScores { get; set; } /// /// @@ -69,7 +69,7 @@ public sealed partial class ExperimentResultsUpload /// /// [global::Newtonsoft.Json.JsonProperty("experiment_metadata")] - public global::System.AnyOf? ExperimentMetadata { get; set; } + public global::G.AnyOf? 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 597d3a6fb1..1958a044ea 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 @@ -21,7 +21,7 @@ public sealed partial class FeedbackCategory /// /// [global::Newtonsoft.Json.JsonProperty("label")] - public global::System.AnyOf? Label { get; set; } + public global::G.AnyOf? 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 23b2bdf99e..f5c81f9cfb 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 @@ -21,19 +21,19 @@ public sealed partial class FeedbackConfig /// /// [global::Newtonsoft.Json.JsonProperty("min")] - public global::System.AnyOf? Min { get; set; } + public global::G.AnyOf? Min { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("max")] - public global::System.AnyOf? Max { get; set; } + public global::G.AnyOf? Max { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("categories")] - public global::System.AnyOf, object>? Categories { get; set; } + public global::G.AnyOf, object>? 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 568e998e0b..65ad481ec9 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 @@ -39,7 +39,7 @@ public sealed partial class FeedbackConfigSchema /// /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } + public global::G.AnyOf? 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 276be941f6..e739a49278 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::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// @@ -75,13 +75,13 @@ public sealed partial class FeedbackCreateCoreSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 9e330b9371..9f939ea13d 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::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::System.AnyOf? RunId { get; set; } + public global::G.AnyOf? RunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// @@ -87,13 +87,13 @@ public sealed partial class FeedbackCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 56988fce91..ca449390c1 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::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 02912a690d..4a54203f24 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 @@ -15,13 +15,13 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("expires_in")] - public global::System.AnyOf? ExpiresIn { get; set; } + public global::G.AnyOf? ExpiresIn { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("expires_at")] - public global::System.AnyOf? ExpiresAt { get; set; } + public global::G.AnyOf? ExpiresAt { get; set; } /// /// @@ -39,7 +39,7 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 66b519f617..241549c96f 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::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_group_id")] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_id")] - public global::System.AnyOf? RunId { get; set; } + public global::G.AnyOf? RunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// @@ -87,7 +87,7 @@ public sealed partial class FeedbackSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_source")] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? 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.FeedbackSource4.g.verified.cs index 6aa402f8e8..12f4ffa2d7 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.FeedbackSource4.g.verified.cs @@ -15,19 +15,19 @@ public sealed partial class FeedbackSource4 /// /// [global::Newtonsoft.Json.JsonProperty("type")] - public global::System.AnyOf? Type { get; set; } + public global::G.AnyOf? Type { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? 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 78f64bec2f..545b26da57 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::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("comment")] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("correction")] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 35a02f1af1..5e5b9720e5 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 @@ -15,97 +15,97 @@ public sealed partial class FilterQueryParamsForRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace")] - public global::System.AnyOf? Trace { get; set; } + public global::G.AnyOf? Trace { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run")] - public global::System.AnyOf? ParentRun { get; set; } + public global::G.AnyOf? ParentRun { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session")] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? Session { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example")] - public global::System.AnyOf, object>? ReferenceExample { get; set; } + public global::G.AnyOf, object>? ReferenceExample { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("execution_order")] - public global::System.AnyOf? ExecutionOrder { get; set; } + public global::G.AnyOf? ExecutionOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("query")] - public global::System.AnyOf? Query { get; set; } + public global::G.AnyOf? Query { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_root")] - public global::System.AnyOf? IsRoot { get; set; } + public global::G.AnyOf? IsRoot { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("data_source_type")] - public global::System.AnyOf? DataSourceType { get; set; } + public global::G.AnyOf? 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 20132ae764..a8ef0f62ad 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 @@ -27,7 +27,7 @@ public sealed partial class FilterView /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -39,7 +39,7 @@ public sealed partial class FilterView /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? 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 481635d7eb..3ca87fbfa2 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 @@ -27,7 +27,7 @@ public sealed partial class FilterViewCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 86ad82b64f..fba21c8a4c 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 @@ -15,19 +15,19 @@ public sealed partial class FilterViewUpdate /// /// [global::Newtonsoft.Json.JsonProperty("filter_string")] - public global::System.AnyOf? FilterString { get; set; } + public global::G.AnyOf? FilterString { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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.ForkRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ForkRepoRequest.g.verified.cs index 1d3c043ec6..a355af88a4 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 @@ -21,25 +21,25 @@ public sealed partial class ForkRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_public")] - public global::System.AnyOf? IsPublic { get; set; } + public global::G.AnyOf? 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 fd7234b066..0139a7d846 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 @@ -15,7 +15,7 @@ public sealed partial class GenerateSyntheticExamplesBody /// /// [global::Newtonsoft.Json.JsonProperty("example_ids")] - public global::System.AnyOf, object>? ExampleIds { get; set; } + public global::G.AnyOf, object>? 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 e94c29174b..ab0dce480b 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 @@ -27,7 +27,7 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -57,19 +57,19 @@ public sealed partial class Identity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// Additional properties that are not explicitly defined in the schema 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 1c28d23d2f..3026dc70af 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 @@ -15,13 +15,13 @@ public sealed partial class IdentityAnnotationQueueRunStatusCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("status")] - public global::System.AnyOf? Status { get; set; } + public global::G.AnyOf? Status { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("override_added_at")] - public global::System.AnyOf? OverrideAddedAt { get; set; } + public global::G.AnyOf? 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 c7e3fbfd3e..9103bbead1 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 @@ -21,13 +21,13 @@ public sealed partial class IdentityCreate /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? ReadOnly { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? 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 84a1bc5a00..99b14f6873 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 @@ -15,7 +15,7 @@ public sealed partial class IdentityPatch /// /// [global::Newtonsoft.Json.JsonProperty("read_only")] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? 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 e3a749ea1b..40a75468c5 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 @@ -21,7 +21,7 @@ public sealed partial class InfoGetResponse /// /// [global::Newtonsoft.Json.JsonProperty("license_expiration_time")] - public global::System.AnyOf? LicenseExpirationTime { get; set; } + public global::G.AnyOf? 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 9380faa302..8635df4513 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 @@ -27,7 +27,7 @@ public sealed partial class ListPublicDatasetRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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 1f74c1e394..1432f2aa49 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 @@ -27,7 +27,7 @@ public sealed partial class ListPublicRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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.ListRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ListRunsResponse.g.verified.cs index 15d789707c..f9c36689aa 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 @@ -27,7 +27,7 @@ public sealed partial class ListRunsResponse /// /// [global::Newtonsoft.Json.JsonProperty("parsed_query")] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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 1029d9edac..55683fdb28 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 @@ -27,7 +27,7 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -57,37 +57,37 @@ public sealed partial class MemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? Email { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? 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 4cfb8f32f2..6e599e5565 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 @@ -21,7 +21,7 @@ public sealed partial class ModelFeedbackSource /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 08f2e908dd..a430c9c830 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::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -39,19 +39,19 @@ public sealed partial class ModelPriceMapCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf PromptCost { get; set; } = default!; + public global::G.AnyOf PromptCost { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf CompletionCost { get; set; } = default!; + public global::G.AnyOf CompletionCost { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("provider")] - public global::System.AnyOf? Provider { get; set; } + public global::G.AnyOf? 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 485907985e..476b48ae63 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::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -39,19 +39,19 @@ public sealed partial class ModelPriceMapUpdateSchema /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf PromptCost { get; set; } = default!; + public global::G.AnyOf PromptCost { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf CompletionCost { get; set; } = default!; + public global::G.AnyOf CompletionCost { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("provider")] - public global::System.AnyOf? Provider { get; set; } + public global::G.AnyOf? 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 c305865d41..8aa4f1296a 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 @@ -33,7 +33,7 @@ public sealed partial class MonitorBlock /// /// [global::Newtonsoft.Json.JsonProperty("subtitle")] - public global::System.AnyOf? Subtitle { get; set; } + public global::G.AnyOf? Subtitle { get; set; } /// /// @@ -51,13 +51,13 @@ public sealed partial class MonitorBlock /// /// [global::Newtonsoft.Json.JsonProperty("click_target")] - public global::System.AnyOf? ClickTarget { get; set; } + public global::G.AnyOf? ClickTarget { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("toggleable_marks")] - public global::System.AnyOf? ToggleableMarks { get; set; } + public global::G.AnyOf? 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 933b96bb8f..8758a90b7d 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 @@ -21,13 +21,13 @@ public sealed partial class MonitorGroupSpec /// /// [global::Newtonsoft.Json.JsonProperty("tag")] - public global::System.AnyOf? Tag { get; set; } + public global::G.AnyOf? Tag { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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.MonitorRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorRequest.g.verified.cs index 8467b1febc..b0ac83d552 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.MonitorRequest.g.verified.cs @@ -27,13 +27,13 @@ public sealed partial class MonitorRequest /// /// [global::Newtonsoft.Json.JsonProperty("interval")] - public global::System.AllOf? Interval { get; set; } + public global::G.AllOf? Interval { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("stride")] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { get; set; } /// /// 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 c881539b76..037fbc089f 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 @@ -15,19 +15,19 @@ public sealed partial class OrgIdentityPatch /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? 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 f3b3d1d9ae..d4bb8a60db 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 @@ -27,7 +27,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -57,37 +57,37 @@ public sealed partial class OrgMemberIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? Email { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? AvatarUrl { get; set; } /// /// 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 a0a9639cc1..0b8384e732 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 @@ -27,37 +27,37 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// Default Value: workspace /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// @@ -69,19 +69,19 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -93,7 +93,7 @@ public sealed partial class OrgPendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// 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 b74b5274c1..35cc8382e4 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 @@ -15,13 +15,13 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -51,13 +51,13 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("payment_method")] - public global::System.AnyOf? PaymentMethod { get; set; } + public global::G.AnyOf? PaymentMethod { get; set; } /// /// @@ -69,19 +69,19 @@ public sealed partial class Organization /// /// [global::Newtonsoft.Json.JsonProperty("end_of_billing_period")] - public global::System.AnyOf? EndOfBillingPeriod { get; set; } + public global::G.AnyOf? EndOfBillingPeriod { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("current_plan")] - public global::System.AnyOf? CurrentPlan { get; set; } + public global::G.AnyOf? CurrentPlan { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upcoming_plan")] - public global::System.AnyOf? UpcomingPlan { get; set; } + public global::G.AnyOf? 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 b0282267a0..d5c71680de 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 @@ -15,7 +15,7 @@ public sealed partial class OrganizationBillingInfo /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// @@ -51,31 +51,31 @@ public sealed partial class OrganizationBillingInfo /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("payment_method")] - public global::System.AnyOf? PaymentMethod { get; set; } + public global::G.AnyOf? PaymentMethod { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_of_billing_period")] - public global::System.AnyOf? EndOfBillingPeriod { get; set; } + public global::G.AnyOf? EndOfBillingPeriod { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("current_plan")] - public global::System.AnyOf? CurrentPlan { get; set; } + public global::G.AnyOf? CurrentPlan { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upcoming_plan")] - public global::System.AnyOf? UpcomingPlan { get; set; } + public global::G.AnyOf? 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 39d7af1ca4..6aa3f93962 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 @@ -39,19 +39,19 @@ public sealed partial class OrganizationConfig /// /// [global::Newtonsoft.Json.JsonProperty("startup_plan_approval_date")] - public global::System.AnyOf? StartupPlanApprovalDate { get; set; } + public global::G.AnyOf? StartupPlanApprovalDate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("partner_plan_approval_date")] - public global::System.AnyOf? PartnerPlanApprovalDate { get; set; } + public global::G.AnyOf? PartnerPlanApprovalDate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("premier_plan_approval_date")] - public global::System.AnyOf? PremierPlanApprovalDate { get; set; } + public global::G.AnyOf? 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 468b32b38f..b933976f9e 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 @@ -15,13 +15,13 @@ public sealed partial class OrganizationInfo /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("display_name")] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -39,7 +39,7 @@ public sealed partial class OrganizationInfo /// /// [global::Newtonsoft.Json.JsonProperty("tier")] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// Default Value: false 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 ff871dab7a..5fd1629ae3 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 @@ -27,19 +27,19 @@ public sealed partial class OrganizationPGSchemaSlim /// /// [global::Newtonsoft.Json.JsonProperty("created_at")] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("created_by_user_id")] - public global::System.AnyOf? CreatedByUserId { get; set; } + public global::G.AnyOf? CreatedByUserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? ModifiedAt { get; set; } /// /// 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 0b92856df1..ba38282138 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 @@ -27,37 +27,37 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// Default Value: workspace /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// @@ -69,19 +69,19 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("user_id")] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -93,7 +93,7 @@ public sealed partial class PendingIdentity /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? 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 0b321b4004..f15073ad17 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 @@ -27,31 +27,31 @@ public sealed partial class PendingIdentityCreate /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_ids")] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("workspace_role_id")] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? 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.PlaygroundSettingsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs index 091d36c17a..be2faff81b 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 @@ -21,7 +21,7 @@ public sealed partial class PlaygroundSettingsCreateRequest /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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 1e8ea627e6..32768046b5 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 @@ -27,7 +27,7 @@ public sealed partial class PlaygroundSettingsResponse /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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 d35c7120d9..c4efe049df 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 @@ -15,7 +15,7 @@ public sealed partial class PlaygroundSettingsUpdateRequest /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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.PublicComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.PublicComparativeExperiment.g.verified.cs index 436f84f1f4..04ae063db9 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 @@ -21,13 +21,13 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -57,7 +57,7 @@ public sealed partial class PublicComparativeExperiment /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? 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 2fd6dfef19..4bd17e6b42 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 @@ -15,7 +15,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -27,13 +27,13 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("source_run_id")] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -63,7 +63,7 @@ public sealed partial class PublicExampleWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("modified_at")] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 4eb8db3330..dc5dd0211c 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 @@ -21,13 +21,13 @@ public sealed partial class QueryExampleSchemaWithRuns /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? 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 b525f4c695..21af2a3614 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 @@ -33,7 +33,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::Newtonsoft.Json.JsonProperty("filters")] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Default Value: 0 @@ -51,7 +51,7 @@ public sealed partial class QueryFeedbackDelta /// /// [global::Newtonsoft.Json.JsonProperty("comparative_experiment_id")] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? 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 b1f8019094..39255e4a07 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 @@ -15,7 +15,7 @@ public sealed partial class QueryParamsForPublicRunSchema /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? 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 4cc0deb8b8..c6b3256c39 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 @@ -21,19 +21,19 @@ public sealed partial class RepoExampleResponse /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? 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 a4c93bc5dc..09e4c0d49d 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 @@ -21,13 +21,13 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// @@ -75,19 +75,19 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("original_repo_id")] - public global::System.AnyOf? OriginalRepoId { get; set; } + public global::G.AnyOf? OriginalRepoId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upstream_repo_id")] - public global::System.AnyOf? UpstreamRepoId { get; set; } + public global::G.AnyOf? UpstreamRepoId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("owner", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Owner { get; set; } = default!; + public global::G.AnyOf Owner { get; set; } = default!; /// /// @@ -117,13 +117,13 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("liked_by_auth_user")] - public global::System.AnyOf? LikedByAuthUser { get; set; } + public global::G.AnyOf? LikedByAuthUser { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_commit_hash")] - public global::System.AnyOf? LastCommitHash { get; set; } + public global::G.AnyOf? LastCommitHash { get; set; } /// /// @@ -135,13 +135,13 @@ public sealed partial class RepoWithLookups /// /// [global::Newtonsoft.Json.JsonProperty("original_repo_full_name")] - public global::System.AnyOf? OriginalRepoFullName { get; set; } + public global::G.AnyOf? OriginalRepoFullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("upstream_repo_full_name")] - public global::System.AnyOf? UpstreamRepoFullName { get; set; } + public global::G.AnyOf? UpstreamRepoFullName { 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 e953494c3c..74e38f6c42 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 @@ -39,7 +39,7 @@ public sealed partial class Role /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class Role /// /// [global::Newtonsoft.Json.JsonProperty("access_scope")] - public global::System.AnyOf? AccessScope { get; set; } + public global::G.AnyOf? 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 5b88907b74..dbe7fd7cc5 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 @@ -21,7 +21,7 @@ public sealed partial class RuleLogActionResponse /// /// [global::Newtonsoft.Json.JsonProperty("payload")] - public global::System.AnyOf? Payload { get; set; } + public global::G.AnyOf? 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 b5448adc34..ef180806a3 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 @@ -27,19 +27,19 @@ public sealed partial class RuleLogSchema /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_session_id")] - public global::System.AnyOf? RunSessionId { get; set; } + public global::G.AnyOf? RunSessionId { get; set; } /// /// @@ -57,31 +57,31 @@ public sealed partial class RuleLogSchema /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue")] - public global::System.AnyOf? AddToAnnotationQueue { get; set; } + public global::G.AnyOf? AddToAnnotationQueue { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset")] - public global::System.AnyOf? AddToDataset { get; set; } + public global::G.AnyOf? AddToDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::System.AnyOf? Evaluators { get; set; } + public global::G.AnyOf? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::System.AnyOf? Alerts { get; set; } + public global::G.AnyOf? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks")] - public global::System.AnyOf? Webhooks { get; set; } + public global::G.AnyOf? 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 716fd460de..ece086292b 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 @@ -27,19 +27,19 @@ public sealed partial class RunGroupRequest /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("start_time")] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? 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 8629cdf6bc..498c49f782 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 @@ -21,97 +21,97 @@ public sealed partial class RunGroupStats /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("median_tokens")] - public global::System.AnyOf? MedianTokens { get; set; } + public global::G.AnyOf? MedianTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// 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 d8888ef96a..79ad1de566 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 @@ -21,13 +21,13 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +45,19 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +69,67 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -159,31 +159,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +207,31 @@ public sealed partial class RunPublicDatasetSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// 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 be12cbf32f..4186263731 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 @@ -21,13 +21,13 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +45,19 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +69,67 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -159,31 +159,31 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +207,31 @@ public sealed partial class RunPublicSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? 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.RunRulesCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunRulesCreateSchema.g.verified.cs index 848bac048b..9784fb61c3 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 @@ -21,7 +21,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// Default Value: true @@ -33,7 +33,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// @@ -45,25 +45,25 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("backfill_from")] - public global::System.AnyOf? BackfillFrom { get; set; } + public global::G.AnyOf? BackfillFrom { get; set; } /// /// Default Value: false @@ -75,7 +75,7 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("num_few_shot_examples")] - public global::System.AnyOf? NumFewShotExamples { get; set; } + public global::G.AnyOf? NumFewShotExamples { get; set; } /// /// Default Value: false @@ -87,13 +87,13 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_id")] - public global::System.AnyOf? AddToAnnotationQueueId { get; set; } + public global::G.AnyOf? AddToAnnotationQueueId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_id")] - public global::System.AnyOf? AddToDatasetId { get; set; } + public global::G.AnyOf? AddToDatasetId { get; set; } /// /// Default Value: false @@ -105,19 +105,19 @@ public sealed partial class RunRulesCreateSchema /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::System.AnyOf, object>? Evaluators { get; set; } + public global::G.AnyOf, object>? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::System.AnyOf, object>? Alerts { get; set; } + public global::G.AnyOf, object>? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks")] - public global::System.AnyOf, object>? Webhooks { get; set; } + public global::G.AnyOf, object>? 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 e44df3e444..99ea3a6776 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 @@ -15,7 +15,7 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// Default Value: pagerduty /// [global::Newtonsoft.Json.JsonProperty("type")] - public global::System.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; + public global::G.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; /// /// @@ -27,13 +27,13 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// /// [global::Newtonsoft.Json.JsonProperty("summary")] - public global::System.AnyOf? Summary { get; set; } + public global::G.AnyOf? Summary { get; set; } /// /// Default Value: warning /// [global::Newtonsoft.Json.JsonProperty("severity")] - public global::System.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; + public global::G.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; /// /// 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 aea0d86dd6..f33360d651 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 @@ -33,25 +33,25 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::System.AnyOf? SessionName { get; set; } + public global::G.AnyOf? SessionName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_id")] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? DatasetName { get; set; } /// /// @@ -69,43 +69,43 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("filter")] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_filter")] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tree_filter")] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_id")] - public global::System.AnyOf? AddToAnnotationQueueId { get; set; } + public global::G.AnyOf? AddToAnnotationQueueId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_annotation_queue_name")] - public global::System.AnyOf? AddToAnnotationQueueName { get; set; } + public global::G.AnyOf? AddToAnnotationQueueName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_id")] - public global::System.AnyOf? AddToDatasetId { get; set; } + public global::G.AnyOf? AddToDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("add_to_dataset_name")] - public global::System.AnyOf? AddToDatasetName { get; set; } + public global::G.AnyOf? AddToDatasetName { get; set; } /// /// Default Value: false @@ -117,7 +117,7 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("corrections_dataset_id")] - public global::System.AnyOf? CorrectionsDatasetId { get; set; } + public global::G.AnyOf? CorrectionsDatasetId { get; set; } /// /// Default Value: false @@ -129,25 +129,25 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("num_few_shot_examples")] - public global::System.AnyOf? NumFewShotExamples { get; set; } + public global::G.AnyOf? NumFewShotExamples { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("evaluators")] - public global::System.AnyOf, object>? Evaluators { get; set; } + public global::G.AnyOf, object>? Evaluators { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("alerts")] - public global::System.AnyOf, object>? Alerts { get; set; } + public global::G.AnyOf, object>? Alerts { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("webhooks", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf, object> Webhooks { get; set; } = default!; + public global::G.AnyOf, object> Webhooks { get; set; } = default!; /// /// Default Value: false @@ -171,7 +171,7 @@ public sealed partial class RunRulesSchema /// /// [global::Newtonsoft.Json.JsonProperty("backfill_from")] - public global::System.AnyOf? BackfillFrom { get; set; } + public global::G.AnyOf? 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 0c2a75ab48..bd2a5aff73 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 @@ -21,7 +21,7 @@ public sealed partial class RunRulesWebhookSchema /// /// [global::Newtonsoft.Json.JsonProperty("headers")] - public global::System.AnyOf? Headers { get; set; } + public global::G.AnyOf? 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 625c2648a6..81e0036675 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 @@ -21,13 +21,13 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +45,19 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +69,67 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -159,31 +159,31 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +207,31 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// @@ -249,37 +249,37 @@ public sealed partial class RunSchema /// /// [global::Newtonsoft.Json.JsonProperty("last_queued_at")] - public global::System.AnyOf? LastQueuedAt { get; set; } + public global::G.AnyOf? LastQueuedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("in_dataset")] - public global::System.AnyOf? InDataset { get; set; } + public global::G.AnyOf? InDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("share_token")] - public global::System.AnyOf? ShareToken { get; set; } + public global::G.AnyOf? ShareToken { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_first_received_at")] - public global::System.AnyOf? TraceFirstReceivedAt { get; set; } + public global::G.AnyOf? TraceFirstReceivedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("ttl_seconds")] - public global::System.AnyOf? TtlSeconds { get; set; } + public global::G.AnyOf? 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 a8a2902d8b..3440c902f7 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 @@ -21,13 +21,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +45,19 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +69,67 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -141,7 +141,7 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::System.AnyOf? DottedOrder { get; set; } + public global::G.AnyOf? DottedOrder { get; set; } /// /// @@ -159,43 +159,43 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// @@ -207,13 +207,13 @@ public sealed partial class RunSchemaComparisonView /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("app_path")] - public global::System.AnyOf? AppPath { get; set; } + public global::G.AnyOf? 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.RunSchemaWithAnnotationQueueInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs index 7c2233562c..df8cf0f3a8 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 @@ -21,13 +21,13 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_preview")] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -45,19 +45,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -69,67 +69,67 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("serialized")] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_preview")] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_id")] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("manifest_s3_id")] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs_s3_urls")] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs_s3_urls")] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("s3_urls")] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -159,31 +159,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("child_run_ids")] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("direct_child_run_ids")] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_ids")] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_example_id")] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -207,31 +207,31 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("price_model_id")] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_time")] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// @@ -249,37 +249,37 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("last_queued_at")] - public global::System.AnyOf? LastQueuedAt { get; set; } + public global::G.AnyOf? LastQueuedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("in_dataset")] - public global::System.AnyOf? InDataset { get; set; } + public global::G.AnyOf? InDataset { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("share_token")] - public global::System.AnyOf? ShareToken { get; set; } + public global::G.AnyOf? ShareToken { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_first_received_at")] - public global::System.AnyOf? TraceFirstReceivedAt { get; set; } + public global::G.AnyOf? TraceFirstReceivedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("ttl_seconds")] - public global::System.AnyOf? TtlSeconds { get; set; } + public global::G.AnyOf? TtlSeconds { get; set; } /// /// Default Value: false @@ -297,19 +297,19 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// /// [global::Newtonsoft.Json.JsonProperty("last_reviewed_time")] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? LastReviewedTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("added_at")] - public global::System.AnyOf? AddedAt { get; set; } + public global::G.AnyOf? AddedAt { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("effective_added_at")] - public global::System.AnyOf? EffectiveAddedAt { get; set; } + public global::G.AnyOf? 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.RunStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.RunStats.g.verified.cs index 7a8cb8088f..cca45e0280 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 @@ -21,97 +21,97 @@ public sealed partial class RunStats /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("median_tokens")] - public global::System.AnyOf? MedianTokens { get; set; } + public global::G.AnyOf? MedianTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? 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.SearchedFewShotExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.SearchedFewShotExample.g.verified.cs index edc08495f5..2cbf03c540 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 @@ -33,7 +33,7 @@ public sealed partial class SearchedFewShotExample /// /// [global::Newtonsoft.Json.JsonProperty("debug_info")] - public global::System.AnyOf? DebugInfo { get; set; } + public global::G.AnyOf? 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 91bd795f98..bfd0bb717f 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 @@ -21,7 +21,7 @@ public sealed partial class SecretUpsert /// /// [global::Newtonsoft.Json.JsonProperty("value", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.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.ServiceAccount.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ServiceAccount.g.verified.cs index da3c814cae..9d5871dcec 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 @@ -45,7 +45,7 @@ public sealed partial class ServiceAccount /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::G.AnyOf 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 066df136c7..cf9cb129e8 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 @@ -45,7 +45,7 @@ public sealed partial class ServiceAccountCreateResponse /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::G.AnyOf 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 155b300e78..2ffc6d9abd 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 @@ -45,7 +45,7 @@ public sealed partial class ServiceAccountDeleteResponse /// /// [global::Newtonsoft.Json.JsonProperty("default_workspace_id", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf DefaultWorkspaceId { get; set; } = default!; + public global::G.AnyOf 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 9aca495c2c..435208d956 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 @@ -33,13 +33,13 @@ public sealed partial class SingleCustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("metadata")] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -63,7 +63,7 @@ public sealed partial class SingleCustomChartResponse /// /// [global::Newtonsoft.Json.JsonProperty("common_filters")] - public global::System.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.StripeBusinessBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs index b738928012..55203dbc45 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 @@ -21,7 +21,7 @@ public sealed partial class StripeBusinessBillingInfo /// /// [global::Newtonsoft.Json.JsonProperty("address")] - public global::System.AnyOf? Address { get; set; } + public global::G.AnyOf? 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 2c6f809a6b..0d99878169 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 @@ -15,19 +15,19 @@ public sealed partial class StripeBusinessInfoInput /// /// [global::Newtonsoft.Json.JsonProperty("company_info")] - public global::System.AnyOf? CompanyInfo { get; set; } + public global::G.AnyOf? CompanyInfo { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tax_id")] - public global::System.AnyOf? TaxId { get; set; } + public global::G.AnyOf? TaxId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("invoice_email")] - public global::System.AnyOf? InvoiceEmail { get; set; } + public global::G.AnyOf? 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 eccdcd74d8..fc16a9c50c 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 @@ -15,19 +15,19 @@ public sealed partial class StripeBusinessInfoOutput /// /// [global::Newtonsoft.Json.JsonProperty("company_info")] - public global::System.AnyOf? CompanyInfo { get; set; } + public global::G.AnyOf? CompanyInfo { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tax_id")] - public global::System.AnyOf? TaxId { get; set; } + public global::G.AnyOf? TaxId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("invoice_email")] - public global::System.AnyOf? InvoiceEmail { get; set; } + public global::G.AnyOf? 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 6199980d19..03da8f8abf 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 @@ -21,7 +21,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::Newtonsoft.Json.JsonProperty("line2")] - public global::System.AnyOf? Line2 { get; set; } + public global::G.AnyOf? Line2 { get; set; } /// /// @@ -33,7 +33,7 @@ public sealed partial class StripeCustomerAddress /// /// [global::Newtonsoft.Json.JsonProperty("state")] - public global::System.AnyOf? State { get; set; } + public global::G.AnyOf? 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 431fcd3ba7..19f673a58d 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 @@ -15,31 +15,31 @@ public sealed partial class StripePaymentMethodInfo /// /// [global::Newtonsoft.Json.JsonProperty("brand")] - public global::System.AnyOf? Brand { get; set; } + public global::G.AnyOf? Brand { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last4")] - public global::System.AnyOf? Last4 { get; set; } + public global::G.AnyOf? Last4 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("exp_month")] - public global::System.AnyOf? ExpMonth { get; set; } + public global::G.AnyOf? ExpMonth { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("exp_year")] - public global::System.AnyOf? ExpYear { get; set; } + public global::G.AnyOf? ExpYear { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("email")] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? 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 01a581f2b4..a8277ffd9f 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 @@ -15,7 +15,7 @@ public sealed partial class TTLSettings /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// 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 17f64c39d3..e01dd1eaed 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 @@ -21,7 +21,7 @@ public sealed partial class TagKey /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 16f5f96291..14b5222ef9 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 @@ -21,7 +21,7 @@ public sealed partial class TagKeyCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 f053ea392a..4539efbf65 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 @@ -15,13 +15,13 @@ public sealed partial class TagKeyUpdate /// /// [global::Newtonsoft.Json.JsonProperty("key")] - public global::System.AnyOf? Key { get; set; } + public global::G.AnyOf? Key { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 401837d29d..8d947b9091 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 @@ -21,7 +21,7 @@ public sealed partial class TagKeyWithValues /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 89b757b2b6..6fd5611ca8 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 @@ -21,7 +21,7 @@ public sealed partial class TagKeyWithValuesAndTaggings /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 5b7ed0ad0f..9e1d7544b7 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 @@ -21,7 +21,7 @@ public sealed partial class TagValue /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 0abac59bfb..c7ef8ce728 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 @@ -21,7 +21,7 @@ public sealed partial class TagValueCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 7080b93438..e7c4bbca73 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 @@ -15,13 +15,13 @@ public sealed partial class TagValueUpdate /// /// [global::Newtonsoft.Json.JsonProperty("value")] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 c33600e1fb..e41add3121 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 @@ -21,7 +21,7 @@ public sealed partial class TagValueWithTaggings /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 2611b9c5af..d9f0db82bd 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 @@ -21,7 +21,7 @@ public sealed partial class TenantCreate /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -33,7 +33,7 @@ public sealed partial class TenantCreate /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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.TenantForUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantForUser.g.verified.cs index a8f24d3486..f5d7c42a18 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 @@ -21,7 +21,7 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("organization_id")] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -45,7 +45,7 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? TenantHandle { get; set; } /// /// Default Value: false @@ -57,19 +57,19 @@ public sealed partial class TenantForUser /// /// [global::Newtonsoft.Json.JsonProperty("role_id")] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("role_name")] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("permissions")] - public global::System.AnyOf, object>? Permissions { get; set; } + public global::G.AnyOf, object>? 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 c10b83c91e..dc497f7176 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 @@ -39,7 +39,7 @@ public sealed partial class TenantShareDatasetToken /// /// [global::Newtonsoft.Json.JsonProperty("dataset_name")] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? 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 33d3c1ad3c..c4e2adfe1c 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 @@ -39,25 +39,25 @@ public sealed partial class TenantShareRunToken /// /// [global::Newtonsoft.Json.JsonProperty("run_name")] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_type")] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_id")] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_name")] - public global::System.AnyOf? SessionName { get; set; } + public global::G.AnyOf? 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.TenantShareTokensResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareTokensResponse.g.verified.cs index 3d2bb12c63..86945efaa8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareTokensResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantShareTokensResponse.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class TenantShareTokensResponse /// /// [global::Newtonsoft.Json.JsonProperty("entities", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Entities { get; set; } = default!; + public global::System.Collections.Generic.IList> Entities { 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.TenantUsageLimitInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TenantUsageLimitInfo.g.verified.cs index e4d83615ad..53ff1fcb75 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 @@ -21,13 +21,13 @@ public sealed partial class TenantUsageLimitInfo /// /// [global::Newtonsoft.Json.JsonProperty("usage_limit_type")] - public global::System.AnyOf? UsageLimitType { get; set; } + public global::G.AnyOf? UsageLimitType { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tenant_limit")] - public global::System.AnyOf? TenantLimit { get; set; } + public global::G.AnyOf? 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.TracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSession.g.verified.cs index a4e4014f71..da261665c1 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 @@ -21,13 +21,13 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -39,25 +39,25 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// @@ -69,67 +69,67 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("run_count")] - public global::System.AnyOf? RunCount { get; set; } + public global::G.AnyOf? RunCount { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p50")] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("latency_p99")] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p50")] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("first_token_p99")] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_tokens")] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_tokens")] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_tokens")] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("total_cost")] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("prompt_cost")] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("completion_cost")] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// @@ -141,49 +141,49 @@ public sealed partial class TracerSession /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time")] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time_live")] - public global::System.AnyOf? LastRunStartTimeLive { get; set; } + public global::G.AnyOf? LastRunStartTimeLive { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("feedback_stats")] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("session_feedback_stats")] - public global::System.AnyOf? SessionFeedbackStats { get; set; } + public global::G.AnyOf? SessionFeedbackStats { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("run_facets")] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error_rate")] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("streaming_rate")] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("test_run_number")] - public global::System.AnyOf? TestRunNumber { get; set; } + public global::G.AnyOf? 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 cd11c3173c..e8df1120c9 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 @@ -21,13 +21,13 @@ public sealed partial class TracerSessionCreate /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -39,31 +39,31 @@ public sealed partial class TracerSessionCreate /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("id")] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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.TracerSessionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.TracerSessionUpdate.g.verified.cs index 2e4172aa5b..7894563335 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 @@ -15,37 +15,37 @@ public sealed partial class TracerSessionUpdate /// /// [global::Newtonsoft.Json.JsonProperty("name")] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? 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 cd8afb6722..933755811f 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 @@ -21,13 +21,13 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -39,25 +39,25 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("default_dataset_id")] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("reference_dataset_id")] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("trace_tier")] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// @@ -75,7 +75,7 @@ public sealed partial class TracerSessionWithoutVirtualFields /// /// [global::Newtonsoft.Json.JsonProperty("last_run_start_time_live")] - public global::System.AnyOf? LastRunStartTimeLive { get; set; } + public global::G.AnyOf? 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.UpdateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs index 6321780134..becad256f2 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 @@ -21,13 +21,13 @@ public sealed partial class UpdateFeedbackConfigSchema /// /// [global::Newtonsoft.Json.JsonProperty("feedback_config")] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? FeedbackConfig { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_lower_score_better")] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } + public global::G.AnyOf? 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 d736910633..7c2d900467 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 @@ -15,31 +15,31 @@ public sealed partial class UpdateRepoRequest /// /// [global::Newtonsoft.Json.JsonProperty("description")] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("readme")] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_public")] - public global::System.AnyOf? IsPublic { get; set; } + public global::G.AnyOf? IsPublic { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("is_archived")] - public global::System.AnyOf? IsArchived { get; set; } + public global::G.AnyOf? 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 fac3317dbe..5ed16e3d8f 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,73 +15,73 @@ public sealed partial class UpdateRunRequest /// /// [global::Newtonsoft.Json.JsonProperty("trace_id")] - public global::System.OneOf? TraceId { get; set; } + public global::G.OneOf? TraceId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("dotted_order")] - public global::System.OneOf? DottedOrder { get; set; } + public global::G.OneOf? DottedOrder { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("parent_run_id")] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("end_time")] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("error")] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("inputs")] - public global::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("events")] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("tags")] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("extra")] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("input_attachments")] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("output_attachments")] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.UpsertTTLSettingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs index 1dcc9779b3..5ad957c1d6 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 @@ -15,7 +15,7 @@ public sealed partial class UpsertTTLSettingsRequest /// /// [global::Newtonsoft.Json.JsonProperty("tenant_id")] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// 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 75ae3ed388..a5506a2555 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 @@ -21,7 +21,7 @@ public sealed partial class UserWithPassword /// /// [global::Newtonsoft.Json.JsonProperty("ls_user_id")] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -45,19 +45,19 @@ public sealed partial class UserWithPassword /// /// [global::Newtonsoft.Json.JsonProperty("full_name")] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("avatar_url")] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? AvatarUrl { get; set; } /// /// /// [global::Newtonsoft.Json.JsonProperty("password")] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? 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.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs index 829e8b106e..aca8da89d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.Models.ValidationError.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ValidationError /// /// [global::Newtonsoft.Json.JsonProperty("loc", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Loc { get; set; } = default!; + public global::System.Collections.Generic.IList> Loc { get; set; } = default!; /// /// 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 9c19bf9c75..b7785c90f0 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 @@ -27,7 +27,7 @@ public sealed partial class WorkspaceCreate /// /// [global::Newtonsoft.Json.JsonProperty("tenant_handle")] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 e32594f2d9..fc4de20ce7 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 @@ -112,11 +112,11 @@ partial void ProcessAddMemberToCurrentOrgResponseContent( public async global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool readOnly = false, - global::System.AnyOf? roleId = default, - global::System.AnyOf, object>? workspaceIds = default, - global::System.AnyOf? workspaceRoleId = default, - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, + 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.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PendingIdentityCreate 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 bceaa49d8e..723cdb205f 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::System.AnyOf colorScheme); + ref global::G.AnyOf colorScheme); partial void PrepareGetDashboardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::G.OrganizationDashboardType type, - global::System.AnyOf colorScheme); + global::G.AnyOf colorScheme); partial void ProcessGetDashboardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -35,7 +35,7 @@ partial void ProcessGetDashboardResponseContent( /// public async global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::System.AnyOf colorScheme, + global::G.AnyOf colorScheme, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 481057a7ef..e8d0e61d2f 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 @@ -107,9 +107,9 @@ partial void ProcessSetCompanyInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::System.AnyOf? companyInfo = default, - global::System.AnyOf? taxId = default, - global::System.AnyOf? invoiceEmail = default, + global::G.AnyOf? companyInfo = default, + global::G.AnyOf? taxId = default, + global::G.AnyOf? 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 b5cb723af1..3166ad419c 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 @@ -114,9 +114,9 @@ partial void ProcessUpdateCurrentOrgMemberResponseContent( /// public async global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, - global::System.AnyOf? roleId = default, + global::G.AnyOf? password = default, + global::G.AnyOf? fullName = default, + global::G.AnyOf? 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.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs index c217bae31c..a296599760 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 @@ -105,8 +105,8 @@ partial void ProcessUpdateCurrentUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, + global::G.AnyOf? password = default, + global::G.AnyOf? 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.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index 1522f82077..d74f97081a 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 @@ -106,7 +106,7 @@ partial void ProcessCreatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( global::G.PlaygroundSettingsCreateRequestSettings settings, - global::System.AnyOf? name = default, + global::G.AnyOf? 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 737b0141b5..c3348fd4a8 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 @@ -112,7 +112,7 @@ partial void ProcessUpdatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::System.AnyOf? name = default, + global::G.AnyOf? 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.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs index 2daa4a24e6..8e6d56c1f6 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 @@ -137,26 +137,26 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, - global::System.AnyOf? cursor = default, + 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, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AllOf? order = default, + global::G.AllOf? order = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyParamsForRunSchema 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 71a11b41ff..35b3aa0bff 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 @@ -112,7 +112,7 @@ partial void ProcessQuerySharedRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, + global::G.AnyOf, object>? 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 cab8cc1dc2..6db93cc71d 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,21 +9,21 @@ public partial class PublicClient partial void PrepareReadSharedComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadSharedComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadSharedComparativeExperimentsResponse( global::System.Net.Http.HttpClient httpClient, @@ -57,11 +57,11 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs index 41c00b851d..774a6399b0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs @@ -11,7 +11,7 @@ partial void PrepareReadSharedDatasetArguments( ref global::System.Guid shareToken, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadSharedDatasetRequest( global::System.Net.Http.HttpClient httpClient, @@ -19,7 +19,7 @@ partial void PrepareReadSharedDatasetRequest( global::System.Guid shareToken, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadSharedDatasetResponse( global::System.Net.Http.HttpClient httpClient, @@ -53,7 +53,7 @@ partial void ProcessReadSharedDatasetResponseContent( global::System.Guid shareToken, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { 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 5c4c99c524..addb058eb5 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 @@ -32,7 +32,7 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::G.QueryExampleSchemaWithRuns request, global::System.Threading.CancellationToken cancellationToken = default) @@ -98,7 +98,7 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( } return - global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::Newtonsoft.Json.JsonConvert.DeserializeObject, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } @@ -118,11 +118,11 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? filters = default, + global::G.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 37951ee376..ead2707276 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level); + ref global::G.AnyOf, object>? user, + ref global::G.AnyOf? hasComment, + ref global::G.AnyOf? hasScore, + ref global::G.AnyOf? level); partial void PrepareReadSharedDatasetFeedbackRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level); + global::G.AnyOf, object>? user, + global::G.AnyOf? hasComment, + global::G.AnyOf? hasScore, + global::G.AnyOf? level); partial void ProcessReadSharedDatasetFeedbackResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,16 +65,16 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, + global::G.AnyOf, object>? user = default, + global::G.AnyOf? hasComment = default, + global::G.AnyOf? hasScore = default, + global::G.AnyOf? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 33ad90a3c3..1921dcf21b 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::System.AnyOf, object>? id, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? datasetVersion, - ref global::System.AllOf? sortBy, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf? datasetVersion, + ref global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf? sortByFeedbackKey, + ref global::G.AnyOf? sortByFeedbackKey, ref int offset, ref int limit, ref bool facets, - ref global::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadSharedDatasetTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? id, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? datasetVersion, - global::System.AllOf? sortBy, + global::G.AnyOf, object>? id, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf? datasetVersion, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf? sortByFeedbackKey, + global::G.AnyOf? sortByFeedbackKey, int offset, int limit, bool facets, - global::System.AnyOf? accept); + global::G.AnyOf? accept); partial void ProcessReadSharedDatasetTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -74,17 +74,17 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? datasetVersion = default, - global::System.AllOf? sortBy = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf? datasetVersion = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf? sortByFeedbackKey = default, + global::G.AnyOf? sortByFeedbackKey = default, int offset = 0, int limit = 100, bool facets = false, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 0a35f68606..02aeb9e36f 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 @@ -125,10 +125,10 @@ partial void ProcessReadSharedDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::System.AnyOf? filters = default, + global::G.AnyOf? filters = default, int offset = 0, int limit = 100, - global::System.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 110704a22f..1407daeeba 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 @@ -10,24 +10,24 @@ public partial class PublicClient partial void PrepareReadSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? asOf, - ref global::System.AnyOf? metadata, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf? asOf, + ref global::G.AnyOf? metadata, ref int offset, ref int limit, global::System.Collections.Generic.IList? select, - ref global::System.AnyOf? filter); + ref global::G.AnyOf? filter); partial void PrepareReadSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? id, - global::System.AnyOf? asOf, - global::System.AnyOf? metadata, + global::G.AnyOf, object>? id, + global::G.AnyOf? asOf, + global::G.AnyOf? metadata, int offset, int limit, global::System.Collections.Generic.IList? select, - global::System.AnyOf? filter); + global::G.AnyOf? filter); partial void ProcessReadSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -62,13 +62,13 @@ partial void ProcessReadSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? asOf = default, - global::System.AnyOf? metadata = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf? asOf = default, + global::G.AnyOf? metadata = default, int offset = 0, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AnyOf? filter = default, + global::G.AnyOf? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 9cffcc7210..8401dbefa9 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level); + ref global::G.AnyOf, object>? user, + ref global::G.AnyOf? hasComment, + ref global::G.AnyOf? hasScore, + ref global::G.AnyOf? level); partial void PrepareReadSharedFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level); + global::G.AnyOf, object>? user, + global::G.AnyOf? hasComment, + global::G.AnyOf? hasScore, + global::G.AnyOf? level); partial void ProcessReadSharedFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -64,16 +64,16 @@ partial void ProcessReadSharedFeedbacksResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, + global::G.AnyOf, object>? user = default, + global::G.AnyOf? hasComment = default, + global::G.AnyOf? hasScore = default, + global::G.AnyOf? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 eaeafd6f11..7a5a08cad1 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 @@ -127,22 +127,22 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, + 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.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 1864eff23b..d04c9f2b73 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 @@ -110,9 +110,9 @@ partial void ProcessCreateRepoResponseContent( public async global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::System.AnyOf? description = default, - global::System.AnyOf? readme = default, - global::System.AnyOf, object>? tags = default, + global::G.AnyOf? description = default, + global::G.AnyOf? readme = default, + global::G.AnyOf, object>? 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 8e3be72344..c31828bc83 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 @@ -125,10 +125,10 @@ partial void ProcessForkRepoResponseContent( string owner, string repo, string repoHandle, - global::System.AnyOf? readme = default, - global::System.AnyOf? description = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isPublic = default, + global::G.AnyOf? readme = default, + global::G.AnyOf? description = default, + global::G.AnyOf, object>? tags = default, + global::G.AnyOf? 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 543fa42079..de82ef7243 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::System.AnyOf? tenantHandle, - ref global::System.AnyOf? tenantId, - ref global::System.AnyOf? query, - ref global::System.AnyOf? hasCommits, - ref global::System.AnyOf, object>? tags, - ref global::System.AnyOf? isArchived, - ref global::System.AnyOf? isPublic, - ref global::System.AnyOf? upstreamRepoOwner, - ref global::System.AnyOf? upstreamRepoHandle, - ref global::System.AnyOf? matchPrefix, - ref global::System.AnyOf, object>? tagValueId); + 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); partial void PrepareListRepoTagsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? tenantHandle, - global::System.AnyOf? tenantId, - global::System.AnyOf? query, - global::System.AnyOf? hasCommits, - global::System.AnyOf, object>? tags, - global::System.AnyOf? isArchived, - global::System.AnyOf? isPublic, - global::System.AnyOf? upstreamRepoOwner, - global::System.AnyOf? upstreamRepoHandle, - global::System.AnyOf? matchPrefix, - global::System.AnyOf, object>? tagValueId); + 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); 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::System.AnyOf? tenantHandle = default, - global::System.AnyOf? tenantId = default, - global::System.AnyOf? query = default, - global::System.AnyOf? hasCommits = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isArchived = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? upstreamRepoOwner = default, - global::System.AnyOf? upstreamRepoHandle = default, - global::System.AnyOf? matchPrefix = default, - global::System.AnyOf, object>? tagValueId = default, + 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::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 163c0cbbe2..8003964e39 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 @@ -10,37 +10,37 @@ partial void PrepareListReposArguments( global::System.Net.Http.HttpClient httpClient, ref int limit, ref int offset, - ref global::System.AnyOf? tenantHandle, - ref global::System.AnyOf? tenantId, - ref global::System.AnyOf? query, - ref global::System.AnyOf? hasCommits, - ref global::System.AnyOf, object>? tags, - ref global::System.AnyOf? isArchived, - ref global::System.AnyOf? isPublic, - ref global::System.AnyOf? upstreamRepoOwner, - ref global::System.AnyOf? upstreamRepoHandle, - ref global::System.AnyOf? matchPrefix, - ref global::System.AnyOf, object>? tagValueId, - ref global::System.AnyOf? sortField, - ref global::System.AnyOf? sortDirection); + 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); partial void PrepareListReposRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? tenantHandle, - global::System.AnyOf? tenantId, - global::System.AnyOf? query, - global::System.AnyOf? hasCommits, - global::System.AnyOf, object>? tags, - global::System.AnyOf? isArchived, - global::System.AnyOf? isPublic, - global::System.AnyOf? upstreamRepoOwner, - global::System.AnyOf? upstreamRepoHandle, - global::System.AnyOf? matchPrefix, - global::System.AnyOf, object>? tagValueId, - global::System.AnyOf? sortField, - global::System.AnyOf? sortDirection); + 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); partial void ProcessListReposResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -80,19 +80,19 @@ partial void ProcessListReposResponseContent( public async global::System.Threading.Tasks.Task ListReposAsync( int limit = 20, int offset = 0, - global::System.AnyOf? tenantHandle = default, - global::System.AnyOf? tenantId = default, - global::System.AnyOf? query = default, - global::System.AnyOf? hasCommits = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isArchived = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? upstreamRepoOwner = default, - global::System.AnyOf? upstreamRepoHandle = default, - global::System.AnyOf? matchPrefix = default, - global::System.AnyOf, object>? tagValueId = default, - global::System.AnyOf? sortField = default, - global::System.AnyOf? sortDirection = default, + 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, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 14ef2ea44c..2469d1e162 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 @@ -124,11 +124,11 @@ partial void ProcessUpdateRepoResponseContent( public async global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::System.AnyOf? description = default, - global::System.AnyOf? readme = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? isArchived = default, + 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, 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 41a34633f9..2d2df27c12 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 @@ -131,22 +131,22 @@ partial void ProcessCreateRuleResponseContent( public async global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? sessionId = default, bool isEnabled = true, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? backfillFrom = default, + 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, bool useCorrectionsDataset = false, - global::System.AnyOf? numFewShotExamples = default, + global::G.AnyOf? numFewShotExamples = default, bool extendOnly = false, - global::System.AnyOf? addToAnnotationQueueId = default, - global::System.AnyOf? addToDatasetId = default, + global::G.AnyOf? addToAnnotationQueueId = default, + global::G.AnyOf? addToDatasetId = default, bool addToDatasetPreferCorrection = false, - global::System.AnyOf, object>? evaluators = default, - global::System.AnyOf, object>? alerts = default, - global::System.AnyOf, object>? webhooks = default, + global::G.AnyOf, object>? evaluators = default, + global::G.AnyOf, object>? alerts = default, + global::G.AnyOf, object>? 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 fcbb6d22d8..0e082c0707 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 @@ -125,24 +125,24 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::System.OneOf? inputs = default, - global::System.OneOf? startTime = default, - global::System.OneOf? endTime = default, - global::System.OneOf? extra = default, - global::System.OneOf? error = default, - global::System.OneOf? serialized = default, - global::System.OneOf? outputs = default, - global::System.OneOf? parentRunId = default, - global::System.OneOf, object>? events = default, - global::System.OneOf, object>? tags = default, - global::System.OneOf? traceId = default, - global::System.OneOf? dottedOrder = default, - global::System.OneOf? id = default, - global::System.OneOf? sessionId = default, - global::System.OneOf? sessionName = default, - global::System.OneOf? referenceExampleId = default, - global::System.OneOf? inputAttachments = default, - global::System.OneOf? outputAttachments = default, + 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, 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 60bcb91f9e..57c1719749 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::System.AnyOf? accept, + ref global::G.AnyOf? accept, global::G.RunGroupRequest request); partial void PrepareGroupRunsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? accept, + global::G.AnyOf? 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::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { request = request ?? throw new global::System.ArgumentNullException(nameof(request)); @@ -122,11 +122,11 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::G.RunGroupBy groupBy = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? filter = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? 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 cc10b4453d..1b4416e42e 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::System.AnyOf? startTime, - ref global::System.AnyOf? endTime); + ref global::G.AnyOf? startTime, + ref global::G.AnyOf? 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::System.AnyOf? startTime, - global::System.AnyOf? endTime); + global::G.AnyOf? startTime, + global::G.AnyOf? 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::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? endTime = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 7242633a1e..6c79ae227b 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,13 +8,13 @@ public partial class RunClient { partial void PrepareListRulesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::System.AnyOf? datasetId, - ref global::System.AnyOf? sessionId); + ref global::G.AnyOf? datasetId, + ref global::G.AnyOf? sessionId); partial void PrepareListRulesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? datasetId, - global::System.AnyOf? sessionId); + global::G.AnyOf? datasetId, + global::G.AnyOf? sessionId); partial void ProcessListRulesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -33,8 +33,8 @@ partial void ProcessListRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListRulesAsync( - global::System.AnyOf? datasetId = default, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? datasetId = default, + global::G.AnyOf? sessionId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.MonitorTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.MonitorTracerSession.g.verified.cs index cb3eab53d4..c78d5a6ee1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.MonitorTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.RunClient.MonitorTracerSession.g.verified.cs @@ -111,8 +111,8 @@ partial void ProcessMonitorTracerSessionResponseContent( public async global::System.Threading.Tasks.Task MonitorTracerSessionAsync( global::System.Collections.Generic.IList groups, string? timezone = "UTC", - global::System.AllOf? interval = default, - global::System.AllOf? stride = default, + global::G.AllOf? interval = default, + global::G.AllOf? stride = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.MonitorRequest 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 1a68316218..aa5e84d03e 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 @@ -127,26 +127,26 @@ partial void ProcessQueryRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task QueryRunsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, - global::System.AnyOf? cursor = default, + 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, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AllOf? order = default, + global::G.AllOf? order = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyParamsForRunSchema 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 da2507a566..815637bbb5 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) { @@ -84,7 +84,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 592ab1005c..7869e16f80 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 @@ -116,9 +116,9 @@ partial void ProcessStatsGroupRunsResponseContent( public async global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? filter = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? 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 9bd23b27ca..7b1eadfa73 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 @@ -119,22 +119,22 @@ partial void ProcessStatsRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsRunsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, + 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.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema 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 c99b36c96a..8d82878708 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 @@ -139,22 +139,22 @@ partial void ProcessUpdateRuleResponseContent( global::System.Guid ruleId, string displayName, double samplingRate, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? sessionId = default, bool isEnabled = true, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? backfillFrom = default, + 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, bool useCorrectionsDataset = false, - global::System.AnyOf? numFewShotExamples = default, + global::G.AnyOf? numFewShotExamples = default, bool extendOnly = false, - global::System.AnyOf? addToAnnotationQueueId = default, - global::System.AnyOf? addToDatasetId = default, + global::G.AnyOf? addToAnnotationQueueId = default, + global::G.AnyOf? addToDatasetId = default, bool addToDatasetPreferCorrection = false, - global::System.AnyOf, object>? evaluators = default, - global::System.AnyOf, object>? alerts = default, - global::System.AnyOf, object>? webhooks = default, + global::G.AnyOf, object>? evaluators = default, + global::G.AnyOf, object>? alerts = default, + global::G.AnyOf, object>? 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 1553bbf5a3..9a35a71c65 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 @@ -123,18 +123,18 @@ partial void ProcessUpdateRunResponseContent( /// public async global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::System.OneOf? traceId = default, - global::System.OneOf? dottedOrder = default, - global::System.OneOf? parentRunId = default, - global::System.OneOf? endTime = default, - global::System.OneOf? error = default, - global::System.OneOf? inputs = default, - global::System.OneOf? outputs = default, - global::System.OneOf, object>? events = default, - global::System.OneOf, object>? tags = default, - global::System.OneOf? extra = default, - global::System.OneOf? inputAttachments = default, - global::System.OneOf? outputAttachments = default, + 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::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 82be6d2a02..aebec62c3f 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 @@ -109,8 +109,8 @@ partial void ProcessCreateTenantResponseContent( public async global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid id = default, - global::System.AnyOf? organizationId = default, - global::System.AnyOf? tenantHandle = default, + global::G.AnyOf? organizationId = default, + global::G.AnyOf? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TenantCreate 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 909a7023ba..968053bdba 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 @@ -116,7 +116,7 @@ partial void ProcessCreateFilterViewResponseContent( global::System.Guid sessionId, string filterString, string displayName, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 210178bd44..8e5b4464b8 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 @@ -125,14 +125,14 @@ partial void ProcessCreateTracerSessionResponseContent( public async global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool upsert = false, global::System.DateTime startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? endTime = default, + global::G.AnyOf? extra = default, string? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDatasetId = default, - global::System.AnyOf? referenceDatasetId = default, - global::System.AnyOf? traceTier = default, - global::System.AnyOf? id = 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, 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 4c1dae39fe..e73dd66313 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::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadTracerSessionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, bool includeStats, - global::System.AnyOf? accept); + global::G.AnyOf? 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::System.AnyOf? accept = default, + global::G.AnyOf? 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 de4dfadce5..2017185969 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::System.AnyOf? referenceFree, - ref global::System.AnyOf, object>? referenceDataset, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? datasetVersion, - ref global::System.AllOf? sortBy, + 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 global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf? metadata, - ref global::System.AnyOf? sortByFeedbackKey, + ref global::G.AnyOf? metadata, + ref global::G.AnyOf? sortByFeedbackKey, ref int offset, ref int limit, - ref global::System.AnyOf, object>? tagValueId, + ref global::G.AnyOf, object>? tagValueId, ref bool facets, - ref global::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? referenceFree, - global::System.AnyOf, object>? referenceDataset, - global::System.AnyOf, object>? id, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? datasetVersion, - global::System.AllOf? sortBy, + 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, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf? metadata, - global::System.AnyOf? sortByFeedbackKey, + global::G.AnyOf? metadata, + global::G.AnyOf? sortByFeedbackKey, int offset, int limit, - global::System.AnyOf, object>? tagValueId, + global::G.AnyOf, object>? tagValueId, bool facets, - global::System.AnyOf? accept); + global::G.AnyOf? accept); partial void ProcessReadTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -82,21 +82,21 @@ partial void ProcessReadTracerSessionsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::System.AnyOf? referenceFree = default, - global::System.AnyOf, object>? referenceDataset = default, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? datasetVersion = default, - global::System.AllOf? sortBy = default, + 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, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf? metadata = default, - global::System.AnyOf? sortByFeedbackKey = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? sortByFeedbackKey = default, int offset = 0, int limit = 100, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, bool facets = false, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 18009554e9..5b84148963 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::System.AnyOf, object>? metadataKeys, - ref global::System.AnyOf? startTime, + ref global::G.AnyOf, object>? metadataKeys, + ref global::G.AnyOf? 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::System.AnyOf, object>? metadataKeys, - global::System.AnyOf? startTime, + global::G.AnyOf, object>? metadataKeys, + global::G.AnyOf? 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::System.AnyOf, object>? metadataKeys = default, - global::System.AnyOf? startTime = default, + global::G.AnyOf, object>? metadataKeys = default, + global::G.AnyOf? 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.TracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs index f910e45523..aea76f6239 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 @@ -122,9 +122,9 @@ partial void ProcessUpdateFilterViewResponseContent( public async global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::System.AnyOf? filterString = default, - global::System.AnyOf? displayName = default, - global::System.AnyOf? description = default, + global::G.AnyOf? filterString = default, + global::G.AnyOf? displayName = default, + global::G.AnyOf? description = 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 3cac7188f8..396838ba27 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 @@ -117,12 +117,12 @@ partial void ProcessUpdateTracerSessionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDatasetId = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? extra = default, - global::System.AnyOf? traceTier = default, + 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, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs index 55fbd0a84d..61e350fb1f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs @@ -104,7 +104,7 @@ partial void ProcessUpsertTtlSettings2ResponseContent( /// public async global::System.Threading.Tasks.Task UpsertTtlSettings2Async( global::G.TraceTier3 defaultTraceTier, - global::System.AnyOf? tenantId = default, + global::G.AnyOf? tenantId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpsertTTLSettingsRequest 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 415c9512f2..ccff4a0a42 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 @@ -107,8 +107,8 @@ partial void ProcessAddMemberToCurrentWorkspaceResponseContent( /// public async global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::System.AnyOf? readOnly = default, - global::System.AnyOf? roleId = default, + global::G.AnyOf? readOnly = default, + global::G.AnyOf? 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 97f47cf7ce..3682e4ddc0 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 @@ -104,7 +104,7 @@ partial void ProcessCreateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 1a3b81af95..54d34bb821 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 @@ -112,7 +112,7 @@ partial void ProcessCreateTagValueResponseContent( public async global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 356041dff8..6216aa5f8a 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 @@ -108,7 +108,7 @@ partial void ProcessCreateWorkspaceResponseContent( public async global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid id = default, - global::System.AnyOf? tenantHandle = default, + global::G.AnyOf? 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 7fa9fab5e2..b5bbd9dd3a 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::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareGetCurrentWorkspaceStatsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessGetCurrentWorkspaceStatsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessGetCurrentWorkspaceStatsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 1f3a0e1aa1..937fd2126a 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::System.AnyOf? tagValueId); + ref global::G.AnyOf? tagValueId); partial void PrepareListTaggingsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? tagValueId); + global::G.AnyOf? 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::System.AnyOf? tagValueId = default, + global::G.AnyOf? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 50a66077b4..433a0b7b12 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 @@ -112,7 +112,7 @@ partial void ProcessPatchCurrentWorkspaceMemberResponseContent( public async global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::System.AnyOf? readOnly = default, + global::G.AnyOf? 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 373c71333b..d50110da17 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 @@ -111,8 +111,8 @@ partial void ProcessUpdateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::System.AnyOf? key = default, - global::System.AnyOf? description = default, + global::G.AnyOf? key = default, + global::G.AnyOf? 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 2807a0ae3f..facb576a82 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 @@ -119,8 +119,8 @@ partial void ProcessUpdateTagValueResponseContent( public async global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::System.AnyOf? value = default, - global::System.AnyOf? description = default, + global::G.AnyOf? value = default, + global::G.AnyOf? 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.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 index 567f9ab936..048b642356 100644 --- 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 @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AllOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AllOf.1.g.verified.cs index 2e5f47dd3f..f9f2524e96 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AllOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AllOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.3.g.verified.cs index 80ee5cae1a..d4413137f5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.4.g.verified.cs index 4a020d5ee9..99227ffbc0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.5.g.verified.cs index 3bed9c3306..cf22e2968e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#AnyOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 index eaeffd2d24..5a9de1ca5d 100644 --- 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 @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 12e5ed56bb..c3debfd46b 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 @@ -117,13 +117,13 @@ partial void ProcessCreateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task CreateAnnotationQueueAsync( string name, - global::System.AnyOf? description = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, global::System.DateTime updatedAt = default, - global::System.AnyOf? defaultDataset = default, - global::System.AnyOf? numReviewersPerItem = default, - global::System.AnyOf? enableReservations = default, - global::System.AnyOf? reservationMinutes = default, + global::G.AnyOf? defaultDataset = default, + global::G.AnyOf? numReviewersPerItem = default, + global::G.AnyOf? enableReservations = default, + global::G.AnyOf? reservationMinutes = default, 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 e3a973d414..2c6f5b3acd 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 @@ -111,8 +111,8 @@ partial void ProcessCreateIdentityAnnotationQueueRunStatusResponseContent( /// public async global::System.Threading.Tasks.Task CreateIdentityAnnotationQueueRunStatusAsync( global::System.Guid annotationQueueRunId, - global::System.AnyOf? status = default, - global::System.AnyOf? overrideAddedAt = default, + global::G.AnyOf? status = default, + global::G.AnyOf? 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 b384366563..0386e3d81a 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::System.AnyOf, object>? ids, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, + ref global::G.AnyOf, object>? ids, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, ref int offset, ref int limit, - ref global::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareGetAnnotationQueuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? ids, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, + global::G.AnyOf, object>? ids, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, int offset, int limit, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessGetAnnotationQueuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -48,12 +48,12 @@ partial void ProcessGetAnnotationQueuesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> GetAnnotationQueuesAsync( - global::System.AnyOf, object>? ids = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, + global::G.AnyOf, object>? ids = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, int offset = 0, int limit = 100, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 739b17c8a0..c4cdaab7a7 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 @@ -119,12 +119,12 @@ partial void ProcessUpdateAnnotationQueueResponseContent( /// public async global::System.Threading.Tasks.Task UpdateAnnotationQueueAsync( global::System.Guid queueId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDataset = default, - global::System.AnyOf? numReviewersPerItem = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? defaultDataset = default, + global::G.AnyOf? numReviewersPerItem = default, bool enableReservations = true, - global::System.AnyOf? reservationMinutes = default, + global::G.AnyOf? 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 6b5d69a0c9..35d28396bd 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 @@ -119,8 +119,8 @@ partial void ProcessUpdateRunInAnnotationQueueResponseContent( public async global::System.Threading.Tasks.Task UpdateRunInAnnotationQueueAsync( global::System.Guid queueId, global::System.Guid queueRunId, - global::System.AnyOf? lastReviewedTime = default, - global::System.AnyOf? addedAt = default, + global::G.AnyOf? lastReviewedTime = default, + global::G.AnyOf? 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.ApiKeyClient.GenerateApiKey.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs index 53080ad29a..e7cc9b0833 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GenerateApiKey.g.verified.cs @@ -8,11 +8,11 @@ public partial class ApiKeyClient { partial void PrepareGenerateApiKeyArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AllOf request); + global::G.AllOf request); partial void PrepareGenerateApiKeyRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AllOf request); + global::G.AllOf request); partial void ProcessGenerateApiKeyResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessGenerateApiKeyResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GenerateApiKeyAsync( - global::System.AllOf request, + global::G.AllOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessGenerateApiKeyResponseContent( public async global::System.Threading.Tasks.Task GenerateApiKeyAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AllOf + var request = new global::G.AllOf { }; diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs index f6ac38c3e5..711d310842 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ApiKeyClient.GeneratePersonalAccessToken.g.verified.cs @@ -8,11 +8,11 @@ public partial class ApiKeyClient { partial void PrepareGeneratePersonalAccessTokenArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AllOf request); + global::G.AllOf request); partial void PrepareGeneratePersonalAccessTokenRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AllOf request); + global::G.AllOf request); partial void ProcessGeneratePersonalAccessTokenResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -30,7 +30,7 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync( - global::System.AllOf request, + global::G.AllOf request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -103,7 +103,7 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent( public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AllOf + var request = new global::G.AllOf { }; 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 a4f6854795..de61f8c395 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 @@ -116,11 +116,11 @@ partial void ProcessCreateChartResponseContent( string title, global::G.CustomChartType chartType, global::System.Collections.Generic.IList series, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, - global::System.AnyOf? sectionId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? commonFilters = default, + 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, 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 1eaff78998..3a82ed5b3a 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 @@ -107,8 +107,8 @@ partial void ProcessCreateSectionResponseContent( /// public async global::System.Threading.Tasks.Task CreateSectionAsync( string title, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, + global::G.AnyOf? description = default, + global::G.AnyOf? 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 fe6fd841b4..fa1c238da0 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 @@ -113,10 +113,10 @@ partial void ProcessReadChartsResponseContent( public async global::System.Threading.Tasks.Task ReadChartsAsync( global::System.DateTime startTime, string? timezone = "UTC", - global::System.AnyOf? endTime = default, - global::System.AllOf? stride = default, - global::System.AnyOf? afterIndex = default, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf? endTime = default, + global::G.AllOf? stride = default, + global::G.AnyOf? afterIndex = default, + global::G.AnyOf, object>? 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 81be337d72..93167086bf 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,13 +10,13 @@ partial void PrepareReadSectionsArguments( global::System.Net.Http.HttpClient httpClient, ref int limit, ref int offset, - ref global::System.AnyOf? titleContains); + ref global::G.AnyOf? titleContains); partial void PrepareReadSectionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? titleContains); + global::G.AnyOf? titleContains); partial void ProcessReadSectionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -42,7 +42,7 @@ partial void ProcessReadSectionsResponseContent( public async global::System.Threading.Tasks.Task> ReadSectionsAsync( int limit = 100, int offset = 0, - global::System.AnyOf? titleContains = default, + global::G.AnyOf? titleContains = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 a2cf5dee3b..bffec78e10 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 @@ -121,10 +121,10 @@ partial void ProcessReadSingleChartResponseContent( global::System.Guid chartId, global::System.DateTime startTime, string? timezone = "UTC", - global::System.AnyOf? endTime = default, - global::System.AllOf? stride = default, - global::System.AnyOf? afterIndex = default, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf? endTime = default, + global::G.AllOf? stride = default, + global::G.AnyOf? afterIndex = default, + global::G.AnyOf, object>? 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.UpdateChart.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ChartsClient.UpdateChart.g.verified.cs index 323b655d24..b9b5ef01c6 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 @@ -119,14 +119,14 @@ partial void ProcessUpdateChartResponseContent( /// public async global::System.Threading.Tasks.Task UpdateChartAsync( global::System.Guid chartId, - global::System.AnyOf? title = default, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, - global::System.AnyOf? chartType = default, - global::System.AnyOf, global::G.Missing>? series = default, - global::System.AnyOf? sectionId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? commonFilters = default, + global::G.AnyOf? title = 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::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 97055dd6f4..1f7e059595 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 @@ -114,9 +114,9 @@ partial void ProcessUpdateSectionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateSectionAsync( global::System.Guid sectionId, - global::System.AnyOf? title = default, - global::System.AnyOf? description = default, - global::System.AnyOf? index = default, + global::G.AnyOf? title = default, + global::G.AnyOf? description = default, + global::G.AnyOf? index = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CustomChartsSectionUpdate 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 43573231d9..bcb9d70acf 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 @@ -123,8 +123,8 @@ partial void ProcessCreateCommitResponseContent( string owner, string repo, global::G.CreateRepoCommitRequestManifest manifest, - global::System.AnyOf? parentCommit = default, - global::System.AnyOf, object>? exampleRunIds = default, + global::G.AnyOf? parentCommit = default, + global::G.AnyOf, object>? 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 fd245cf241..50bc493ad0 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::System.AnyOf? includeModel); + ref global::G.AnyOf? 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::System.AnyOf? includeModel); + global::G.AnyOf? 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::System.AnyOf? includeModel = default, + global::G.AnyOf? includeModel = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 92552272ed..c2ac63e435 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 @@ -109,7 +109,7 @@ partial void ProcessCloneDatasetResponseContent( public async global::System.Threading.Tasks.Task> CloneDatasetAsync( global::System.Guid targetDatasetId, global::System.Guid sourceDatasetId, - global::System.AnyOf?, object>? asOf = default, + global::G.AnyOf?, 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 a56b747b67..b55cac7da6 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 @@ -114,11 +114,11 @@ partial void ProcessCreateComparativeExperimentResponseContent( global::System.Collections.Generic.IList experimentIds, global::System.Guid referenceDatasetId, global::System.Guid id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? 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 029eae76ac..35f1e63fa6 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 @@ -117,14 +117,14 @@ partial void ProcessCreateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task CreateDatasetAsync( string name, - global::System.AnyOf? description = default, + global::G.AnyOf? description = default, global::System.DateTime createdAt = default, - global::System.AnyOf? dataType = default, - global::System.AnyOf? inputsSchemaDefinition = default, - global::System.AnyOf? outputsSchemaDefinition = default, - global::System.AnyOf? externallyManaged = default, - global::System.AnyOf? id = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? dataType = 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, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.DatasetCreate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs index 68036a2386..07794634f1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.DiffDatasetVersions.g.verified.cs @@ -9,14 +9,14 @@ public partial class DatasetsClient partial void PrepareDiffDatasetVersionsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf fromVersion, - ref global::System.AnyOf toVersion); + ref global::G.AnyOf fromVersion, + ref global::G.AnyOf toVersion); partial void PrepareDiffDatasetVersionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf fromVersion, - global::System.AnyOf toVersion); + global::G.AnyOf fromVersion, + global::G.AnyOf toVersion); partial void ProcessDiffDatasetVersionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,8 +37,8 @@ partial void ProcessDiffDatasetVersionsResponseContent( /// public async global::System.Threading.Tasks.Task DiffDatasetVersionsAsync( global::System.Guid datasetId, - global::System.AnyOf fromVersion, - global::System.AnyOf toVersion, + global::G.AnyOf fromVersion, + global::G.AnyOf toVersion, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 2aee4e4885..8d1085c7a2 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetCsvRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 3d265f8ead..cd94b7ffd9 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetOpenaiRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 156adbd9ef..9d467ce713 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::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareDownloadDatasetOpenaiFtRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? 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::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 a52a1bc8c8..b4dcaf86ef 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 @@ -114,7 +114,7 @@ partial void ProcessGenerateResponseContent( public async global::System.Threading.Tasks.Task GenerateAsync( global::System.Guid datasetId, int numExamples, - global::System.AnyOf, object>? exampleIds = default, + global::G.AnyOf, object>? 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.GetDatasetSplits.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs index a56ccdab0e..6d1a537c3e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.GetDatasetSplits.g.verified.cs @@ -9,12 +9,12 @@ public partial class DatasetsClient partial void PrepareGetDatasetSplitsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareGetDatasetSplitsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf); + global::G.AnyOf? asOf); partial void ProcessGetDatasetSplitsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -36,7 +36,7 @@ partial void ProcessGetDatasetSplitsResponseContent( /// public async global::System.Threading.Tasks.Task> GetDatasetSplitsAsync( global::System.Guid datasetId, - global::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 e0891bcbb8..ad28dc707b 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::System.AnyOf? asOf, - ref global::System.AnyOf? tag); + ref global::G.AnyOf? asOf, + ref global::G.AnyOf? tag); partial void PrepareGetDatasetVersionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? asOf, - global::System.AnyOf? tag); + global::G.AnyOf? asOf, + global::G.AnyOf? 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::System.AnyOf? asOf = default, - global::System.AnyOf? tag = default, + global::G.AnyOf? asOf = default, + global::G.AnyOf? tag = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 966204ae53..581d2b13f6 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::System.AnyOf? search, - ref global::System.AnyOf? example, + ref global::G.AnyOf? search, + ref global::G.AnyOf? 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::System.AnyOf? search, - global::System.AnyOf? example, + global::G.AnyOf? search, + global::G.AnyOf? 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::System.AnyOf? search = default, - global::System.AnyOf? example = default, + global::G.AnyOf? search = default, + global::G.AnyOf? 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.DatasetsClient.Index.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.Index.g.verified.cs index 2a2834fd8a..cc4a3d714e 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 @@ -114,7 +114,7 @@ partial void ProcessIndexResponseContent( /// public async global::System.Threading.Tasks.Task IndexAsync( global::System.Guid datasetId, - global::System.AnyOf? tag = default, + global::G.AnyOf? tag = default, 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 3071088d50..9877d7c42a 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,23 +9,23 @@ public partial class DatasetsClient partial void PrepareReadComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid datasetId, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf, object>? id, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf, object>? id, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid datasetId, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf, object>? id, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf, object>? id, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadComparativeExperimentsResponse( global::System.Net.Http.HttpClient httpClient, @@ -60,12 +60,12 @@ partial void ProcessReadComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadComparativeExperimentsAsync( global::System.Guid datasetId, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf, object>? id = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf, object>? id = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { 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 6e41cfb9cb..1ec9ad1c11 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) { @@ -84,7 +84,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 90f130b89c..df5af84a53 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::System.AnyOf, object>? id, - ref global::System.AnyOf, global::G.DataType2?, object>? dataType, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? metadata, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf, global::G.DataType2?, object>? dataType, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf? metadata, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareReadDatasetsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? id, - global::System.AnyOf, global::G.DataType2?, object>? dataType, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? metadata, + global::G.AnyOf, object>? id, + global::G.AnyOf, global::G.DataType2?, object>? dataType, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf? metadata, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessReadDatasetsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,16 +65,16 @@ partial void ProcessReadDatasetsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadDatasetsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf, global::G.DataType2?, object>? dataType = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? metadata = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf, global::G.DataType2?, object>? dataType = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf? metadata = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 595a6379f4..e2f9cbf10d 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 @@ -125,10 +125,10 @@ partial void ProcessReadDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::System.AnyOf? filters = default, + global::G.AnyOf? filters = default, int offset = 0, int limit = 100, - global::System.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 a06a082ed7..2c268f933f 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 @@ -32,7 +32,7 @@ partial void ProcessReadExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::G.QueryExampleSchemaWithRuns request, global::System.Threading.CancellationToken cancellationToken = default) @@ -98,7 +98,7 @@ partial void ProcessReadExamplesWithRunsResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } @@ -118,11 +118,11 @@ partial void ProcessReadExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadExamplesWithRunsAsync( global::System.Guid datasetId, global::System.Collections.Generic.IList sessionIds, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? filters = default, + global::G.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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.UpdateDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.DatasetsClient.UpdateDataset.g.verified.cs index 1dc178580e..72065d8e82 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateDatasetResponseContent( /// public async global::System.Threading.Tasks.Task UpdateDatasetAsync( global::System.Guid datasetId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? inputsSchemaDefinition = default, - global::System.AnyOf? outputsSchemaDefinition = default, - global::System.AnyOf? patchExamples = default, + global::G.AnyOf? name = default, + global::G.AnyOf? description = default, + global::G.AnyOf? inputsSchemaDefinition = default, + global::G.AnyOf? outputsSchemaDefinition = default, + global::G.AnyOf? 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 a42c915946..61c5d4dc67 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 @@ -149,10 +149,10 @@ partial void ProcessUploadCsvDatasetResponseContent( byte[] file, string filename, global::System.Collections.Generic.IList inputKeys, - global::System.AnyOf? name = default, - global::System.AllOf? dataType = default, + global::G.AnyOf? name = default, + global::G.AllOf? dataType = default, global::System.Collections.Generic.IList? outputKeys = default, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 f569cdede2..6887bb357e 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 @@ -117,12 +117,12 @@ partial void ProcessUploadExperimentResponseContent( global::System.Collections.Generic.IList results, global::System.DateTime experimentStartTime, global::System.DateTime experimentEndTime, - global::System.AnyOf? experimentDescription = default, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? datasetName = default, - global::System.AnyOf? datasetDescription = default, - global::System.AnyOf, object>? summaryExperimentScores = default, - global::System.AnyOf? experimentMetadata = default, + 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, 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 fd55739c2e..52d0846429 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 @@ -108,7 +108,7 @@ partial void ProcessCreateEventResponseContent( global::G.CreateEventRequestEventType eventType, string owner, string repo, - global::System.AnyOf? commit = default, + global::G.AnyOf? 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.CreateExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.CreateExample.g.verified.cs index 1c59471b76..0ec4400c81 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 @@ -117,12 +117,12 @@ partial void ProcessCreateExampleResponseContent( /// public async global::System.Threading.Tasks.Task CreateExampleAsync( global::System.Guid datasetId, - global::System.AnyOf? outputs = default, - global::System.AnyOf? sourceRunId = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf? inputs = default, - global::System.AnyOf, string, object>? split = default, - global::System.AnyOf? id = default, + 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, 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.ReadExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExample.g.verified.cs index 6f4682edce..ddfb269b9c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExample.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ExamplesClient.ReadExample.g.verified.cs @@ -9,12 +9,12 @@ public partial class ExamplesClient partial void PrepareReadExampleArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid exampleId, - ref global::System.AnyOf? asOf); + ref global::G.AnyOf? asOf); partial void PrepareReadExampleRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid exampleId, - global::System.AnyOf? asOf); + global::G.AnyOf? asOf); partial void ProcessReadExampleResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -37,7 +37,7 @@ partial void ProcessReadExampleResponseContent( /// public async global::System.Threading.Tasks.Task ReadExampleAsync( global::System.Guid exampleId, - global::System.AnyOf? asOf = default, + global::G.AnyOf? asOf = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 980398a2b3..66aaecbabd 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 @@ -9,33 +9,33 @@ public partial class ExamplesClient { partial void PrepareReadExamplesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? asOf, - ref global::System.AnyOf? metadata, - ref global::System.AnyOf, object>? fullTextContains, - ref global::System.AnyOf, object>? splits, - ref global::System.AnyOf? dataset, + ref global::G.AnyOf, object>? 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 int offset, ref int limit, - ref global::System.AllOf? order, - ref global::System.AnyOf? randomSeed, + ref global::G.AllOf? order, + ref global::G.AnyOf? randomSeed, global::System.Collections.Generic.IList? select, - ref global::System.AnyOf? filter); + ref global::G.AnyOf? filter); partial void PrepareReadExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? id, - global::System.AnyOf? asOf, - global::System.AnyOf? metadata, - global::System.AnyOf, object>? fullTextContains, - global::System.AnyOf, object>? splits, - global::System.AnyOf? dataset, + global::G.AnyOf, object>? id, + global::G.AnyOf? asOf, + global::G.AnyOf? metadata, + global::G.AnyOf, object>? fullTextContains, + global::G.AnyOf, object>? splits, + global::G.AnyOf? dataset, int offset, int limit, - global::System.AllOf? order, - global::System.AnyOf? randomSeed, + global::G.AllOf? order, + global::G.AnyOf? randomSeed, global::System.Collections.Generic.IList? select, - global::System.AnyOf? filter); + global::G.AnyOf? filter); partial void ProcessReadExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -75,18 +75,18 @@ partial void ProcessReadExamplesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadExamplesAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? asOf = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf, object>? fullTextContains = default, - global::System.AnyOf, object>? splits = default, - global::System.AnyOf? dataset = default, + global::G.AnyOf, object>? 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, int offset = 0, int limit = 100, - global::System.AllOf? order = default, - global::System.AnyOf? randomSeed = default, + global::G.AllOf? order = default, + global::G.AnyOf? randomSeed = default, global::System.Collections.Generic.IList? select = default, - global::System.AnyOf? filter = default, + global::G.AnyOf? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 4b12842ab8..736e2d833b 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateExampleResponseContent( /// public async global::System.Threading.Tasks.Task UpdateExampleAsync( global::System.Guid exampleId, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? inputs = default, - global::System.AnyOf? outputs = default, - global::System.AnyOf? metadata = default, - global::System.AnyOf, string, object>? split = default, + 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.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 f56ab6212a..35bbf5b963 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 @@ -120,17 +120,17 @@ partial void ProcessCreateFeedbackResponseContent( string key, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackGroupId = default, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? runId = default, - global::System.AnyOf? sessionId = 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::System.Guid id = default, - global::System.AnyOf? feedbackSource = default, - global::System.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.AnyOf? 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.CreateFeedbackIngestToken.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs index 1587d478ce..dfa1a961ba 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.FeedbackClient.CreateFeedbackIngestToken.g.verified.cs @@ -8,11 +8,11 @@ public partial class FeedbackClient { partial void PrepareCreateFeedbackIngestTokenArguments( global::System.Net.Http.HttpClient httpClient, - global::System.AnyOf> request); + global::G.AnyOf> request); partial void PrepareCreateFeedbackIngestTokenRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf> request); + global::G.AnyOf> request); partial void ProcessCreateFeedbackIngestTokenResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,8 +29,8 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( - global::System.AnyOf> request, + public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( + global::G.AnyOf> request, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( @@ -90,7 +90,7 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( } 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}\" "); } @@ -100,10 +100,10 @@ partial void ProcessCreateFeedbackIngestTokenResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( + public async global::System.Threading.Tasks.Task>> CreateFeedbackIngestTokenAsync( global::System.Threading.CancellationToken cancellationToken = default) { - var request = new global::System.AnyOf> + var request = new global::G.AnyOf> { }; 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 bc345fc0d5..1b541d7d04 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::System.AnyOf? score, - ref global::System.AnyOf? value, - ref global::System.AnyOf? comment, - ref global::System.AnyOf? correction); + ref global::G.AnyOf? score, + ref global::G.AnyOf? value, + ref global::G.AnyOf? comment, + ref global::G.AnyOf? correction); partial void PrepareCreateFeedbackWithTokenGetRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid token, - global::System.AnyOf? score, - global::System.AnyOf? value, - global::System.AnyOf? comment, - global::System.AnyOf? correction); + global::G.AnyOf? score, + global::G.AnyOf? value, + global::G.AnyOf? comment, + global::G.AnyOf? 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::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, + global::G.AnyOf? score = default, + global::G.AnyOf? value = default, + global::G.AnyOf? comment = default, + global::G.AnyOf? correction = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 6e952c0159..d7a6b37c96 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 @@ -116,11 +116,11 @@ partial void ProcessCreateFeedbackWithTokenPostResponseContent( /// public async global::System.Threading.Tasks.Task CreateFeedbackWithTokenPostAsync( global::System.Guid token, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? metadata = default, + 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::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 bc51cfa9bb..432326ab63 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 @@ -124,17 +124,17 @@ partial void ProcessEagerlyCreateFeedbackResponseContent( string key, global::System.DateTime createdAt = default, global::System.DateTime modifiedAt = default, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackGroupId = default, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? runId = default, - global::System.AnyOf? sessionId = 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::System.Guid id = default, - global::System.AnyOf? feedbackSource = default, - global::System.AnyOf? feedbackConfig = default, + global::G.AnyOf? feedbackSource = default, + global::G.AnyOf? 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 e27ad1c0c3..cf81ec1632 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level, - ref global::System.AnyOf? maxCreatedAt, - ref global::System.AnyOf? minCreatedAt); + 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); partial void PrepareReadFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level, - global::System.AnyOf? maxCreatedAt, - global::System.AnyOf? minCreatedAt); + 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); partial void ProcessReadFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -67,18 +67,18 @@ partial void ProcessReadFeedbacksResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadFeedbacksAsync( - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, - global::System.AnyOf? maxCreatedAt = default, - global::System.AnyOf? minCreatedAt = default, + 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.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 ed8f07d1ec..b5fe1b5e02 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 @@ -116,11 +116,11 @@ partial void ProcessUpdateFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackAsync( global::System.Guid feedbackId, - global::System.AnyOf? score = default, - global::System.AnyOf? value = default, - global::System.AnyOf? comment = default, - global::System.AnyOf? correction = default, - global::System.AnyOf? feedbackConfig = default, + 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::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 15b2025908..4f519b0774 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 @@ -108,7 +108,7 @@ partial void ProcessCreateFeedbackConfigEndpointResponseContent( public async global::System.Threading.Tasks.Task CreateFeedbackConfigEndpointAsync( string feedbackKey, global::G.FeedbackConfig feedbackConfig, - global::System.AnyOf? isLowerScoreBetter = default, + global::G.AnyOf? isLowerScoreBetter = default, 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 fb9e683b65..8f3004e01c 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::System.AnyOf, object>? key); + ref global::G.AnyOf, object>? key); partial void PrepareListFeedbackConfigsEndpointRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? key); + global::G.AnyOf, object>? key); partial void ProcessListFeedbackConfigsEndpointResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessListFeedbackConfigsEndpointResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListFeedbackConfigsEndpointAsync( - global::System.AnyOf, object>? key = default, + global::G.AnyOf, object>? key = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 36dab3db91..a0545fa5b1 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 @@ -105,8 +105,8 @@ partial void ProcessUpdateFeedbackConfigEndpointResponseContent( /// public async global::System.Threading.Tasks.Task UpdateFeedbackConfigEndpointAsync( string feedbackKey, - global::System.AnyOf? feedbackConfig = default, - global::System.AnyOf? isLowerScoreBetter = default, + global::G.AnyOf? feedbackConfig = default, + global::G.AnyOf? 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.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.ModelPriceMapClient.CreateNewModelPrice.g.verified.cs index 316a0a7734..e35c3a0eee 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 @@ -112,11 +112,11 @@ partial void ProcessCreateNewModelPriceResponseContent( public async global::System.Threading.Tasks.Task CreateNewModelPriceAsync( string name, string matchPattern, - global::System.AnyOf promptCost, - global::System.AnyOf completionCost, - global::System.AnyOf? startTime = default, + global::G.AnyOf promptCost, + global::G.AnyOf completionCost, + global::G.AnyOf? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::System.AnyOf? provider = default, + global::G.AnyOf? 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 59ea9ba87c..5f2933d7e1 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 @@ -120,11 +120,11 @@ partial void ProcessUpdateModelPriceResponseContent( global::System.Guid id, string name, string matchPattern, - global::System.AnyOf promptCost, - global::System.AnyOf completionCost, - global::System.AnyOf? startTime = default, + global::G.AnyOf promptCost, + global::G.AnyOf completionCost, + global::G.AnyOf? startTime = default, global::System.Collections.Generic.IList? matchPath = default, - global::System.AnyOf? provider = default, + global::G.AnyOf? 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 c4c949deb0..6e16e086d8 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 @@ -22,7 +22,7 @@ public sealed partial class APIFeedbackSource /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 a9a2efb3a1..a1062b846d 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 @@ -16,7 +16,7 @@ public sealed partial class APIKeyCreateResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { 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 f5bbffa733..48150d3daf 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 @@ -16,7 +16,7 @@ public sealed partial class APIKeyGetResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { get; set; } /// /// 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 4a3f323214..d2407d61e8 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 @@ -23,7 +23,7 @@ public sealed partial class AnnotationQueueCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -42,28 +42,28 @@ public sealed partial class AnnotationQueueCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 c66816b2d5..c538751742 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 @@ -30,7 +30,7 @@ public sealed partial class AnnotationQueueRunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? 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 337b7d6cf4..4a1d22f2be 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 @@ -16,14 +16,14 @@ public sealed partial class AnnotationQueueRunUpdateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? LastReviewedTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("added_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddedAt { get; set; } + public global::G.AnyOf? 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 74f5aa7af5..1556320dd5 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 @@ -23,7 +23,7 @@ public sealed partial class AnnotationQueueSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -42,28 +42,28 @@ public sealed partial class AnnotationQueueSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 c0a2d40109..7b40884bb4 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 @@ -23,7 +23,7 @@ public sealed partial class AnnotationQueueSchemaWithSize /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -42,28 +42,28 @@ public sealed partial class AnnotationQueueSchemaWithSize /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true /// [global::System.Text.Json.Serialization.JsonPropertyName("enable_reservations")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EnableReservations { get; set; } = true; + public global::G.AnyOf? EnableReservations { get; set; } = true; /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReservationMinutes { get; set; } = 1; + public global::G.AnyOf? 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 a6057a17bd..44a0a31076 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 @@ -16,28 +16,28 @@ public sealed partial class AnnotationQueueUpdateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDataset { get; set; } + public global::G.AnyOf? DefaultDataset { get; set; } /// /// Default Value: 1 /// [global::System.Text.Json.Serialization.JsonPropertyName("num_reviewers_per_item")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumReviewersPerItem { get; set; } = 1; + public global::G.AnyOf? NumReviewersPerItem { get; set; } = 1; /// /// Default Value: true @@ -50,7 +50,7 @@ public sealed partial class AnnotationQueueUpdateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("reservation_minutes")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReservationMinutes { get; set; } + public global::G.AnyOf? 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 f401175b44..02c61c90d1 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 @@ -22,7 +22,7 @@ public sealed partial class AppFeedbackSource /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 146b32428a..cc0a06dca5 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 @@ -37,7 +37,7 @@ public sealed partial class AppHubCrudTenantsTenant /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 080fb19689..5fe2374ddb 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 @@ -23,7 +23,7 @@ public sealed partial class AppSchemasTenant /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class AppSchemasTenant /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 20e92d9265..6baedd6822 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 @@ -22,7 +22,7 @@ public sealed partial class AutoEvalFeedbackSource /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 3a8b78da8a..bdf8050e4f 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 @@ -16,7 +16,7 @@ public sealed partial class BasicAuthMemberCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// @@ -30,42 +30,42 @@ public sealed partial class BasicAuthMemberCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? ReadOnly { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? 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 9463856ecd..6a218fbcb4 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 @@ -16,14 +16,14 @@ public sealed partial class BasicAuthUserPatch /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? 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 c022301483..e81ec0f2ae 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 @@ -30,7 +30,7 @@ public sealed partial class BatchIngestRunsRequestPatchItem /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// @@ -38,63 +38,63 @@ public sealed partial class BatchIngestRunsRequestPatchItem [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf EndTime { get; set; } + public required global::G.OneOf EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? OutputAttachments { get; set; } /// /// 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 87c9cf84a3..60dab9f669 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 @@ -38,63 +38,63 @@ public sealed partial class BatchIngestRunsRequestPostItem [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf StartTime { get; set; } + public required global::G.OneOf StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Serialized { get; set; } + public global::G.OneOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// @@ -122,35 +122,35 @@ public sealed partial class BatchIngestRunsRequestPostItem /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? SessionId { get; set; } + public global::G.OneOf? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? SessionName { get; set; } + public global::G.OneOf? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ReferenceExampleId { get; set; } + public global::G.OneOf? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.BodyCloneDatasetApiV1DatasetsClonePost.g.verified.cs index 9963b34f36..fcbe5ec86f 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 @@ -30,7 +30,7 @@ public sealed partial class BodyCloneDatasetApiV1DatasetsClonePost /// [global::System.Text.Json.Serialization.JsonPropertyName("as_of")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf?, object>? AsOf { get; set; } + public global::G.AnyOf?, object>? AsOf { get; set; } /// /// 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 de997b9b08..ec61c83e02 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 @@ -16,119 +16,119 @@ public sealed partial class BodyParamsForRunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Trace { get; set; } + public global::G.AnyOf? Trace { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRun { get; set; } + public global::G.AnyOf? ParentRun { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? Session { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ReferenceExample { get; set; } + public global::G.AnyOf, object>? ReferenceExample { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("execution_order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExecutionOrder { get; set; } + public global::G.AnyOf? ExecutionOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("query")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Query { get; set; } + public global::G.AnyOf? Query { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_root")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsRoot { get; set; } + public global::G.AnyOf? IsRoot { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("data_source_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataSourceType { get; set; } + public global::G.AnyOf? DataSourceType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("cursor")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Cursor { get; set; } + public global::G.AnyOf? Cursor { get; set; } /// /// Default Value: 100 @@ -147,7 +147,7 @@ public sealed partial class BodyParamsForRunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Order { get; set; } = global::G.RunDateOrder.Desc; + public global::G.AllOf? Order { get; set; } = global::G.RunDateOrder.Desc; /// /// Additional properties that are not explicitly defined in the schema 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 9d539e3646..e456e3e675 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 @@ -37,14 +37,14 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// Default Value: kv /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AllOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// @@ -57,7 +57,7 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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.Comment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.Comment.g.verified.cs index 9bdd95eff9..2eadc7c468 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 @@ -23,7 +23,7 @@ public sealed partial class Comment /// [global::System.Text.Json.Serialization.JsonPropertyName("comment_by")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CommentBy { get; set; } + public global::G.AnyOf? CommentBy { get; set; } /// /// @@ -37,7 +37,7 @@ public sealed partial class Comment /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentId { get; set; } + public global::G.AnyOf? ParentId { get; set; } /// /// @@ -65,7 +65,7 @@ public sealed partial class Comment /// [global::System.Text.Json.Serialization.JsonPropertyName("comment_by_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CommentByName { get; set; } + public global::G.AnyOf? CommentByName { get; set; } /// /// @@ -86,7 +86,7 @@ public sealed partial class Comment /// [global::System.Text.Json.Serialization.JsonPropertyName("liked_by_auth_user")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LikedByAuthUser { get; set; } + public global::G.AnyOf? 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 bf1bbfaa24..113918c561 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 @@ -30,7 +30,7 @@ public sealed partial class CommitManifestResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("examples")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Examples { get; set; } + public global::G.AnyOf, object>? 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 a134d11fee..2fa8bb15bc 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 @@ -37,7 +37,7 @@ public sealed partial class CommitWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentId { get; set; } + public global::G.AnyOf? ParentId { get; set; } /// /// @@ -86,7 +86,7 @@ public sealed partial class CommitWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_commit_hash")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentCommitHash { get; set; } + public global::G.AnyOf? 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 1430a77fd4..5ba578d8de 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 @@ -23,14 +23,14 @@ public sealed partial class ComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -65,7 +65,7 @@ public sealed partial class ComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -79,7 +79,7 @@ public sealed partial class ComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? 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 8bafb61f73..8bb0e176d6 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 @@ -23,14 +23,14 @@ public sealed partial class ComparativeExperimentBase /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -65,7 +65,7 @@ public sealed partial class ComparativeExperimentBase /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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 3b98624950..be7d6d640c 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 @@ -29,14 +29,14 @@ public sealed partial class ComparativeExperimentCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -62,7 +62,7 @@ public sealed partial class ComparativeExperimentCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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 e8dd8b61d7..6cc4fee7a5 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 @@ -38,7 +38,7 @@ public sealed partial class CreateEventRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("commit")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Commit { get; set; } + public global::G.AnyOf? 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 0421f81ac0..9ba954c351 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 @@ -30,7 +30,7 @@ public sealed partial class CreateFeedbackConfigSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } = false; + public global::G.AnyOf? 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 b3f3e65e95..3228171612 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 @@ -23,14 +23,14 @@ public sealed partial class CreateRepoCommitRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_commit")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentCommit { get; set; } + public global::G.AnyOf? ParentCommit { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("example_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ExampleRunIds { get; set; } + public global::G.AnyOf, object>? 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 7a86ed80b6..d6f85fbd72 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 @@ -23,14 +23,14 @@ public sealed partial class CreateRepoRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// @@ -44,7 +44,7 @@ public sealed partial class CreateRepoRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? 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 1f28ca1e77..bd6af05c20 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 @@ -23,7 +23,7 @@ public sealed partial class CreateRunRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// @@ -38,119 +38,119 @@ public sealed partial class CreateRunRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? StartTime { get; set; } + public global::G.OneOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Serialized { get; set; } + public global::G.OneOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? TraceId { get; set; } + public global::G.OneOf? TraceId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? DottedOrder { get; set; } + public global::G.OneOf? DottedOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Id { get; set; } + public global::G.OneOf? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? SessionId { get; set; } + public global::G.OneOf? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? SessionName { get; set; } + public global::G.OneOf? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ReferenceExampleId { get; set; } + public global::G.OneOf? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.CustomChartCreate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreate.g.verified.cs index 909e150bd1..23328670d9 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 @@ -23,14 +23,14 @@ public sealed partial class CustomChartCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// Enum for custom chart types. @@ -52,21 +52,21 @@ public sealed partial class CustomChartCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("section_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SectionId { get; set; } + public global::G.AnyOf? SectionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.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/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartCreatePreview.g.verified.cs index 3575ea9e43..3b1df42af6 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 @@ -23,7 +23,7 @@ public sealed partial class CustomChartCreatePreview /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.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/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartResponse.g.verified.cs index d425336bec..44fb8e2a0a 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 @@ -30,7 +30,7 @@ public sealed partial class CustomChartResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -59,7 +59,7 @@ public sealed partial class CustomChartResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -67,7 +67,7 @@ public sealed partial class CustomChartResponse [global::System.Text.Json.Serialization.JsonPropertyName("series")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf, object> Series { get; set; } + public required global::G.AnyOf, object> 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 3912359b6d..275ce0f345 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 @@ -23,7 +23,7 @@ public sealed partial class CustomChartSeries /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -38,7 +38,7 @@ public sealed partial class CustomChartSeries /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? 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 20c9fba189..11cb805b4a 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 @@ -23,7 +23,7 @@ public sealed partial class CustomChartSeriesCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -38,7 +38,7 @@ public sealed partial class CustomChartSeriesCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? 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 2736cd20c3..79f2b7709e 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 @@ -16,28 +16,28 @@ public sealed partial class CustomChartSeriesFilters /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? 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 5d5c263521..08883738ba 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 @@ -23,7 +23,7 @@ public sealed partial class CustomChartSeriesUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Metrics you can chart. @@ -38,14 +38,14 @@ public sealed partial class CustomChartSeriesUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_key")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackKey { get; set; } + public global::G.AnyOf? FeedbackKey { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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 58969a25ac..ddbc92ea84 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 @@ -16,56 +16,56 @@ public sealed partial class CustomChartUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Title { get; set; } + public global::G.AnyOf? Title { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("chart_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ChartType { get; set; } + public global::G.AnyOf? ChartType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("series")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, global::G.Missing>? Series { get; set; } + public global::G.AnyOf, global::G.Missing>? Series { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("section_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SectionId { get; set; } + public global::G.AnyOf? SectionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.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/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomChartsDataPoint.g.verified.cs index d06d88a4ba..0fd1254467 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 @@ -31,7 +31,7 @@ public sealed partial class CustomChartsDataPoint [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.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 6559ee1e55..237600dc3d 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 @@ -29,28 +29,28 @@ public sealed partial class CustomChartsRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("after_index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AfterIndex { get; set; } + public global::G.AnyOf? AfterIndex { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tag_value_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? TagValueId { get; set; } + public global::G.AnyOf, object>? 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 b14acbd99a..cb04ed1d0d 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 @@ -29,14 +29,14 @@ public sealed partial class CustomChartsRequestBase /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { get; set; } /// /// Additional properties that are not explicitly defined in the schema 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 721bf5780b..56ceb71716 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 @@ -23,14 +23,14 @@ public sealed partial class CustomChartsSection /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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 057179f91a..465f90aa40 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 @@ -23,14 +23,14 @@ public sealed partial class CustomChartsSectionCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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 396ebeb373..ee4e9d97fd 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 @@ -23,14 +23,14 @@ public sealed partial class CustomChartsSectionResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? Index { get; set; } /// /// @@ -44,7 +44,7 @@ public sealed partial class CustomChartsSectionResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("is_at_capacity")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsAtCapacity { get; set; } + public global::G.AnyOf? IsAtCapacity { 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 92df0fbc87..749b3342b1 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 @@ -16,21 +16,21 @@ public sealed partial class CustomChartsSectionUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Title { get; set; } + public global::G.AnyOf? Title { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("index")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Index { get; set; } + public global::G.AnyOf? 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.CustomerVisiblePlanInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.CustomerVisiblePlanInfo.g.verified.cs index 383862e808..af4dfb2e84 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 @@ -31,7 +31,7 @@ public sealed partial class CustomerVisiblePlanInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("ends_on")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndsOn { get; set; } + public global::G.AnyOf? 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 ba7c82f432..92aa3b8bb5 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 @@ -23,7 +23,7 @@ public sealed partial class Dataset /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -36,28 +36,28 @@ public sealed partial class Dataset /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// @@ -99,7 +99,7 @@ public sealed partial class Dataset /// [global::System.Text.Json.Serialization.JsonPropertyName("last_session_start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastSessionStartTime { get; set; } + public global::G.AnyOf? 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 3f440e1c87..6e5ddde613 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 @@ -23,7 +23,7 @@ public sealed partial class DatasetCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -36,42 +36,42 @@ public sealed partial class DatasetCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? 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.DatasetIndexInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.DatasetIndexInfo.g.verified.cs index ef49bef009..17c93e04bd 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 @@ -23,14 +23,14 @@ public sealed partial class DatasetIndexInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tag { get; set; } = "latest"; + public global::G.AnyOf? Tag { get; set; } = "latest"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_updated_version")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastUpdatedVersion { get; set; } + public global::G.AnyOf? 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 6ece8733e0..63f6cd1a84 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 @@ -16,7 +16,7 @@ public sealed partial class DatasetIndexRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tag { get; set; } = "latest"; + public global::G.AnyOf? 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 be6e41ccbd..85c74eb46e 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 @@ -25,7 +25,7 @@ public sealed partial class DatasetPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -38,28 +38,28 @@ public sealed partial class DatasetPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// 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 78bb577185..123a9a6001 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 @@ -23,7 +23,7 @@ public sealed partial class DatasetSchemaForUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -36,28 +36,28 @@ public sealed partial class DatasetSchemaForUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; + public global::G.AnyOf? DataType { get; set; } = global::G.DataType2.Kv; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// Default Value: false /// [global::System.Text.Json.Serialization.JsonPropertyName("externally_managed")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExternallyManaged { get; set; } = false; + public global::G.AnyOf? ExternallyManaged { get; set; } = false; /// /// 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 b3972e6d40..41b29e53e8 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 @@ -16,35 +16,35 @@ public sealed partial class DatasetUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? InputsSchemaDefinition { get; set; } + public global::G.AnyOf? InputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_schema_definition")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? OutputsSchemaDefinition { get; set; } + public global::G.AnyOf? OutputsSchemaDefinition { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("patch_examples")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PatchExamples { get; set; } + public global::G.AnyOf? 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 43d0856ad4..4b62a7691e 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 @@ -16,7 +16,7 @@ public sealed partial class DatasetVersion /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? 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 a31c0b63af..bdb34ea8c2 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 @@ -16,35 +16,35 @@ public sealed partial class EvaluatorStructuredOutput /// [global::System.Text.Json.Serialization.JsonPropertyName("hub_ref")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? HubRef { get; set; } + public global::G.AnyOf? HubRef { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf>, object>? Prompt { get; set; } + public global::G.AnyOf>, object>? Prompt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("template_format")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TemplateFormat { get; set; } + public global::G.AnyOf? TemplateFormat { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("schema")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Schema { get; set; } + public global::G.AnyOf? Schema { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("variable_mapping")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? VariableMapping { get; set; } + public global::G.AnyOf? 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 3875a5e4e8..cc570cae3c 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 @@ -16,7 +16,7 @@ public sealed partial class Example /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,14 +30,14 @@ public sealed partial class Example /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -71,7 +71,7 @@ public sealed partial class Example /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 9dcca3eb00..b249887b9a 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 @@ -16,7 +16,7 @@ public sealed partial class ExampleBulkCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,35 +30,35 @@ public sealed partial class ExampleBulkCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// Default Value: base /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string, object>? Split { get; set; } = "base"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// Default Value: false @@ -71,7 +71,7 @@ public sealed partial class ExampleBulkCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? 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 5e2c3b0209..8b168fc9bf 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 @@ -16,7 +16,7 @@ public sealed partial class ExampleCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,35 +30,35 @@ public sealed partial class ExampleCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// Default Value: base /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf, string, object>? Split { get; set; } = "base"; + public global::G.AnyOf, string, object>? Split { get; set; } = "base"; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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 b3a0e032c7..301699819d 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 @@ -16,35 +16,35 @@ public sealed partial class ExampleUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string, object>? 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 1ace1d1b89..64b6ad0a36 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 @@ -16,35 +16,35 @@ public sealed partial class ExampleUpdateWithID /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("split")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf, string, object>? Split { get; set; } + public global::G.AnyOf, string, object>? 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 88b2190a16..920fa269cf 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 @@ -16,7 +16,7 @@ public sealed partial class ExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,14 +30,14 @@ public sealed partial class ExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -71,7 +71,7 @@ public sealed partial class ExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 ff73ce4fda..c51cbb81d9 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 @@ -16,7 +16,7 @@ public sealed partial class ExampleWithRunsCH /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,14 +30,14 @@ public sealed partial class ExampleWithRunsCH /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -71,7 +71,7 @@ public sealed partial class ExampleWithRunsCH /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 75a0feeb86..ce9892fdcd 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 @@ -16,7 +16,7 @@ public sealed partial class ExperimentResultRow /// [global::System.Text.Json.Serialization.JsonPropertyName("row_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RowId { get; set; } + public global::G.AnyOf? RowId { get; set; } /// /// @@ -30,21 +30,21 @@ public sealed partial class ExperimentResultRow /// [global::System.Text.Json.Serialization.JsonPropertyName("expected_outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExpectedOutputs { get; set; } + public global::G.AnyOf? ExpectedOutputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("actual_outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ActualOutputs { get; set; } + public global::G.AnyOf? ActualOutputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluation_scores")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? EvaluationScores { get; set; } + public global::G.AnyOf, object>? EvaluationScores { get; set; } /// /// @@ -65,21 +65,21 @@ public sealed partial class ExperimentResultRow /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunMetadata { get; set; } + public global::G.AnyOf? 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 7b476ed40c..37a9b1df69 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 @@ -23,35 +23,35 @@ public sealed partial class ExperimentResultsUpload /// [global::System.Text.Json.Serialization.JsonPropertyName("experiment_description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExperimentDescription { get; set; } + public global::G.AnyOf? ExperimentDescription { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? DatasetName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetDescription { get; set; } + public global::G.AnyOf? DatasetDescription { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("summary_experiment_scores")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? SummaryExperimentScores { get; set; } + public global::G.AnyOf, object>? SummaryExperimentScores { get; set; } /// /// @@ -79,7 +79,7 @@ public sealed partial class ExperimentResultsUpload /// [global::System.Text.Json.Serialization.JsonPropertyName("experiment_metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExperimentMetadata { get; set; } + public global::G.AnyOf? 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 de7d51dc93..8d09f4c43a 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 @@ -23,7 +23,7 @@ public sealed partial class FeedbackCategory /// [global::System.Text.Json.Serialization.JsonPropertyName("label")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Label { get; set; } + public global::G.AnyOf? 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 92ad14b4a7..a5ce856ebf 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 @@ -24,21 +24,21 @@ public sealed partial class FeedbackConfig /// [global::System.Text.Json.Serialization.JsonPropertyName("min")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Min { get; set; } + public global::G.AnyOf? Min { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("max")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Max { get; set; } + public global::G.AnyOf? Max { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("categories")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Categories { get; set; } + public global::G.AnyOf, object>? 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 a4f4035888..7e89aa1f71 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 @@ -44,7 +44,7 @@ public sealed partial class FeedbackConfigSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } + public global::G.AnyOf? 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 793631ed8e..4fac8b6534 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 @@ -35,42 +35,42 @@ public sealed partial class FeedbackCreateCoreSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] - public global::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory6))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// @@ -83,14 +83,14 @@ public sealed partial class FeedbackCreateCoreSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory5))] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 f34e0d4865..42fbb6fd7c 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 @@ -35,56 +35,56 @@ public sealed partial class FeedbackCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] - public global::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory6))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunId { get; set; } + public global::G.AnyOf? RunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// @@ -97,14 +97,14 @@ public sealed partial class FeedbackCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory5))] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? FeedbackSource { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 4bb2f255a5..a604194954 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 @@ -16,35 +16,35 @@ public sealed partial class FeedbackCreateWithTokenExtendedSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] - public global::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory5))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 2b354aeb6a..bb4ea165b4 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 @@ -16,14 +16,14 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("expires_in")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExpiresIn { get; set; } + public global::G.AnyOf? ExpiresIn { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("expires_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExpiresAt { get; set; } + public global::G.AnyOf? ExpiresAt { get; set; } /// /// @@ -44,7 +44,7 @@ public sealed partial class FeedbackIngestTokenCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 9d0b1a93df..56b7b64260 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 @@ -35,56 +35,56 @@ public sealed partial class FeedbackSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] - public global::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory6))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_group_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackGroupId { get; set; } + public global::G.AnyOf? FeedbackGroupId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunId { get; set; } + public global::G.AnyOf? RunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// @@ -98,7 +98,7 @@ public sealed partial class FeedbackSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_source")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackSource { get; set; } + public global::G.AnyOf? 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.FeedbackSource4.g.verified.cs index 741920faad..79da1c1545 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.FeedbackSource4.g.verified.cs @@ -16,21 +16,21 @@ public sealed partial class FeedbackSource4 /// [global::System.Text.Json.Serialization.JsonPropertyName("type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Type { get; set; } + public global::G.AnyOf? Type { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? 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 1eab9f959b..d39cd4ce61 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 @@ -16,35 +16,35 @@ public sealed partial class FeedbackUpdateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("score")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory4))] - public global::System.AnyOf? Score { get; set; } + public global::G.AnyOf? Score { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory6))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("comment")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Comment { get; set; } + public global::G.AnyOf? Comment { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("correction")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory3))] - public global::System.AnyOf? Correction { get; set; } + public global::G.AnyOf? Correction { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? 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 fa00dccdda..9c970a6ff0 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 @@ -16,112 +16,112 @@ public sealed partial class FilterQueryParamsForRunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Trace { get; set; } + public global::G.AnyOf? Trace { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRun { get; set; } + public global::G.AnyOf? ParentRun { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Session { get; set; } + public global::G.AnyOf, object>? Session { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ReferenceExample { get; set; } + public global::G.AnyOf, object>? ReferenceExample { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("execution_order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExecutionOrder { get; set; } + public global::G.AnyOf? ExecutionOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("query")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Query { get; set; } + public global::G.AnyOf? Query { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_root")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsRoot { get; set; } + public global::G.AnyOf? IsRoot { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("data_source_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DataSourceType { get; set; } + public global::G.AnyOf? 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 a29116080a..e277487413 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 @@ -30,7 +30,7 @@ public sealed partial class FilterView /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -44,7 +44,7 @@ public sealed partial class FilterView /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? 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 f2653a60c1..f6adf13af3 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 @@ -30,7 +30,7 @@ public sealed partial class FilterViewCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 2b5387dc8c..a16f3aa7ca 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 @@ -16,21 +16,21 @@ public sealed partial class FilterViewUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("filter_string")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FilterString { get; set; } + public global::G.AnyOf? FilterString { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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.ForkRepoRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ForkRepoRequest.g.verified.cs index 7b57c9cdb8..ddeb33b908 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 @@ -23,28 +23,28 @@ public sealed partial class ForkRepoRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_public")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsPublic { get; set; } + public global::G.AnyOf? 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 cc4046559f..99425c1c56 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 @@ -16,7 +16,7 @@ public sealed partial class GenerateSyntheticExamplesBody /// [global::System.Text.Json.Serialization.JsonPropertyName("example_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ExampleIds { get; set; } + public global::G.AnyOf, object>? 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 8a855ce388..82ebf7734e 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 @@ -30,7 +30,7 @@ public sealed partial class Identity /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class Identity /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -65,21 +65,21 @@ public sealed partial class Identity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// Additional properties that are not explicitly defined in the schema 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 5901aca0fd..a924d711de 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 @@ -16,14 +16,14 @@ public sealed partial class IdentityAnnotationQueueRunStatusCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("status")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Status { get; set; } + public global::G.AnyOf? Status { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("override_added_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OverrideAddedAt { get; set; } + public global::G.AnyOf? 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 87aa2a2ffc..d0e807744a 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 @@ -23,14 +23,14 @@ public sealed partial class IdentityCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? ReadOnly { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? 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 955b9754da..95fb9e7b48 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 @@ -16,7 +16,7 @@ public sealed partial class IdentityPatch /// [global::System.Text.Json.Serialization.JsonPropertyName("read_only")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReadOnly { get; set; } + public global::G.AnyOf? 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 2fa69b5ddf..ea45f1ad9a 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 @@ -23,7 +23,7 @@ public sealed partial class InfoGetResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("license_expiration_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LicenseExpirationTime { get; set; } + public global::G.AnyOf? 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 08933ac72e..ee00f7d9cb 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 @@ -30,7 +30,7 @@ public sealed partial class ListPublicDatasetRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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 c87d87cdf8..e75c92c116 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 @@ -30,7 +30,7 @@ public sealed partial class ListPublicRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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.ListRunsResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ListRunsResponse.g.verified.cs index 46d6c01a6b..ca684f4508 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 @@ -30,7 +30,7 @@ public sealed partial class ListRunsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("parsed_query")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParsedQuery { get; set; } + public global::G.AnyOf? 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 b4ea4ab8a3..4a08c99089 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 @@ -30,7 +30,7 @@ public sealed partial class MemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class MemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -65,42 +65,42 @@ public sealed partial class MemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? Email { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? 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 3969842c8d..692855e9a9 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 @@ -22,7 +22,7 @@ public sealed partial class ModelFeedbackSource /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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 7d9ed2a015..9ac8b1c3ab 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 @@ -23,7 +23,7 @@ public sealed partial class ModelPriceMapCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -44,7 +44,7 @@ public sealed partial class ModelPriceMapCreateSchema [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf PromptCost { get; set; } + public required global::G.AnyOf PromptCost { get; set; } /// /// @@ -52,14 +52,14 @@ public sealed partial class ModelPriceMapCreateSchema [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf CompletionCost { get; set; } + public required global::G.AnyOf CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Provider { get; set; } + public global::G.AnyOf? 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 cd66f7f97c..2404f7b652 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 @@ -23,7 +23,7 @@ public sealed partial class ModelPriceMapUpdateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// Default Value: [model, model_name, model_id, model_path, endpoint_name] @@ -44,7 +44,7 @@ public sealed partial class ModelPriceMapUpdateSchema [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf PromptCost { get; set; } + public required global::G.AnyOf PromptCost { get; set; } /// /// @@ -52,14 +52,14 @@ public sealed partial class ModelPriceMapUpdateSchema [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf CompletionCost { get; set; } + public required global::G.AnyOf CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("provider")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Provider { get; set; } + public global::G.AnyOf? 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 b8f11bd8ca..4f242b0d4b 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 @@ -37,7 +37,7 @@ public sealed partial class MonitorBlock /// [global::System.Text.Json.Serialization.JsonPropertyName("subtitle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Subtitle { get; set; } + public global::G.AnyOf? Subtitle { get; set; } /// /// @@ -58,14 +58,14 @@ public sealed partial class MonitorBlock /// [global::System.Text.Json.Serialization.JsonPropertyName("click_target")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ClickTarget { get; set; } + public global::G.AnyOf? ClickTarget { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("toggleable_marks")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ToggleableMarks { get; set; } + public global::G.AnyOf? 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 106af889c5..3071a2c43a 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 @@ -23,14 +23,14 @@ public sealed partial class MonitorGroupSpec /// [global::System.Text.Json.Serialization.JsonPropertyName("tag")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tag { get; set; } + public global::G.AnyOf? Tag { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? 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.MonitorRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorRequest.g.verified.cs index f92233a302..bbbdc26ef1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.MonitorRequest.g.verified.cs @@ -29,14 +29,14 @@ public sealed partial class MonitorRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("interval")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Interval { get; set; } + public global::G.AllOf? Interval { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? Stride { get; set; } + public global::G.AllOf? Stride { 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 0f7e9f5ced..e655034236 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 @@ -16,21 +16,21 @@ public sealed partial class OrgIdentityPatch /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? 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 be0360bb35..de93252949 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 @@ -30,7 +30,7 @@ public sealed partial class OrgMemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class OrgMemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -65,42 +65,42 @@ public sealed partial class OrgMemberIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// Default Value: workspace /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? Email { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? AvatarUrl { get; set; } /// /// 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 c0c63fb2d4..505a8affd4 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 @@ -29,42 +29,42 @@ public sealed partial class OrgPendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// Default Value: workspace /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// @@ -78,21 +78,21 @@ public sealed partial class OrgPendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -106,7 +106,7 @@ public sealed partial class OrgPendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// 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 a0c6f7e3d0..5278322ebf 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 @@ -16,14 +16,14 @@ public sealed partial class Organization /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -58,14 +58,14 @@ public sealed partial class Organization /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("payment_method")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PaymentMethod { get; set; } + public global::G.AnyOf? PaymentMethod { get; set; } /// /// @@ -79,21 +79,21 @@ public sealed partial class Organization /// [global::System.Text.Json.Serialization.JsonPropertyName("end_of_billing_period")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndOfBillingPeriod { get; set; } + public global::G.AnyOf? EndOfBillingPeriod { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("current_plan")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CurrentPlan { get; set; } + public global::G.AnyOf? CurrentPlan { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upcoming_plan")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UpcomingPlan { get; set; } + public global::G.AnyOf? 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 a887172e05..ecac341170 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 @@ -16,7 +16,7 @@ public sealed partial class OrganizationBillingInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// @@ -58,35 +58,35 @@ public sealed partial class OrganizationBillingInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("payment_method")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PaymentMethod { get; set; } + public global::G.AnyOf? PaymentMethod { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_of_billing_period")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndOfBillingPeriod { get; set; } + public global::G.AnyOf? EndOfBillingPeriod { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("current_plan")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CurrentPlan { get; set; } + public global::G.AnyOf? CurrentPlan { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upcoming_plan")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UpcomingPlan { get; set; } + public global::G.AnyOf? 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 a44a73a56c..4e8565b1a3 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 @@ -40,21 +40,21 @@ public sealed partial class OrganizationConfig /// [global::System.Text.Json.Serialization.JsonPropertyName("startup_plan_approval_date")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartupPlanApprovalDate { get; set; } + public global::G.AnyOf? StartupPlanApprovalDate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("partner_plan_approval_date")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PartnerPlanApprovalDate { get; set; } + public global::G.AnyOf? PartnerPlanApprovalDate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("premier_plan_approval_date")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PremierPlanApprovalDate { get; set; } + public global::G.AnyOf? 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 b467ef497c..6f7a8fc924 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 @@ -16,14 +16,14 @@ public sealed partial class OrganizationInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("display_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DisplayName { get; set; } + public global::G.AnyOf? DisplayName { get; set; } /// /// Organization level configuration. May include any field that exists in tenant config and additional fields. @@ -44,7 +44,7 @@ public sealed partial class OrganizationInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Tier { get; set; } + public global::G.AnyOf? Tier { get; set; } /// /// Default Value: false 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 6eea057e86..a745d96289 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 @@ -30,21 +30,21 @@ public sealed partial class OrganizationPGSchemaSlim /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CreatedAt { get; set; } + public global::G.AnyOf? CreatedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("created_by_user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CreatedByUserId { get; set; } + public global::G.AnyOf? CreatedByUserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? ModifiedAt { get; set; } /// /// 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 4b2a835248..ed05d1a132 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 @@ -29,42 +29,42 @@ public sealed partial class PendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// Default Value: workspace /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory1))] - public global::System.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; + public global::G.AllOf? AccessScope { get; set; } = global::G.AccessScope.Workspace; /// /// @@ -78,21 +78,21 @@ public sealed partial class PendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UserId { get; set; } + public global::G.AnyOf? UserId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -106,7 +106,7 @@ public sealed partial class PendingIdentity /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? 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 f89e557f70..0fb6755522 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 @@ -29,35 +29,35 @@ public sealed partial class PendingIdentityCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? WorkspaceIds { get; set; } + public global::G.AnyOf, object>? WorkspaceIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("workspace_role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? WorkspaceRoleId { get; set; } + public global::G.AnyOf? WorkspaceRoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? Password { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? 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.PlaygroundSettingsCreateRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PlaygroundSettingsCreateRequest.g.verified.cs index 59297abb55..791f3f9c7b 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 @@ -23,7 +23,7 @@ public sealed partial class PlaygroundSettingsCreateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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 2a91aef4fa..23cb6f54d8 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 @@ -30,7 +30,7 @@ public sealed partial class PlaygroundSettingsResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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 51fbbdcdf1..e46c143fcd 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 @@ -16,7 +16,7 @@ public sealed partial class PlaygroundSettingsUpdateRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? 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.PublicComparativeExperiment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.PublicComparativeExperiment.g.verified.cs index 92fc33463a..b221485c60 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 @@ -23,14 +23,14 @@ public sealed partial class PublicComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class PublicComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -65,7 +65,7 @@ public sealed partial class PublicComparativeExperiment /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? 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 50cb837d3d..3056d5987b 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 @@ -16,7 +16,7 @@ public sealed partial class PublicExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// @@ -30,14 +30,14 @@ public sealed partial class PublicExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("source_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SourceRunId { get; set; } + public global::G.AnyOf? SourceRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -71,7 +71,7 @@ public sealed partial class PublicExampleWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("modified_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ModifiedAt { get; set; } + public global::G.AnyOf? 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 2938b56224..55b600f322 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 @@ -23,14 +23,14 @@ public sealed partial class QueryExampleSchemaWithRuns /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? ComparativeExperimentId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? 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 7122154fb2..aba180f8ea 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 @@ -37,7 +37,7 @@ public sealed partial class QueryFeedbackDelta /// [global::System.Text.Json.Serialization.JsonPropertyName("filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filters { get; set; } + public global::G.AnyOf? Filters { get; set; } /// /// Default Value: 0 @@ -56,7 +56,7 @@ public sealed partial class QueryFeedbackDelta /// [global::System.Text.Json.Serialization.JsonPropertyName("comparative_experiment_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ComparativeExperimentId { get; set; } + public global::G.AnyOf? 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 02d94f3b60..4aa2387bd8 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 @@ -16,7 +16,7 @@ public sealed partial class QueryParamsForPublicRunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Id { get; set; } + public global::G.AnyOf, object>? 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 2a0e5c2cef..7a7a878574 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 @@ -23,21 +23,21 @@ public sealed partial class RepoExampleResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? 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 9b82238d45..6ec23c53e1 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 @@ -23,14 +23,14 @@ public sealed partial class RepoWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// @@ -86,14 +86,14 @@ public sealed partial class RepoWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("original_repo_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OriginalRepoId { get; set; } + public global::G.AnyOf? OriginalRepoId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upstream_repo_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UpstreamRepoId { get; set; } + public global::G.AnyOf? UpstreamRepoId { get; set; } /// /// @@ -101,7 +101,7 @@ public sealed partial class RepoWithLookups [global::System.Text.Json.Serialization.JsonPropertyName("owner")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Owner { get; set; } + public required global::G.AnyOf Owner { get; set; } /// /// @@ -136,14 +136,14 @@ public sealed partial class RepoWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("liked_by_auth_user")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LikedByAuthUser { get; set; } + public global::G.AnyOf? LikedByAuthUser { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_commit_hash")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastCommitHash { get; set; } + public global::G.AnyOf? LastCommitHash { get; set; } /// /// @@ -157,14 +157,14 @@ public sealed partial class RepoWithLookups /// [global::System.Text.Json.Serialization.JsonPropertyName("original_repo_full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OriginalRepoFullName { get; set; } + public global::G.AnyOf? OriginalRepoFullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("upstream_repo_full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UpstreamRepoFullName { get; set; } + public global::G.AnyOf? UpstreamRepoFullName { 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 9d9f4c3c75..5fb1a47663 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 @@ -44,7 +44,7 @@ public sealed partial class Role /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -58,7 +58,7 @@ public sealed partial class Role /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AccessScope { get; set; } + public global::G.AnyOf? 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 925aa930f3..e4e55686cf 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 @@ -24,7 +24,7 @@ public sealed partial class RuleLogActionResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("payload")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Payload { get; set; } + public global::G.AnyOf? 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 7edf6233cb..73390e9d5b 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 @@ -30,21 +30,21 @@ public sealed partial class RuleLogSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunSessionId { get; set; } + public global::G.AnyOf? RunSessionId { get; set; } /// /// @@ -65,35 +65,35 @@ public sealed partial class RuleLogSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToAnnotationQueue { get; set; } + public global::G.AnyOf? AddToAnnotationQueue { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToDataset { get; set; } + public global::G.AnyOf? AddToDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Evaluators { get; set; } + public global::G.AnyOf? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Alerts { get; set; } + public global::G.AnyOf? Alerts { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Webhooks { get; set; } + public global::G.AnyOf? 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 18371ab8a0..0ebdedfbff 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 @@ -30,21 +30,21 @@ public sealed partial class RunGroupRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StartTime { get; set; } + public global::G.AnyOf? StartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? 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 cd36a29ec1..15ccca12f6 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 @@ -23,112 +23,112 @@ public sealed partial class RunGroupStats /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("median_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? MedianTokens { get; set; } + public global::G.AnyOf? MedianTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// 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 09b8a2c1c8..38a5918efc 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 @@ -23,14 +23,14 @@ public sealed partial class RunPublicDatasetSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -51,21 +51,21 @@ public sealed partial class RunPublicDatasetSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -78,77 +78,77 @@ public sealed partial class RunPublicDatasetSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -183,35 +183,35 @@ public sealed partial class RunPublicDatasetSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -236,35 +236,35 @@ public sealed partial class RunPublicDatasetSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// 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 328a9e7e36..7445e1308b 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 @@ -23,14 +23,14 @@ public sealed partial class RunPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -51,21 +51,21 @@ public sealed partial class RunPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -78,77 +78,77 @@ public sealed partial class RunPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -183,35 +183,35 @@ public sealed partial class RunPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -236,35 +236,35 @@ public sealed partial class RunPublicSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? 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.RunRulesCreateSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunRulesCreateSchema.g.verified.cs index c5bcfe8eed..ae1c930e78 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 @@ -23,7 +23,7 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// Default Value: true @@ -36,7 +36,7 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// @@ -50,28 +50,28 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("backfill_from")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? BackfillFrom { get; set; } + public global::G.AnyOf? BackfillFrom { get; set; } /// /// Default Value: false @@ -84,7 +84,7 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("num_few_shot_examples")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumFewShotExamples { get; set; } + public global::G.AnyOf? NumFewShotExamples { get; set; } /// /// Default Value: false @@ -97,14 +97,14 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToAnnotationQueueId { get; set; } + public global::G.AnyOf? AddToAnnotationQueueId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToDatasetId { get; set; } + public global::G.AnyOf? AddToDatasetId { get; set; } /// /// Default Value: false @@ -117,21 +117,21 @@ public sealed partial class RunRulesCreateSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Evaluators { get; set; } + public global::G.AnyOf, object>? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Alerts { get; set; } + public global::G.AnyOf, object>? Alerts { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Webhooks { get; set; } + public global::G.AnyOf, object>? 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 eddcd87a05..ac6ecf1d3d 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 @@ -16,7 +16,7 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; + public global::G.AnyOf? Type { get; set; } = global::G.RunRulesAlertType.Pagerduty; /// /// @@ -30,14 +30,14 @@ public sealed partial class RunRulesPagerdutyAlertSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("summary")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Summary { get; set; } + public global::G.AnyOf? Summary { get; set; } /// /// Default Value: warning /// [global::System.Text.Json.Serialization.JsonPropertyName("severity")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; + public global::G.AnyOf? Severity { get; set; } = global::G.PagerdutySeverity.Warning; /// /// 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 7854623a5f..f516c0560f 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 @@ -36,28 +36,28 @@ public sealed partial class RunRulesSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionName { get; set; } + public global::G.AnyOf? SessionName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetId { get; set; } + public global::G.AnyOf? DatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? DatasetName { get; set; } /// /// @@ -78,49 +78,49 @@ public sealed partial class RunRulesSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Filter { get; set; } + public global::G.AnyOf? Filter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFilter { get; set; } + public global::G.AnyOf? TraceFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tree_filter")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TreeFilter { get; set; } + public global::G.AnyOf? TreeFilter { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToAnnotationQueueId { get; set; } + public global::G.AnyOf? AddToAnnotationQueueId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_annotation_queue_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToAnnotationQueueName { get; set; } + public global::G.AnyOf? AddToAnnotationQueueName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToDatasetId { get; set; } + public global::G.AnyOf? AddToDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("add_to_dataset_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddToDatasetName { get; set; } + public global::G.AnyOf? AddToDatasetName { get; set; } /// /// Default Value: false @@ -133,7 +133,7 @@ public sealed partial class RunRulesSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("corrections_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CorrectionsDatasetId { get; set; } + public global::G.AnyOf? CorrectionsDatasetId { get; set; } /// /// Default Value: false @@ -146,21 +146,21 @@ public sealed partial class RunRulesSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("num_few_shot_examples")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? NumFewShotExamples { get; set; } + public global::G.AnyOf? NumFewShotExamples { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("evaluators")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Evaluators { get; set; } + public global::G.AnyOf, object>? Evaluators { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("alerts")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Alerts { get; set; } + public global::G.AnyOf, object>? Alerts { get; set; } /// /// @@ -168,7 +168,7 @@ public sealed partial class RunRulesSchema [global::System.Text.Json.Serialization.JsonPropertyName("webhooks")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf, object> Webhooks { get; set; } + public required global::G.AnyOf, object> Webhooks { get; set; } /// /// Default Value: false @@ -195,7 +195,7 @@ public sealed partial class RunRulesSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("backfill_from")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? BackfillFrom { get; set; } + public global::G.AnyOf? 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 573eda2d6f..696cbabfc7 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 @@ -23,7 +23,7 @@ public sealed partial class RunRulesWebhookSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("headers")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Headers { get; set; } + public global::G.AnyOf? 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 d91f718859..0bdc41ed1c 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 @@ -23,14 +23,14 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -51,21 +51,21 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -78,77 +78,77 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -183,35 +183,35 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -236,35 +236,35 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// @@ -285,42 +285,42 @@ public sealed partial class RunSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("last_queued_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastQueuedAt { get; set; } + public global::G.AnyOf? LastQueuedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("in_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InDataset { get; set; } + public global::G.AnyOf? InDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("share_token")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ShareToken { get; set; } + public global::G.AnyOf? ShareToken { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_first_received_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFirstReceivedAt { get; set; } + public global::G.AnyOf? TraceFirstReceivedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ttl_seconds")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TtlSeconds { get; set; } + public global::G.AnyOf? 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 e2f7fa845d..ef4a87b9c8 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 @@ -23,14 +23,14 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -51,21 +51,21 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -78,77 +78,77 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -162,7 +162,7 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DottedOrder { get; set; } + public global::G.AnyOf? DottedOrder { get; set; } /// /// @@ -183,49 +183,49 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// @@ -239,14 +239,14 @@ public sealed partial class RunSchemaComparisonView /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("app_path")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AppPath { get; set; } + public global::G.AnyOf? 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.RunSchemaWithAnnotationQueueInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunSchemaWithAnnotationQueueInfo.g.verified.cs index acf55d9fa3..8698f119ae 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 @@ -23,14 +23,14 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Inputs { get; set; } + public global::G.AnyOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsPreview { get; set; } + public global::G.AnyOf? InputsPreview { get; set; } /// /// Enum for run types. @@ -51,21 +51,21 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Error { get; set; } + public global::G.AnyOf? Error { get; set; } /// /// Default Value: 1 @@ -78,77 +78,77 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("serialized")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Serialized { get; set; } + public global::G.AnyOf? Serialized { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Outputs { get; set; } + public global::G.AnyOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_preview")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsPreview { get; set; } + public global::G.AnyOf? OutputsPreview { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ParentRunId { get; set; } + public global::G.AnyOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestId { get; set; } + public global::G.AnyOf? ManifestId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("manifest_s3_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ManifestS3Id { get; set; } + public global::G.AnyOf? ManifestS3Id { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Events { get; set; } + public global::G.AnyOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InputsS3Urls { get; set; } + public global::G.AnyOf? InputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs_s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OutputsS3Urls { get; set; } + public global::G.AnyOf? OutputsS3Urls { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("s3_urls")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? S3Urls { get; set; } + public global::G.AnyOf? S3Urls { get; set; } /// /// @@ -183,35 +183,35 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ChildRunIds { get; set; } + public global::G.AnyOf, object>? ChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("direct_child_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? DirectChildRunIds { get; set; } + public global::G.AnyOf, object>? DirectChildRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_ids")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? ParentRunIds { get; set; } + public global::G.AnyOf, object>? ParentRunIds { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_example_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceExampleId { get; set; } + public global::G.AnyOf? ReferenceExampleId { get; set; } /// /// Default Value: 0 @@ -236,35 +236,35 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("price_model_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PriceModelId { get; set; } + public global::G.AnyOf? PriceModelId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenTime { get; set; } + public global::G.AnyOf? FirstTokenTime { get; set; } /// /// @@ -285,42 +285,42 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("last_queued_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastQueuedAt { get; set; } + public global::G.AnyOf? LastQueuedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("in_dataset")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InDataset { get; set; } + public global::G.AnyOf? InDataset { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("share_token")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ShareToken { get; set; } + public global::G.AnyOf? ShareToken { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_first_received_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceFirstReceivedAt { get; set; } + public global::G.AnyOf? TraceFirstReceivedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("ttl_seconds")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TtlSeconds { get; set; } + public global::G.AnyOf? TtlSeconds { get; set; } /// /// Default Value: false @@ -340,21 +340,21 @@ public sealed partial class RunSchemaWithAnnotationQueueInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("last_reviewed_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastReviewedTime { get; set; } + public global::G.AnyOf? LastReviewedTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("added_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AddedAt { get; set; } + public global::G.AnyOf? AddedAt { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("effective_added_at")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EffectiveAddedAt { get; set; } + public global::G.AnyOf? 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.RunStats.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.RunStats.g.verified.cs index 23600b6189..299a66b57b 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 @@ -23,112 +23,112 @@ public sealed partial class RunStats /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("median_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? MedianTokens { get; set; } + public global::G.AnyOf? MedianTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? 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.SearchedFewShotExample.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.SearchedFewShotExample.g.verified.cs index 341b82c502..4046cafe71 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 @@ -37,7 +37,7 @@ public sealed partial class SearchedFewShotExample /// [global::System.Text.Json.Serialization.JsonPropertyName("debug_info")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DebugInfo { get; set; } + public global::G.AnyOf? 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 8d984b8604..5865a4b009 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 @@ -24,7 +24,7 @@ public sealed partial class SecretUpsert [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.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.ServiceAccount.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ServiceAccount.g.verified.cs index b463fb3fd3..a414a56196 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 @@ -52,7 +52,7 @@ public sealed partial class ServiceAccount [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf DefaultWorkspaceId { get; set; } + public required global::G.AnyOf 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 a20e867e4b..3bd8e17baa 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 @@ -52,7 +52,7 @@ public sealed partial class ServiceAccountCreateResponse [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf DefaultWorkspaceId { get; set; } + public required global::G.AnyOf 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 90c08e1829..cf57628f4d 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 @@ -52,7 +52,7 @@ public sealed partial class ServiceAccountDeleteResponse [global::System.Text.Json.Serialization.JsonPropertyName("default_workspace_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf DefaultWorkspaceId { get; set; } + public required global::G.AnyOf 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 ca38664d92..6fc0508431 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 @@ -37,14 +37,14 @@ public sealed partial class SingleCustomChartResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Metadata { get; set; } + public global::G.AnyOf? Metadata { get; set; } /// /// @@ -73,7 +73,7 @@ public sealed partial class SingleCustomChartResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("common_filters")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.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/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.StripeBusinessBillingInfo.g.verified.cs index 38d447c889..07372e00e2 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 @@ -23,7 +23,7 @@ public sealed partial class StripeBusinessBillingInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("address")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Address { get; set; } + public global::G.AnyOf? 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 1b1c1880ef..76934c37eb 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 @@ -16,21 +16,21 @@ public sealed partial class StripeBusinessInfoInput /// [global::System.Text.Json.Serialization.JsonPropertyName("company_info")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompanyInfo { get; set; } + public global::G.AnyOf? CompanyInfo { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tax_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TaxId { get; set; } + public global::G.AnyOf? TaxId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("invoice_email")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InvoiceEmail { get; set; } + public global::G.AnyOf? 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 ff93051fcd..11797bc355 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 @@ -16,21 +16,21 @@ public sealed partial class StripeBusinessInfoOutput /// [global::System.Text.Json.Serialization.JsonPropertyName("company_info")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompanyInfo { get; set; } + public global::G.AnyOf? CompanyInfo { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tax_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TaxId { get; set; } + public global::G.AnyOf? TaxId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("invoice_email")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? InvoiceEmail { get; set; } + public global::G.AnyOf? 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 c39c1e311c..5ad962dd7f 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 @@ -23,7 +23,7 @@ public sealed partial class StripeCustomerAddress /// [global::System.Text.Json.Serialization.JsonPropertyName("line2")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Line2 { get; set; } + public global::G.AnyOf? Line2 { get; set; } /// /// @@ -37,7 +37,7 @@ public sealed partial class StripeCustomerAddress /// [global::System.Text.Json.Serialization.JsonPropertyName("state")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? State { get; set; } + public global::G.AnyOf? 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 c1e9648b88..a117d80ba2 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 @@ -16,35 +16,35 @@ public sealed partial class StripePaymentMethodInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("brand")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Brand { get; set; } + public global::G.AnyOf? Brand { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last4")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Last4 { get; set; } + public global::G.AnyOf? Last4 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("exp_month")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExpMonth { get; set; } + public global::G.AnyOf? ExpMonth { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("exp_year")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ExpYear { get; set; } + public global::G.AnyOf? ExpYear { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("email")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Email { get; set; } + public global::G.AnyOf? 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 978c6aee3f..8b46f358e5 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 @@ -16,7 +16,7 @@ public sealed partial class TTLSettings /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// 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 1524d40989..4a791a0a30 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 @@ -23,7 +23,7 @@ public sealed partial class TagKey /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 2f8ae26fe1..67dd4071f7 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 @@ -23,7 +23,7 @@ public sealed partial class TagKeyCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 8dc0ec1fa0..095b651a45 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 @@ -16,14 +16,14 @@ public sealed partial class TagKeyUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("key")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Key { get; set; } + public global::G.AnyOf? Key { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 ccc7e67bcf..a686075e0b 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 @@ -23,7 +23,7 @@ public sealed partial class TagKeyWithValues /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 c66f90606d..0b772f3b42 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 @@ -23,7 +23,7 @@ public sealed partial class TagKeyWithValuesAndTaggings /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 f8d9f5c283..fbc382cc0b 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 @@ -23,7 +23,7 @@ public sealed partial class TagValue /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 ea64b6dcd1..caf1e9eae0 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 @@ -23,7 +23,7 @@ public sealed partial class TagValueCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 7cd1888c6e..cdadb9e47e 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 @@ -16,14 +16,14 @@ public sealed partial class TagValueUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("value")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Value { get; set; } + public global::G.AnyOf? Value { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 93d756ce88..e7f661758f 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 @@ -23,7 +23,7 @@ public sealed partial class TagValueWithTaggings /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? 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 dc6a737f00..b89675a9df 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 @@ -22,7 +22,7 @@ public sealed partial class TenantCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -36,7 +36,7 @@ public sealed partial class TenantCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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.TenantForUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantForUser.g.verified.cs index ec939bcb8d..d8cfc23693 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 @@ -23,7 +23,7 @@ public sealed partial class TenantForUser /// [global::System.Text.Json.Serialization.JsonPropertyName("organization_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? OrganizationId { get; set; } + public global::G.AnyOf? OrganizationId { get; set; } /// /// @@ -51,7 +51,7 @@ public sealed partial class TenantForUser /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? TenantHandle { get; set; } /// /// Default Value: false @@ -64,21 +64,21 @@ public sealed partial class TenantForUser /// [global::System.Text.Json.Serialization.JsonPropertyName("role_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleId { get; set; } + public global::G.AnyOf? RoleId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RoleName { get; set; } + public global::G.AnyOf? RoleName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("permissions")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Permissions { get; set; } + public global::G.AnyOf, object>? 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 ef56d7ecae..65eda3633e 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 @@ -44,7 +44,7 @@ public sealed partial class TenantShareDatasetToken /// [global::System.Text.Json.Serialization.JsonPropertyName("dataset_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DatasetName { get; set; } + public global::G.AnyOf? 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 47b661d6df..74c824bc57 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 @@ -44,28 +44,28 @@ public sealed partial class TenantShareRunToken /// [global::System.Text.Json.Serialization.JsonPropertyName("run_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunName { get; set; } + public global::G.AnyOf? RunName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunType { get; set; } + public global::G.AnyOf? RunType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionId { get; set; } + public global::G.AnyOf? SessionId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionName { get; set; } + public global::G.AnyOf? 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.TenantShareTokensResponse.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareTokensResponse.g.verified.cs index b9e3825d16..7b2fbe88b6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareTokensResponse.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TenantShareTokensResponse.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class TenantShareTokensResponse /// [global::System.Text.Json.Serialization.JsonPropertyName("entities")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Entities { get; set; } + public required global::System.Collections.Generic.IList> Entities { 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 d23a23c261..af4a9a899c 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 @@ -23,14 +23,14 @@ public sealed partial class TenantUsageLimitInfo /// [global::System.Text.Json.Serialization.JsonPropertyName("usage_limit_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? UsageLimitType { get; set; } + public global::G.AnyOf? UsageLimitType { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_limit")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantLimit { get; set; } + public global::G.AnyOf? 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.TracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSession.g.verified.cs index 99f99e4112..cbd14b2515 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 @@ -22,14 +22,14 @@ public sealed partial class TracerSession /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -42,28 +42,28 @@ public sealed partial class TracerSession /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// @@ -77,77 +77,77 @@ public sealed partial class TracerSession /// [global::System.Text.Json.Serialization.JsonPropertyName("run_count")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? RunCount { get; set; } + public global::G.AnyOf? RunCount { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP50 { get; set; } + public global::G.AnyOf? LatencyP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("latency_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LatencyP99 { get; set; } + public global::G.AnyOf? LatencyP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p50")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP50 { get; set; } + public global::G.AnyOf? FirstTokenP50 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("first_token_p99")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FirstTokenP99 { get; set; } + public global::G.AnyOf? FirstTokenP99 { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalTokens { get; set; } + public global::G.AnyOf? TotalTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptTokens { get; set; } + public global::G.AnyOf? PromptTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_tokens")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionTokens { get; set; } + public global::G.AnyOf? CompletionTokens { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("total_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TotalCost { get; set; } + public global::G.AnyOf? TotalCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("prompt_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? PromptCost { get; set; } + public global::G.AnyOf? PromptCost { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("completion_cost")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? CompletionCost { get; set; } + public global::G.AnyOf? CompletionCost { get; set; } /// /// @@ -161,56 +161,56 @@ public sealed partial class TracerSession /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastRunStartTime { get; set; } + public global::G.AnyOf? LastRunStartTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("last_run_start_time_live")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastRunStartTimeLive { get; set; } + public global::G.AnyOf? LastRunStartTimeLive { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackStats { get; set; } + public global::G.AnyOf? FeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("session_feedback_stats")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? SessionFeedbackStats { get; set; } + public global::G.AnyOf? SessionFeedbackStats { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("run_facets")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? RunFacets { get; set; } + public global::G.AnyOf, object>? RunFacets { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ErrorRate { get; set; } + public global::G.AnyOf? ErrorRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("streaming_rate")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? StreamingRate { get; set; } + public global::G.AnyOf? StreamingRate { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("test_run_number")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TestRunNumber { get; set; } + public global::G.AnyOf? 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 7d3631cdb0..9c7e219d3f 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 @@ -22,14 +22,14 @@ public sealed partial class TracerSessionCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -42,35 +42,35 @@ public sealed partial class TracerSessionCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Id { get; set; } + public global::G.AnyOf? 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.TracerSessionUpdate.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.TracerSessionUpdate.g.verified.cs index 4482d78b50..00a7678a1a 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 @@ -16,42 +16,42 @@ public sealed partial class TracerSessionUpdate /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Name { get; set; } + public global::G.AnyOf? Name { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? 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 3bab71bab4..baec7f7315 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 @@ -22,14 +22,14 @@ public sealed partial class TracerSessionWithoutVirtualFields /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? EndTime { get; set; } + public global::G.AnyOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Extra { get; set; } + public global::G.AnyOf? Extra { get; set; } /// /// @@ -42,28 +42,28 @@ public sealed partial class TracerSessionWithoutVirtualFields /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("default_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? DefaultDatasetId { get; set; } + public global::G.AnyOf? DefaultDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("reference_dataset_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? ReferenceDatasetId { get; set; } + public global::G.AnyOf? ReferenceDatasetId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_tier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TraceTier { get; set; } + public global::G.AnyOf? TraceTier { get; set; } /// /// @@ -84,7 +84,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::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LastRunStartTimeLive { get; set; } + public global::G.AnyOf? 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.UpdateFeedbackConfigSchema.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpdateFeedbackConfigSchema.g.verified.cs index 3dbe377964..b6e4be1c76 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 @@ -23,14 +23,14 @@ public sealed partial class UpdateFeedbackConfigSchema /// [global::System.Text.Json.Serialization.JsonPropertyName("feedback_config")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FeedbackConfig { get; set; } + public global::G.AnyOf? FeedbackConfig { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_lower_score_better")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsLowerScoreBetter { get; set; } + public global::G.AnyOf? 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 811a24ee78..2b34c991da 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 @@ -16,35 +16,35 @@ public sealed partial class UpdateRepoRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Description { get; set; } + public global::G.AnyOf? Description { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("readme")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Readme { get; set; } + public global::G.AnyOf? Readme { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf, object>? Tags { get; set; } + public global::G.AnyOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_public")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsPublic { get; set; } + public global::G.AnyOf? IsPublic { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("is_archived")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? IsArchived { get; set; } + public global::G.AnyOf? 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 06d92b74d2..c779068709 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 @@ -16,84 +16,84 @@ public sealed partial class UpdateRunRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("trace_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? TraceId { get; set; } + public global::G.OneOf? TraceId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("dotted_order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? DottedOrder { get; set; } + public global::G.OneOf? DottedOrder { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("parent_run_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ParentRunId { get; set; } + public global::G.OneOf? ParentRunId { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("end_time")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? EndTime { get; set; } + public global::G.OneOf? EndTime { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("error")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Error { get; set; } + public global::G.OneOf? Error { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("inputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Inputs { get; set; } + public global::G.OneOf? Inputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Outputs { get; set; } + public global::G.OneOf? Outputs { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("events")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Events { get; set; } + public global::G.OneOf, object>? Events { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("tags")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf, object>? Tags { get; set; } + public global::G.OneOf, object>? Tags { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("extra")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? Extra { get; set; } + public global::G.OneOf? Extra { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("input_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? InputAttachments { get; set; } + public global::G.OneOf? InputAttachments { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output_attachments")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? OutputAttachments { get; set; } + public global::G.OneOf? 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.UpsertTTLSettingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.UpsertTTLSettingsRequest.g.verified.cs index ae88bb42b2..ba6dfe3800 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 @@ -16,7 +16,7 @@ public sealed partial class UpsertTTLSettingsRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantId { get; set; } + public global::G.AnyOf? TenantId { get; set; } /// /// 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 0757ec79c9..0ebc16848b 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 @@ -23,7 +23,7 @@ public sealed partial class UserWithPassword /// [global::System.Text.Json.Serialization.JsonPropertyName("ls_user_id")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? LsUserId { get; set; } + public global::G.AnyOf? LsUserId { get; set; } /// /// @@ -51,21 +51,21 @@ public sealed partial class UserWithPassword /// [global::System.Text.Json.Serialization.JsonPropertyName("full_name")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? FullName { get; set; } + public global::G.AnyOf? FullName { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("avatar_url")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? AvatarUrl { get; set; } + public global::G.AnyOf? AvatarUrl { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("password")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Password { get; set; } + public global::G.AnyOf? 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.ValidationError.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ValidationError.g.verified.cs index 1868a06a87..4bbd0af7c0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ValidationError.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.Models.ValidationError.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class ValidationError /// [global::System.Text.Json.Serialization.JsonPropertyName("loc")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Loc { get; set; } + public required global::System.Collections.Generic.IList> Loc { get; set; } /// /// 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 6ab9d7746f..f9a56d6143 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 @@ -29,7 +29,7 @@ public sealed partial class WorkspaceCreate /// [global::System.Text.Json.Serialization.JsonPropertyName("tenant_handle")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? TenantHandle { get; set; } + public global::G.AnyOf? 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 e6d5267f17..7a3c378784 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 @@ -112,11 +112,11 @@ partial void ProcessAddMemberToCurrentOrgResponseContent( public async global::System.Threading.Tasks.Task AddMemberToCurrentOrgAsync( string email, bool readOnly = false, - global::System.AnyOf? roleId = default, - global::System.AnyOf, object>? workspaceIds = default, - global::System.AnyOf? workspaceRoleId = default, - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, + 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.Threading.CancellationToken cancellationToken = default) { var request = new global::G.PendingIdentityCreate 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 2a391d6e9d..0a059e0689 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::System.AnyOf colorScheme); + ref global::G.AnyOf colorScheme); partial void PrepareGetDashboardRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::G.OrganizationDashboardType type, - global::System.AnyOf colorScheme); + global::G.AnyOf colorScheme); partial void ProcessGetDashboardResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -35,7 +35,7 @@ partial void ProcessGetDashboardResponseContent( /// public async global::System.Threading.Tasks.Task GetDashboardAsync( global::G.OrganizationDashboardType type, - global::System.AnyOf colorScheme, + global::G.AnyOf colorScheme, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 a546b38f70..3c9d79b9c2 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 @@ -107,9 +107,9 @@ partial void ProcessSetCompanyInfoResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task SetCompanyInfoAsync( - global::System.AnyOf? companyInfo = default, - global::System.AnyOf? taxId = default, - global::System.AnyOf? invoiceEmail = default, + global::G.AnyOf? companyInfo = default, + global::G.AnyOf? taxId = default, + global::G.AnyOf? 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 589dc355fb..566e34f9de 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 @@ -114,9 +114,9 @@ partial void ProcessUpdateCurrentOrgMemberResponseContent( /// public async global::System.Threading.Tasks.Task UpdateCurrentOrgMemberAsync( global::System.Guid identityId, - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, - global::System.AnyOf? roleId = default, + global::G.AnyOf? password = default, + global::G.AnyOf? fullName = default, + global::G.AnyOf? 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.UpdateCurrentUser.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.OrgsClient.UpdateCurrentUser.g.verified.cs index 7e030da3d6..a55f3b0217 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 @@ -105,8 +105,8 @@ partial void ProcessUpdateCurrentUserResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task UpdateCurrentUserAsync( - global::System.AnyOf? password = default, - global::System.AnyOf? fullName = default, + global::G.AnyOf? password = default, + global::G.AnyOf? 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.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PlaygroundSettingsClient.CreatePlaygroundSettings.g.verified.cs index 2358681f19..9b4cc1fe8e 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 @@ -106,7 +106,7 @@ partial void ProcessCreatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task CreatePlaygroundSettingsAsync( global::G.PlaygroundSettingsCreateRequestSettings settings, - global::System.AnyOf? name = default, + global::G.AnyOf? 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 2d8e57f12e..5c64563953 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 @@ -112,7 +112,7 @@ partial void ProcessUpdatePlaygroundSettingsResponseContent( /// public async global::System.Threading.Tasks.Task UpdatePlaygroundSettingsAsync( string playgroundSettingsId, - global::System.AnyOf? name = default, + global::G.AnyOf? 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.QuerySharedDatasetRuns.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.QuerySharedDatasetRuns.g.verified.cs index fdf54a1ed8..df347a58b9 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 @@ -137,26 +137,26 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedDatasetRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, - global::System.AnyOf? cursor = default, + 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, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AllOf? order = default, + global::G.AllOf? order = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyParamsForRunSchema 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 221fb72781..d6e10e7076 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 @@ -112,7 +112,7 @@ partial void ProcessQuerySharedRunsResponseContent( /// public async global::System.Threading.Tasks.Task QuerySharedRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, + global::G.AnyOf, object>? 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 01a9e3ec1c..7f228ddf7e 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,21 +9,21 @@ public partial class PublicClient partial void PrepareReadSharedComparativeExperimentsArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadSharedComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadSharedComparativeExperimentsResponse( global::System.Net.Http.HttpClient httpClient, @@ -57,11 +57,11 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedComparativeExperimentsAsync( global::System.Guid shareToken, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs index 61fc2d89f0..057d89dcbe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.PublicClient.ReadSharedDataset.g.verified.cs @@ -11,7 +11,7 @@ partial void PrepareReadSharedDatasetArguments( ref global::System.Guid shareToken, ref int offset, ref int limit, - ref global::System.AllOf? sortBy, + ref global::G.AllOf? sortBy, ref bool sortByDesc); partial void PrepareReadSharedDatasetRequest( global::System.Net.Http.HttpClient httpClient, @@ -19,7 +19,7 @@ partial void PrepareReadSharedDatasetRequest( global::System.Guid shareToken, int offset, int limit, - global::System.AllOf? sortBy, + global::G.AllOf? sortBy, bool sortByDesc); partial void ProcessReadSharedDatasetResponse( global::System.Net.Http.HttpClient httpClient, @@ -53,7 +53,7 @@ partial void ProcessReadSharedDatasetResponseContent( global::System.Guid shareToken, int offset = 0, int limit = 100, - global::System.AllOf? sortBy = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { 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 ae42b6edd8..6ac40a464b 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 @@ -32,7 +32,7 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::G.QueryExampleSchemaWithRuns request, global::System.Threading.CancellationToken cancellationToken = default) @@ -98,7 +98,7 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( } return - global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? + global::System.Text.Json.JsonSerializer.Deserialize, global::System.Collections.Generic.IList>?>(__content, _jsonSerializerOptions) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); } @@ -118,11 +118,11 @@ partial void ProcessReadSharedDatasetExamplesWithRunsResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( + public async global::System.Threading.Tasks.Task, global::System.Collections.Generic.IList>> ReadSharedDatasetExamplesWithRunsAsync( global::System.Guid shareToken, global::System.Collections.Generic.IList sessionIds, - global::System.AnyOf? comparativeExperimentId = default, - global::System.AnyOf? filters = default, + global::G.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 6e6e22fb29..4ca083ee64 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level); + ref global::G.AnyOf, object>? user, + ref global::G.AnyOf? hasComment, + ref global::G.AnyOf? hasScore, + ref global::G.AnyOf? level); partial void PrepareReadSharedDatasetFeedbackRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level); + global::G.AnyOf, object>? user, + global::G.AnyOf? hasComment, + global::G.AnyOf? hasScore, + global::G.AnyOf? level); partial void ProcessReadSharedDatasetFeedbackResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -65,16 +65,16 @@ partial void ProcessReadSharedDatasetFeedbackResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetFeedbackAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, + global::G.AnyOf, object>? user = default, + global::G.AnyOf? hasComment = default, + global::G.AnyOf? hasScore = default, + global::G.AnyOf? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 c7ac07af60..9af7a75968 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::System.AnyOf, object>? id, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? datasetVersion, - ref global::System.AllOf? sortBy, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf? name, + ref global::G.AnyOf? nameContains, + ref global::G.AnyOf? datasetVersion, + ref global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf? sortByFeedbackKey, + ref global::G.AnyOf? sortByFeedbackKey, ref int offset, ref int limit, ref bool facets, - ref global::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadSharedDatasetTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? id, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? datasetVersion, - global::System.AllOf? sortBy, + global::G.AnyOf, object>? id, + global::G.AnyOf? name, + global::G.AnyOf? nameContains, + global::G.AnyOf? datasetVersion, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf? sortByFeedbackKey, + global::G.AnyOf? sortByFeedbackKey, int offset, int limit, bool facets, - global::System.AnyOf? accept); + global::G.AnyOf? accept); partial void ProcessReadSharedDatasetTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -74,17 +74,17 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedDatasetTracerSessionsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? datasetVersion = default, - global::System.AllOf? sortBy = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf? name = default, + global::G.AnyOf? nameContains = default, + global::G.AnyOf? datasetVersion = default, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf? sortByFeedbackKey = default, + global::G.AnyOf? sortByFeedbackKey = default, int offset = 0, int limit = 100, bool facets = false, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 d2c606f6d9..06389fafe6 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 @@ -125,10 +125,10 @@ partial void ProcessReadSharedDeltaResponseContent( global::System.Guid baselineSessionId, global::System.Collections.Generic.IList comparisonSessionIds, string feedbackKey, - global::System.AnyOf? filters = default, + global::G.AnyOf? filters = default, int offset = 0, int limit = 100, - global::System.AnyOf? comparativeExperimentId = default, + global::G.AnyOf? 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 dfc146ad49..6cea210824 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 @@ -10,24 +10,24 @@ public partial class PublicClient partial void PrepareReadSharedExamplesArguments( global::System.Net.Http.HttpClient httpClient, ref global::System.Guid shareToken, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? asOf, - ref global::System.AnyOf? metadata, + ref global::G.AnyOf, object>? id, + ref global::G.AnyOf? asOf, + ref global::G.AnyOf? metadata, ref int offset, ref int limit, global::System.Collections.Generic.IList? select, - ref global::System.AnyOf? filter); + ref global::G.AnyOf? filter); partial void PrepareReadSharedExamplesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? id, - global::System.AnyOf? asOf, - global::System.AnyOf? metadata, + global::G.AnyOf, object>? id, + global::G.AnyOf? asOf, + global::G.AnyOf? metadata, int offset, int limit, global::System.Collections.Generic.IList? select, - global::System.AnyOf? filter); + global::G.AnyOf? filter); partial void ProcessReadSharedExamplesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -62,13 +62,13 @@ partial void ProcessReadSharedExamplesResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedExamplesAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? asOf = default, - global::System.AnyOf? metadata = default, + global::G.AnyOf, object>? id = default, + global::G.AnyOf? asOf = default, + global::G.AnyOf? metadata = default, int offset = 0, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AnyOf? filter = default, + global::G.AnyOf? filter = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 e10a86c0d4..906cbac013 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::System.AnyOf, object>? run, - ref global::System.AnyOf, object>? key, - ref global::System.AnyOf, object>? session, - ref global::System.AnyOf, object>? source, + ref global::G.AnyOf, object>? run, + ref global::G.AnyOf, object>? key, + ref global::G.AnyOf, object>? session, + ref global::G.AnyOf, object>? source, ref int limit, ref int offset, - ref global::System.AnyOf, object>? user, - ref global::System.AnyOf? hasComment, - ref global::System.AnyOf? hasScore, - ref global::System.AnyOf? level); + ref global::G.AnyOf, object>? user, + ref global::G.AnyOf? hasComment, + ref global::G.AnyOf? hasScore, + ref global::G.AnyOf? level); partial void PrepareReadSharedFeedbacksRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid shareToken, - global::System.AnyOf, object>? run, - global::System.AnyOf, object>? key, - global::System.AnyOf, object>? session, - global::System.AnyOf, object>? source, + global::G.AnyOf, object>? run, + global::G.AnyOf, object>? key, + global::G.AnyOf, object>? session, + global::G.AnyOf, object>? source, int limit, int offset, - global::System.AnyOf, object>? user, - global::System.AnyOf? hasComment, - global::System.AnyOf? hasScore, - global::System.AnyOf? level); + global::G.AnyOf, object>? user, + global::G.AnyOf? hasComment, + global::G.AnyOf? hasScore, + global::G.AnyOf? level); partial void ProcessReadSharedFeedbacksResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -64,16 +64,16 @@ partial void ProcessReadSharedFeedbacksResponseContent( /// public async global::System.Threading.Tasks.Task> ReadSharedFeedbacksAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? run = default, - global::System.AnyOf, object>? key = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? source = default, + global::G.AnyOf, object>? run = default, + global::G.AnyOf, object>? key = default, + global::G.AnyOf, object>? session = default, + global::G.AnyOf, object>? source = default, int limit = 100, int offset = 0, - global::System.AnyOf, object>? user = default, - global::System.AnyOf? hasComment = default, - global::System.AnyOf? hasScore = default, - global::System.AnyOf? level = default, + global::G.AnyOf, object>? user = default, + global::G.AnyOf? hasComment = default, + global::G.AnyOf? hasScore = default, + global::G.AnyOf? level = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 902aa447d9..198248c46c 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 @@ -127,22 +127,22 @@ partial void ProcessStatsSharedDatasetRunsResponseContent( /// public async global::System.Threading.Tasks.Task StatsSharedDatasetRunsAsync( global::System.Guid shareToken, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, + 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.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 f9fa57d4d0..d64bc6ab2d 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 @@ -110,9 +110,9 @@ partial void ProcessCreateRepoResponseContent( public async global::System.Threading.Tasks.Task CreateRepoAsync( string repoHandle, bool isPublic, - global::System.AnyOf? description = default, - global::System.AnyOf? readme = default, - global::System.AnyOf, object>? tags = default, + global::G.AnyOf? description = default, + global::G.AnyOf? readme = default, + global::G.AnyOf, object>? 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 e69c81985b..069bbe632b 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 @@ -125,10 +125,10 @@ partial void ProcessForkRepoResponseContent( string owner, string repo, string repoHandle, - global::System.AnyOf? readme = default, - global::System.AnyOf? description = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isPublic = default, + global::G.AnyOf? readme = default, + global::G.AnyOf? description = default, + global::G.AnyOf, object>? tags = default, + global::G.AnyOf? 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 ac570f1225..2f5c2e3f89 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::System.AnyOf? tenantHandle, - ref global::System.AnyOf? tenantId, - ref global::System.AnyOf? query, - ref global::System.AnyOf? hasCommits, - ref global::System.AnyOf, object>? tags, - ref global::System.AnyOf? isArchived, - ref global::System.AnyOf? isPublic, - ref global::System.AnyOf? upstreamRepoOwner, - ref global::System.AnyOf? upstreamRepoHandle, - ref global::System.AnyOf? matchPrefix, - ref global::System.AnyOf, object>? tagValueId); + 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); partial void PrepareListRepoTagsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? tenantHandle, - global::System.AnyOf? tenantId, - global::System.AnyOf? query, - global::System.AnyOf? hasCommits, - global::System.AnyOf, object>? tags, - global::System.AnyOf? isArchived, - global::System.AnyOf? isPublic, - global::System.AnyOf? upstreamRepoOwner, - global::System.AnyOf? upstreamRepoHandle, - global::System.AnyOf? matchPrefix, - global::System.AnyOf, object>? tagValueId); + 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); 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::System.AnyOf? tenantHandle = default, - global::System.AnyOf? tenantId = default, - global::System.AnyOf? query = default, - global::System.AnyOf? hasCommits = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isArchived = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? upstreamRepoOwner = default, - global::System.AnyOf? upstreamRepoHandle = default, - global::System.AnyOf? matchPrefix = default, - global::System.AnyOf, object>? tagValueId = default, + 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::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 1298c0f6da..99d73f6603 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 @@ -10,37 +10,37 @@ partial void PrepareListReposArguments( global::System.Net.Http.HttpClient httpClient, ref int limit, ref int offset, - ref global::System.AnyOf? tenantHandle, - ref global::System.AnyOf? tenantId, - ref global::System.AnyOf? query, - ref global::System.AnyOf? hasCommits, - ref global::System.AnyOf, object>? tags, - ref global::System.AnyOf? isArchived, - ref global::System.AnyOf? isPublic, - ref global::System.AnyOf? upstreamRepoOwner, - ref global::System.AnyOf? upstreamRepoHandle, - ref global::System.AnyOf? matchPrefix, - ref global::System.AnyOf, object>? tagValueId, - ref global::System.AnyOf? sortField, - ref global::System.AnyOf? sortDirection); + 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); partial void PrepareListReposRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, int limit, int offset, - global::System.AnyOf? tenantHandle, - global::System.AnyOf? tenantId, - global::System.AnyOf? query, - global::System.AnyOf? hasCommits, - global::System.AnyOf, object>? tags, - global::System.AnyOf? isArchived, - global::System.AnyOf? isPublic, - global::System.AnyOf? upstreamRepoOwner, - global::System.AnyOf? upstreamRepoHandle, - global::System.AnyOf? matchPrefix, - global::System.AnyOf, object>? tagValueId, - global::System.AnyOf? sortField, - global::System.AnyOf? sortDirection); + 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); partial void ProcessListReposResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -80,19 +80,19 @@ partial void ProcessListReposResponseContent( public async global::System.Threading.Tasks.Task ListReposAsync( int limit = 20, int offset = 0, - global::System.AnyOf? tenantHandle = default, - global::System.AnyOf? tenantId = default, - global::System.AnyOf? query = default, - global::System.AnyOf? hasCommits = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isArchived = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? upstreamRepoOwner = default, - global::System.AnyOf? upstreamRepoHandle = default, - global::System.AnyOf? matchPrefix = default, - global::System.AnyOf, object>? tagValueId = default, - global::System.AnyOf? sortField = default, - global::System.AnyOf? sortDirection = default, + 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, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 ef36cb1102..e0cbfc4e11 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 @@ -124,11 +124,11 @@ partial void ProcessUpdateRepoResponseContent( public async global::System.Threading.Tasks.Task UpdateRepoAsync( string owner, string repo, - global::System.AnyOf? description = default, - global::System.AnyOf? readme = default, - global::System.AnyOf, object>? tags = default, - global::System.AnyOf? isPublic = default, - global::System.AnyOf? isArchived = default, + 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, 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 6a88504b5a..dcc47375a2 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 @@ -131,22 +131,22 @@ partial void ProcessCreateRuleResponseContent( public async global::System.Threading.Tasks.Task CreateRuleAsync( string displayName, double samplingRate, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? sessionId = default, bool isEnabled = true, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? backfillFrom = default, + 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, bool useCorrectionsDataset = false, - global::System.AnyOf? numFewShotExamples = default, + global::G.AnyOf? numFewShotExamples = default, bool extendOnly = false, - global::System.AnyOf? addToAnnotationQueueId = default, - global::System.AnyOf? addToDatasetId = default, + global::G.AnyOf? addToAnnotationQueueId = default, + global::G.AnyOf? addToDatasetId = default, bool addToDatasetPreferCorrection = false, - global::System.AnyOf, object>? evaluators = default, - global::System.AnyOf, object>? alerts = default, - global::System.AnyOf, object>? webhooks = default, + global::G.AnyOf, object>? evaluators = default, + global::G.AnyOf, object>? alerts = default, + global::G.AnyOf, object>? 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 7eea356c18..bd2b5d8c47 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 @@ -125,24 +125,24 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string name, global::G.CreateRunRequestRunType runType, - global::System.OneOf? inputs = default, - global::System.OneOf? startTime = default, - global::System.OneOf? endTime = default, - global::System.OneOf? extra = default, - global::System.OneOf? error = default, - global::System.OneOf? serialized = default, - global::System.OneOf? outputs = default, - global::System.OneOf? parentRunId = default, - global::System.OneOf, object>? events = default, - global::System.OneOf, object>? tags = default, - global::System.OneOf? traceId = default, - global::System.OneOf? dottedOrder = default, - global::System.OneOf? id = default, - global::System.OneOf? sessionId = default, - global::System.OneOf? sessionName = default, - global::System.OneOf? referenceExampleId = default, - global::System.OneOf? inputAttachments = default, - global::System.OneOf? outputAttachments = default, + 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, 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 27b0547d72..0c709ba24c 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::System.AnyOf? accept, + ref global::G.AnyOf? accept, global::G.RunGroupRequest request); partial void PrepareGroupRunsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? accept, + global::G.AnyOf? 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::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { request = request ?? throw new global::System.ArgumentNullException(nameof(request)); @@ -122,11 +122,11 @@ partial void ProcessGroupRunsResponseContent( /// public async global::System.Threading.Tasks.Task GroupRunsAsync( global::System.Guid sessionId, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::G.RunGroupBy groupBy = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? filter = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? 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 503e732e33..41b156a803 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::System.AnyOf? startTime, - ref global::System.AnyOf? endTime); + ref global::G.AnyOf? startTime, + ref global::G.AnyOf? 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::System.AnyOf? startTime, - global::System.AnyOf? endTime); + global::G.AnyOf? startTime, + global::G.AnyOf? 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::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? endTime = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 400a5389eb..a93aa7fbf5 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,13 +8,13 @@ public partial class RunClient { partial void PrepareListRulesArguments( global::System.Net.Http.HttpClient httpClient, - ref global::System.AnyOf? datasetId, - ref global::System.AnyOf? sessionId); + ref global::G.AnyOf? datasetId, + ref global::G.AnyOf? sessionId); partial void PrepareListRulesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? datasetId, - global::System.AnyOf? sessionId); + global::G.AnyOf? datasetId, + global::G.AnyOf? sessionId); partial void ProcessListRulesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -33,8 +33,8 @@ partial void ProcessListRulesResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ListRulesAsync( - global::System.AnyOf? datasetId = default, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? datasetId = default, + global::G.AnyOf? sessionId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.MonitorTracerSession.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.MonitorTracerSession.g.verified.cs index 1e09d7745d..0e3861d971 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.MonitorTracerSession.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.RunClient.MonitorTracerSession.g.verified.cs @@ -111,8 +111,8 @@ partial void ProcessMonitorTracerSessionResponseContent( public async global::System.Threading.Tasks.Task MonitorTracerSessionAsync( global::System.Collections.Generic.IList groups, string? timezone = "UTC", - global::System.AllOf? interval = default, - global::System.AllOf? stride = default, + global::G.AllOf? interval = default, + global::G.AllOf? stride = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.MonitorRequest 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 443117813c..9f0d56a74a 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 @@ -127,26 +127,26 @@ partial void ProcessQueryRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task QueryRunsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, - global::System.AnyOf? cursor = default, + 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, int limit = 100, global::System.Collections.Generic.IList? select = default, - global::System.AllOf? order = default, + global::G.AllOf? order = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.BodyParamsForRunSchema 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 0ecc4d6ffb..80eb952f4a 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) { @@ -84,7 +84,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 12bb1d07b0..bd23e65b14 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 @@ -116,9 +116,9 @@ partial void ProcessStatsGroupRunsResponseContent( public async global::System.Threading.Tasks.Task StatsGroupRunsAsync( global::System.Guid sessionId, global::G.RunGroupBy groupBy = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, + global::G.AnyOf? filter = default, + global::G.AnyOf? startTime = default, + global::G.AnyOf? 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 927550bbb1..2cde143033 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 @@ -119,22 +119,22 @@ partial void ProcessStatsRunsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task StatsRunsAsync( - global::System.AnyOf, object>? id = default, - global::System.AnyOf? trace = default, - global::System.AnyOf? parentRun = default, - global::System.AnyOf? runType = default, - global::System.AnyOf, object>? session = default, - global::System.AnyOf, object>? referenceExample = default, - global::System.AnyOf? executionOrder = default, - global::System.AnyOf? startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? error = default, - global::System.AnyOf? query = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? isRoot = default, - global::System.AnyOf? dataSourceType = default, + 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.Threading.CancellationToken cancellationToken = default) { var request = new global::G.FilterQueryParamsForRunSchema 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 cddd30b22a..718f05c5f8 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 @@ -139,22 +139,22 @@ partial void ProcessUpdateRuleResponseContent( global::System.Guid ruleId, string displayName, double samplingRate, - global::System.AnyOf? sessionId = default, + global::G.AnyOf? sessionId = default, bool isEnabled = true, - global::System.AnyOf? datasetId = default, - global::System.AnyOf? filter = default, - global::System.AnyOf? traceFilter = default, - global::System.AnyOf? treeFilter = default, - global::System.AnyOf? backfillFrom = default, + 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, bool useCorrectionsDataset = false, - global::System.AnyOf? numFewShotExamples = default, + global::G.AnyOf? numFewShotExamples = default, bool extendOnly = false, - global::System.AnyOf? addToAnnotationQueueId = default, - global::System.AnyOf? addToDatasetId = default, + global::G.AnyOf? addToAnnotationQueueId = default, + global::G.AnyOf? addToDatasetId = default, bool addToDatasetPreferCorrection = false, - global::System.AnyOf, object>? evaluators = default, - global::System.AnyOf, object>? alerts = default, - global::System.AnyOf, object>? webhooks = default, + global::G.AnyOf, object>? evaluators = default, + global::G.AnyOf, object>? alerts = default, + global::G.AnyOf, object>? 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 6e34af42dc..48f939bb06 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 @@ -123,18 +123,18 @@ partial void ProcessUpdateRunResponseContent( /// public async global::System.Threading.Tasks.Task UpdateRunAsync( global::System.Guid runId, - global::System.OneOf? traceId = default, - global::System.OneOf? dottedOrder = default, - global::System.OneOf? parentRunId = default, - global::System.OneOf? endTime = default, - global::System.OneOf? error = default, - global::System.OneOf? inputs = default, - global::System.OneOf? outputs = default, - global::System.OneOf, object>? events = default, - global::System.OneOf, object>? tags = default, - global::System.OneOf? extra = default, - global::System.OneOf? inputAttachments = default, - global::System.OneOf? outputAttachments = default, + 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::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 c068c250b6..1529823ff6 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 @@ -109,8 +109,8 @@ partial void ProcessCreateTenantResponseContent( public async global::System.Threading.Tasks.Task CreateTenantAsync( string displayName, global::System.Guid id = default, - global::System.AnyOf? organizationId = default, - global::System.AnyOf? tenantHandle = default, + global::G.AnyOf? organizationId = default, + global::G.AnyOf? tenantHandle = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TenantCreate 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 b452f233f9..be1b9ff512 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 @@ -116,7 +116,7 @@ partial void ProcessCreateFilterViewResponseContent( global::System.Guid sessionId, string filterString, string displayName, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 6f469cb95e..12515a1f3e 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 @@ -125,14 +125,14 @@ partial void ProcessCreateTracerSessionResponseContent( public async global::System.Threading.Tasks.Task CreateTracerSessionAsync( bool upsert = false, global::System.DateTime startTime = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? extra = default, + global::G.AnyOf? endTime = default, + global::G.AnyOf? extra = default, string? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDatasetId = default, - global::System.AnyOf? referenceDatasetId = default, - global::System.AnyOf? traceTier = default, - global::System.AnyOf? id = 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, 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 f3a0624107..6e221021bb 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::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadTracerSessionRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, global::System.Guid sessionId, bool includeStats, - global::System.AnyOf? accept); + global::G.AnyOf? 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::System.AnyOf? accept = default, + global::G.AnyOf? 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 b9866ea36a..530d1d714a 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::System.AnyOf? referenceFree, - ref global::System.AnyOf, object>? referenceDataset, - ref global::System.AnyOf, object>? id, - ref global::System.AnyOf? name, - ref global::System.AnyOf? nameContains, - ref global::System.AnyOf? datasetVersion, - ref global::System.AllOf? sortBy, + 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 global::G.AllOf? sortBy, ref bool sortByDesc, - ref global::System.AnyOf? metadata, - ref global::System.AnyOf? sortByFeedbackKey, + ref global::G.AnyOf? metadata, + ref global::G.AnyOf? sortByFeedbackKey, ref int offset, ref int limit, - ref global::System.AnyOf, object>? tagValueId, + ref global::G.AnyOf, object>? tagValueId, ref bool facets, - ref global::System.AnyOf? accept); + ref global::G.AnyOf? accept); partial void PrepareReadTracerSessionsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? referenceFree, - global::System.AnyOf, object>? referenceDataset, - global::System.AnyOf, object>? id, - global::System.AnyOf? name, - global::System.AnyOf? nameContains, - global::System.AnyOf? datasetVersion, - global::System.AllOf? sortBy, + 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, + global::G.AllOf? sortBy, bool sortByDesc, - global::System.AnyOf? metadata, - global::System.AnyOf? sortByFeedbackKey, + global::G.AnyOf? metadata, + global::G.AnyOf? sortByFeedbackKey, int offset, int limit, - global::System.AnyOf, object>? tagValueId, + global::G.AnyOf, object>? tagValueId, bool facets, - global::System.AnyOf? accept); + global::G.AnyOf? accept); partial void ProcessReadTracerSessionsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -82,21 +82,21 @@ partial void ProcessReadTracerSessionsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> ReadTracerSessionsAsync( - global::System.AnyOf? referenceFree = default, - global::System.AnyOf, object>? referenceDataset = default, - global::System.AnyOf, object>? id = default, - global::System.AnyOf? name = default, - global::System.AnyOf? nameContains = default, - global::System.AnyOf? datasetVersion = default, - global::System.AllOf? sortBy = default, + 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, + global::G.AllOf? sortBy = default, bool sortByDesc = true, - global::System.AnyOf? metadata = default, - global::System.AnyOf? sortByFeedbackKey = default, + global::G.AnyOf? metadata = default, + global::G.AnyOf? sortByFeedbackKey = default, int offset = 0, int limit = 100, - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, bool facets = false, - global::System.AnyOf? accept = default, + global::G.AnyOf? accept = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 97d2274e1d..f582d8cb72 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::System.AnyOf, object>? metadataKeys, - ref global::System.AnyOf? startTime, + ref global::G.AnyOf, object>? metadataKeys, + ref global::G.AnyOf? 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::System.AnyOf, object>? metadataKeys, - global::System.AnyOf? startTime, + global::G.AnyOf, object>? metadataKeys, + global::G.AnyOf? 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::System.AnyOf, object>? metadataKeys = default, - global::System.AnyOf? startTime = default, + global::G.AnyOf, object>? metadataKeys = default, + global::G.AnyOf? 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.TracerSessionsClient.UpdateFilterView.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TracerSessionsClient.UpdateFilterView.g.verified.cs index 8733928af4..f6e246131b 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 @@ -122,9 +122,9 @@ partial void ProcessUpdateFilterViewResponseContent( public async global::System.Threading.Tasks.Task UpdateFilterViewAsync( global::System.Guid sessionId, global::System.Guid viewId, - global::System.AnyOf? filterString = default, - global::System.AnyOf? displayName = default, - global::System.AnyOf? description = default, + global::G.AnyOf? filterString = default, + global::G.AnyOf? displayName = default, + global::G.AnyOf? description = 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 914bd9bb06..6d8c4b1e5e 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 @@ -117,12 +117,12 @@ partial void ProcessUpdateTracerSessionResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTracerSessionAsync( global::System.Guid sessionId, - global::System.AnyOf? name = default, - global::System.AnyOf? description = default, - global::System.AnyOf? defaultDatasetId = default, - global::System.AnyOf? endTime = default, - global::System.AnyOf? extra = default, - global::System.AnyOf? traceTier = default, + 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, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.TracerSessionUpdate diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs index 6efe9e2f55..052d11aecc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#G.TtlSettingsClient.UpsertTtlSettings2.g.verified.cs @@ -104,7 +104,7 @@ partial void ProcessUpsertTtlSettings2ResponseContent( /// public async global::System.Threading.Tasks.Task UpsertTtlSettings2Async( global::G.TraceTier3 defaultTraceTier, - global::System.AnyOf? tenantId = default, + global::G.AnyOf? tenantId = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.UpsertTTLSettingsRequest 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 c623adbb92..07b58030a1 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 @@ -107,8 +107,8 @@ partial void ProcessAddMemberToCurrentWorkspaceResponseContent( /// public async global::System.Threading.Tasks.Task AddMemberToCurrentWorkspaceAsync( global::System.Guid userId, - global::System.AnyOf? readOnly = default, - global::System.AnyOf? roleId = default, + global::G.AnyOf? readOnly = default, + global::G.AnyOf? 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 f0bd4074c8..c9105e863d 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 @@ -104,7 +104,7 @@ partial void ProcessCreateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task CreateTagKeyAsync( string key, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 3cbdc02aa0..3b08283007 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 @@ -112,7 +112,7 @@ partial void ProcessCreateTagValueResponseContent( public async global::System.Threading.Tasks.Task CreateTagValueAsync( global::System.Guid tagKeyId, string value, - global::System.AnyOf? description = default, + global::G.AnyOf? 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 9c5b6d78f4..a340d40924 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 @@ -108,7 +108,7 @@ partial void ProcessCreateWorkspaceResponseContent( public async global::System.Threading.Tasks.Task CreateWorkspaceAsync( string displayName, global::System.Guid id = default, - global::System.AnyOf? tenantHandle = default, + global::G.AnyOf? 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 11f6bb56ca..479fa2e9da 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::System.AnyOf, object>? tagValueId); + ref global::G.AnyOf, object>? tagValueId); partial void PrepareGetCurrentWorkspaceStatsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf, object>? tagValueId); + global::G.AnyOf, object>? tagValueId); partial void ProcessGetCurrentWorkspaceStatsResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -29,7 +29,7 @@ partial void ProcessGetCurrentWorkspaceStatsResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task GetCurrentWorkspaceStatsAsync( - global::System.AnyOf, object>? tagValueId = default, + global::G.AnyOf, object>? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 48152fbbab..ac80893c5e 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::System.AnyOf? tagValueId); + ref global::G.AnyOf? tagValueId); partial void PrepareListTaggingsRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, - global::System.AnyOf? tagValueId); + global::G.AnyOf? 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::System.AnyOf? tagValueId = default, + global::G.AnyOf? tagValueId = default, global::System.Threading.CancellationToken cancellationToken = default) { PrepareArguments( 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 e6d9f3c665..518eb66ece 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 @@ -112,7 +112,7 @@ partial void ProcessPatchCurrentWorkspaceMemberResponseContent( public async global::System.Threading.Tasks.Task PatchCurrentWorkspaceMemberAsync( global::System.Guid identityId, global::System.Guid roleId, - global::System.AnyOf? readOnly = default, + global::G.AnyOf? 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 36bbd58f32..162af2f145 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 @@ -111,8 +111,8 @@ partial void ProcessUpdateTagKeyResponseContent( /// public async global::System.Threading.Tasks.Task UpdateTagKeyAsync( global::System.Guid tagKeyId, - global::System.AnyOf? key = default, - global::System.AnyOf? description = default, + global::G.AnyOf? key = default, + global::G.AnyOf? 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 5539616610..9c8874649a 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 @@ -119,8 +119,8 @@ partial void ProcessUpdateTagValueResponseContent( public async global::System.Threading.Tasks.Task UpdateTagValueAsync( global::System.Guid tagKeyId, global::System.Guid tagValueId, - global::System.AnyOf? value = default, - global::System.AnyOf? description = default, + global::G.AnyOf? value = default, + global::G.AnyOf? 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.AllOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs index 065b7b7667..28122c230f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AllOf Read( + public override global::G.AllOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.AllOf( + var result = new global::G.AllOf( value1 ); @@ -40,7 +40,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AllOf value, + global::G.AllOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs index e43ac28aeb..f1d60f1cc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AllOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs index 5fd4066d13..da431d1008 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf3.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf4.g.verified.cs index c2d3be1ef6..a59bbd7a6c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf4.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Seria { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2, value3, @@ -85,7 +85,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Seria /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf5.g.verified.cs index dcfda0893a..d266147783 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOf5.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -65,7 +65,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.S { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2, value3, @@ -100,7 +100,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.S /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); 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 index b2c9f8da38..b328d6cebd 100644 --- 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 @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -75,7 +75,7 @@ public class AnyOfJsonConverter : global::System.Text.Js { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2, value3, @@ -115,7 +115,7 @@ public class AnyOfJsonConverter : global::System.Text.Js /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs index 64d4f74aff..6da2c7f13e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory3.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory4.g.verified.cs index 739fd6d333..39b97b6886 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory4.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory4 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory5.g.verified.cs index b54a82f583..f08d5f2206 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.AnyOfFactory5.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory5 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,,,>); } /// 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 index f3c9749bc4..b1073424af 100644 --- 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 @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory6 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,,,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,,,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); 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 index 73bc9f5c18..64a17520a2 100644 --- 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 @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// 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 index 141db21b25..a60f3e9978 100644 --- 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 @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/LangSmith/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// 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 index 567f9ab936..048b642356 100644 --- 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 @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.1.g.verified.cs index b9ac10a20d..3b49ea5e0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs index ba645a16a6..04fc3c36f8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessCreateAssistantResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateAssistantAsync( - global::System.AnyOf model, + global::G.AnyOf model, string? name = default, string? description = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateAssistantRequestToolResources? toolResources = default, global::G.CreateAssistantRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateMessage.g.verified.cs index 53edbd4937..047844a7d6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateMessage.g.verified.cs @@ -122,7 +122,7 @@ partial void ProcessCreateMessageResponseContent( public async global::System.Threading.Tasks.Task CreateMessageAsync( string threadId, global::G.CreateMessageRequestRole role, - global::System.OneOf>> content, + global::G.OneOf>> content, global::System.Collections.Generic.IList? attachments = default, global::G.CreateMessageRequestMetadata? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateRun.g.verified.cs index 3361ecf979..e268ba3959 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateRun.g.verified.cs @@ -170,11 +170,11 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string threadId, string assistantId, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? instructions = default, string? additionalInstructions = default, global::System.Collections.Generic.IList? additionalMessages = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateRunRequestMetadata? metadata = default, double? temperature = 1, double? topP = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs index d1c5b22706..fa7d103f90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs @@ -161,9 +161,9 @@ partial void ProcessCreateThreadAndRunResponseContent( public async global::System.Threading.Tasks.Task CreateThreadAndRunAsync( string assistantId, global::G.CreateThreadRequest? thread = default, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateThreadAndRunRequestToolResources? toolResources = default, global::G.CreateThreadAndRunRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs index 84c5733184..10f74324ac 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs @@ -146,11 +146,11 @@ partial void ProcessModifyAssistantResponseContent( /// public async global::System.Threading.Tasks.Task ModifyAssistantAsync( string assistantId, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? name = default, string? description = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.ModifyAssistantRequestToolResources? toolResources = default, global::G.ModifyAssistantRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateSpeech.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateSpeech.g.verified.cs index f6134777c4..0bcf2195ce 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateSpeech.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateSpeech.g.verified.cs @@ -106,7 +106,7 @@ partial void ProcessCreateSpeechResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateSpeechAsync( - global::System.AnyOf model, + global::G.AnyOf model, string input, global::G.CreateSpeechRequestVoice voice, global::G.CreateSpeechRequestResponseFormat? responseFormat = global::G.CreateSpeechRequestResponseFormat.Mp3, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs index 3b372cc9e0..d12846eaeb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessCreateTranscriptionResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( + public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( global::G.CreateTranscriptionRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -131,7 +131,7 @@ partial void ProcessCreateTranscriptionResponseContent( } 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}\" "); } @@ -168,10 +168,10 @@ partial void ProcessCreateTranscriptionResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( + public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( byte[] file, string filename, - global::System.AnyOf model, + global::G.AnyOf model, string? language = default, string? prompt = default, global::G.CreateTranscriptionRequestResponseFormat? responseFormat = global::G.CreateTranscriptionRequestResponseFormat.Json, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs index cb76a28c04..0e48ab0ee5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs @@ -28,7 +28,7 @@ partial void ProcessCreateTranslationResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranslationAsync( + public async global::System.Threading.Tasks.Task> CreateTranslationAsync( global::G.CreateTranslationRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -118,7 +118,7 @@ partial void ProcessCreateTranslationResponseContent( } 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}\" "); } @@ -148,10 +148,10 @@ partial void ProcessCreateTranslationResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranslationAsync( + public async global::System.Threading.Tasks.Task> CreateTranslationAsync( byte[] file, string filename, - global::System.AnyOf model, + global::G.AnyOf model, string? prompt = default, string? responseFormat = "json", double temperature = 0, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs index 85f336e8e5..1d297bb1fc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs @@ -197,7 +197,7 @@ partial void ProcessCreateChatCompletionResponseContent( /// public async global::System.Threading.Tasks.Task CreateChatCompletionAsync( global::System.Collections.Generic.IList messages, - global::System.AnyOf model, + global::G.AnyOf model, double? frequencyPenalty = 0, global::G.CreateChatCompletionRequestLogitBias? logitBias = default, bool? logprobs = false, @@ -205,10 +205,10 @@ partial void ProcessCreateChatCompletionResponseContent( int? maxTokens = default, int? n = 1, double? presencePenalty = 0, - global::System.OneOf? responseFormat = default, + global::G.OneOf? responseFormat = default, int? seed = default, global::G.CreateChatCompletionRequestServiceTier? serviceTier = default, - global::System.OneOf>? stop = default, + global::G.OneOf>? stop = default, bool? stream = false, global::G.ChatCompletionStreamOptions? streamOptions = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs index ce40dbc604..774e7ff523 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs @@ -185,8 +185,8 @@ partial void ProcessCreateCompletionResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateCompletionAsync( - global::System.AnyOf model, - global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? prompt, + global::G.AnyOf model, + global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? prompt, int? bestOf = 1, bool? echo = false, double? frequencyPenalty = 0, @@ -196,7 +196,7 @@ partial void ProcessCreateCompletionResponseContent( int? n = 1, double? presencePenalty = 0, int? seed = default, - global::System.OneOf>? stop = default, + global::G.OneOf>? stop = default, bool? stream = false, global::G.ChatCompletionStreamOptions? streamOptions = default, string? suffix = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs index 912de52403..4805d025e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs @@ -121,8 +121,8 @@ partial void ProcessCreateEmbeddingResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateEmbeddingAsync( - global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> input, - global::System.AnyOf model, + global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> input, + global::G.AnyOf model, global::G.CreateEmbeddingRequestEncodingFormat? encodingFormat = global::G.CreateEmbeddingRequestEncodingFormat.Float, int? dimensions = default, string? user = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs index 295b08a136..22b63d56fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs @@ -143,7 +143,7 @@ partial void ProcessCreateFineTuningJobResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateFineTuningJobAsync( - global::System.AnyOf model, + global::G.AnyOf model, string trainingFile, global::G.CreateFineTuningJobRequestHyperparameters? hyperparameters = default, string? suffix = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImage.g.verified.cs index 16e0c5f806..94c14c8541 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImage.g.verified.cs @@ -140,7 +140,7 @@ partial void ProcessCreateImageResponseContent( /// public async global::System.Threading.Tasks.Task CreateImageAsync( string prompt, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageRequestQuality? quality = global::G.CreateImageRequestQuality.Standard, global::G.CreateImageRequestResponseFormat? responseFormat = global::G.CreateImageRequestResponseFormat.Url, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs index f4892b867b..136f6e21c4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs @@ -198,7 +198,7 @@ partial void ProcessCreateImageEditResponseContent( string prompt, byte[]? mask = default, string? maskname = default, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageEditRequestSize? size = global::G.CreateImageEditRequestSize.x1024x1024, global::G.CreateImageEditRequestResponseFormat? responseFormat = global::G.CreateImageEditRequestResponseFormat.Url, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs index a9c28f8e84..9f818c1594 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs @@ -169,7 +169,7 @@ partial void ProcessCreateImageVariationResponseContent( public async global::System.Threading.Tasks.Task CreateImageVariationAsync( byte[] image, string imagename, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageVariationRequestResponseFormat? responseFormat = global::G.CreateImageVariationRequestResponseFormat.Url, global::G.CreateImageVariationRequestSize? size = global::G.CreateImageVariationRequestSize.x1024x1024, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.AssistantObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.AssistantObject.g.verified.cs index dbae8dc74a..a4b39cd1f9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.AssistantObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.AssistantObject.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class AssistantObject /// A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. /// [global::Newtonsoft.Json.JsonProperty("tools", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Tools { get; set; } = default!; + public global::System.Collections.Generic.IList> Tools { get; set; } = default!; /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs index 90d7ceb2d1..f329761374 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ChatCompletionRequestAssistantMessage /// The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified. /// [global::Newtonsoft.Json.JsonProperty("content")] - public global::System.OneOf>? Content { get; set; } + public global::G.OneOf>? Content { get; set; } /// /// The refusal message by the assistant. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs index 8c51a4aa8f..a44342cc38 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ChatCompletionRequestSystemMessage /// The contents of the system message. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// The role of the messages author, in this case `system`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs index 20011ba0b3..6c462c9230 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class ChatCompletionRequestToolMessage /// The contents of the tool message. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// Tool call that this message is responding to. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs index 564270b391..fd5181efc4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ChatCompletionRequestUserMessage /// The contents of the user message. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Content { get; set; } = default!; + public global::G.OneOf> Content { get; set; } = default!; /// /// The role of the messages author, in this case `user`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequest.g.verified.cs index 2502c9b51e..f063b83344 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequest.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class CreateAssistantRequest /// Example: gpt-4o /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The name of the assistant. The maximum length is 256 characters. @@ -40,7 +40,7 @@ public sealed partial class CreateAssistantRequest /// A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs index 2474be1c23..982ae00d90 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CreateAssistantRequestToolResourcesFileSearchVectorS /// The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. /// [global::Newtonsoft.Json.JsonProperty("chunking_strategy")] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs index a3d9f6762d..ebb53b190f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class CreateChatCompletionRequest /// Example: gpt-4o /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
@@ -82,7 +82,7 @@ public sealed partial class CreateChatCompletionRequest /// **Important:** when using JSON mode, you **must** also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if `finish_reason="length"`, which indicates the generation exceeded `max_tokens` or the conversation exceeded the max context length. ///
[global::Newtonsoft.Json.JsonProperty("response_format")] - public global::System.OneOf? ResponseFormat { get; set; } + public global::G.OneOf? ResponseFormat { get; set; } /// /// This feature is in Beta.
@@ -106,7 +106,7 @@ public sealed partial class CreateChatCompletionRequest /// Up to 4 sequences where the API will stop generating further tokens. ///
[global::Newtonsoft.Json.JsonProperty("stop")] - public global::System.OneOf>? Stop { get; set; } + public global::G.OneOf>? Stop { get; set; } /// /// If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions).
@@ -178,7 +178,7 @@ public sealed partial class CreateChatCompletionRequest /// `none` is the default when no functions are present. `auto` is the default if functions are present. ///
[global::Newtonsoft.Json.JsonProperty("function_call")] - public global::System.OneOf? FunctionCall { get; set; } + public global::G.OneOf? FunctionCall { get; set; } /// /// Deprecated in favor of `tools`.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateCompletionRequest.g.verified.cs index f3273bfab8..d609ad1946 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateCompletionRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class CreateCompletionRequest /// ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. ///
[global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays.
@@ -23,7 +23,7 @@ public sealed partial class CreateCompletionRequest /// Default Value: <|endoftext|> ///
[global::Newtonsoft.Json.JsonProperty("prompt", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Prompt { get; set; } = default!; + public global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Prompt { get; set; } = default!; /// /// Generates `best_of` completions server-side and returns the "best" (the one with the highest log probability per token). Results cannot be streamed.
@@ -101,7 +101,7 @@ public sealed partial class CreateCompletionRequest /// Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. ///
[global::Newtonsoft.Json.JsonProperty("stop")] - public global::System.OneOf>? Stop { get; set; } + public global::G.OneOf>? Stop { get; set; } /// /// Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs index 5e68a3e49e..4669985bcd 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs @@ -16,14 +16,14 @@ public sealed partial class CreateEmbeddingRequest /// Example: The quick brown fox jumped over the lazy dog ///
[global::Newtonsoft.Json.JsonProperty("input", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> Input { get; set; } = default!; + public global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> Input { get; set; } = default!; /// /// ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them.
/// Example: text-embedding-3-small ///
[global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The format to return the embeddings in. Can be either `float` or [`base64`](https://pypi.org/project/pybase64/).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs index 0500caad37..5f44940a55 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateFineTuningJobRequest /// Example: gpt-4o-mini ///
[global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The ID of an uploaded file that contains training data.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs index c31f186f5f..37e18c1803 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters /// Default Value: auto ///
[global::Newtonsoft.Json.JsonProperty("batch_size")] - public global::System.OneOf? BatchSize { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersBatchSize.Auto; + public global::G.OneOf? BatchSize { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersBatchSize.Auto; /// /// Scaling factor for the learning rate. A smaller learning rate may be useful to avoid
@@ -25,7 +25,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters /// Default Value: auto ///
[global::Newtonsoft.Json.JsonProperty("learning_rate_multiplier")] - public global::System.OneOf? LearningRateMultiplier { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier.Auto; + public global::G.OneOf? LearningRateMultiplier { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier.Auto; /// /// The number of epochs to train the model for. An epoch refers to one full cycle
@@ -33,7 +33,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters /// Default Value: auto ///
[global::Newtonsoft.Json.JsonProperty("n_epochs")] - public global::System.OneOf? NEpochs { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersNEpochs.Auto; + public global::G.OneOf? NEpochs { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersNEpochs.Auto; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs index 53cbbb93d1..88d9d08f43 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class CreateFineTuningJobRequestIntegration /// The type of integration to enable. Currently, only "wandb" (Weights and Biases) is supported. /// [global::Newtonsoft.Json.JsonProperty("type", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf Type { get; set; } = default!; + public global::G.OneOf Type { get; set; } = default!; /// /// The settings for your integration with Weights and Biases. This payload specifies the project that
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageEditRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageEditRequest.g.verified.cs index 3c487ae687..ed92852799 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageEditRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageEditRequest.g.verified.cs @@ -48,7 +48,7 @@ public sealed partial class CreateImageEditRequest /// Example: dall-e-2 ///
[global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageEditRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageEditRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageRequest.g.verified.cs index d892a74977..a9a84c13ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageRequest.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class CreateImageRequest /// Example: dall-e-3 ///
[global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only `n=1` is supported.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageVariationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageVariationRequest.g.verified.cs index c0a0871c6e..52ab732d28 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageVariationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateImageVariationRequest.g.verified.cs @@ -29,7 +29,7 @@ public sealed partial class CreateImageVariationRequest /// Example: dall-e-2 ///
[global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageVariationRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageVariationRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only `n=1` is supported.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs index d58f1f7c9a..c6bc6d37dc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequest.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class CreateMessageRequest /// ///
[global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf>> Content { get; set; } = default!; + public global::G.OneOf>> Content { get; set; } = default!; /// /// A list of files attached to the message, and the tools they should be added to. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs index 2b49c41d1a..47319dbc68 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CreateMessageRequestAttachment /// The tools to add this file to. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateModerationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateModerationRequest.g.verified.cs index c28df456c5..6a38b0a1e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateModerationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateModerationRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class CreateModerationRequest /// The input text to classify /// [global::Newtonsoft.Json.JsonProperty("input", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Input { get; set; } = default!; + public global::G.OneOf> Input { get; set; } = default!; /// /// Two content moderations models are available: `text-moderation-stable` and `text-moderation-latest`.
@@ -24,7 +24,7 @@ public sealed partial class CreateModerationRequest /// Example: text-moderation-stable ///
[global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } = global::G.CreateModerationRequestModel.TextModerationLatest; + public global::G.AnyOf? Model { get; set; } = global::G.CreateModerationRequestModel.TextModerationLatest; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs index 00f7467306..fe6ca92913 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateRunRequest.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class CreateRunRequest /// Example: gpt-4o /// [global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// Overrides the [instructions](/docs/api-reference/assistants/createAssistant) of the assistant. This is useful for modifying the behavior on a per-run basis. @@ -46,7 +46,7 @@ public sealed partial class CreateRunRequest /// Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateSpeechRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateSpeechRequest.g.verified.cs index db4833054f..afcbde5a20 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateSpeechRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateSpeechRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class CreateSpeechRequest /// One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The text to generate audio for. The maximum length is 4096 characters. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs index 32088f3fa7..4e43d6fe07 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class CreateThreadAndRunRequest /// Example: gpt-4o /// [global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// Override the default system message of the assistant. This is useful for modifying the behavior on a per-run basis. @@ -40,7 +40,7 @@ public sealed partial class CreateThreadAndRunRequest /// Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs index e4070ed8cc..0247aa27c5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CreateThreadRequestToolResourcesFileSearchVectorStor /// The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. /// [global::Newtonsoft.Json.JsonProperty("chunking_strategy")] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs index d27a3c3680..c81348dc35 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class CreateTranscriptionRequest /// Example: whisper-1 /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranslationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranslationRequest.g.verified.cs index 35b834c3a6..29cdd9c9be 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranslationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateTranslationRequest.g.verified.cs @@ -28,7 +28,7 @@ public sealed partial class CreateTranslationRequest /// Example: whisper-1 /// [global::Newtonsoft.Json.JsonProperty("model", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AnyOf Model { get; set; } = default!; + public global::G.AnyOf Model { get; set; } = default!; /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs index 38667dae57..3f70c561fa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs @@ -33,7 +33,7 @@ public sealed partial class CreateVectorStoreRequest /// The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. Only applicable if `file_ids` is non-empty. /// [global::Newtonsoft.Json.JsonProperty("chunking_strategy")] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJob.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJob.g.verified.cs index 32a3076589..124eb86cfe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJob.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJob.g.verified.cs @@ -99,7 +99,7 @@ public sealed partial class FineTuningJob /// A list of integrations to enable for this fine-tuning job. /// [global::Newtonsoft.Json.JsonProperty("integrations")] - public global::System.Collections.Generic.IList>? Integrations { get; set; } + public global::System.Collections.Generic.IList>? Integrations { get; set; } /// /// The seed used for the fine-tuning job. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs index 365692e738..4972c1f4c9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class FineTuningJobHyperparameters /// Default Value: auto /// [global::Newtonsoft.Json.JsonProperty("n_epochs", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf NEpochs { get; set; } = default!; + public global::G.OneOf NEpochs { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs index a333c9b5d0..f04137b55e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class FinetuneChatRequestInput /// /// [global::Newtonsoft.Json.JsonProperty("messages")] - public global::System.Collections.Generic.IList>? Messages { get; set; } + public global::System.Collections.Generic.IList>? Messages { get; set; } /// /// A list of tools the model may generate JSON inputs for. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageContentTextObjectText.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageContentTextObjectText.g.verified.cs index fe13fbea7d..dc703b6f5f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageContentTextObjectText.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageContentTextObjectText.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageContentTextObjectText /// /// [global::Newtonsoft.Json.JsonProperty("annotations", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Annotations { get; set; } = default!; + public global::System.Collections.Generic.IList> Annotations { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs index bdbb5b78f7..c87f5d0cfb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageDeltaContentTextObjectText /// /// [global::Newtonsoft.Json.JsonProperty("annotations")] - public global::System.Collections.Generic.IList>? Annotations { get; set; } + public global::System.Collections.Generic.IList>? Annotations { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs index 7a90bf03aa..ed1f088ef2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageDeltaObjectDelta /// The content of the message in array of text and/or images. /// [global::Newtonsoft.Json.JsonProperty("content")] - public global::System.Collections.Generic.IList>? Content { get; set; } + public global::System.Collections.Generic.IList>? Content { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObject.g.verified.cs index 9482e047cd..7d28c28cce 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObject.g.verified.cs @@ -69,7 +69,7 @@ public sealed partial class MessageObject /// The content of the message in array of text and/or images. /// [global::Newtonsoft.Json.JsonProperty("content", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Content { get; set; } = default!; + public global::System.Collections.Generic.IList> Content { get; set; } = default!; /// /// If applicable, the ID of the [assistant](/docs/api-reference/assistants) that authored this message. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObjectAttachment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObjectAttachment.g.verified.cs index c5394955ee..040bdc5ab7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObjectAttachment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.MessageObjectAttachment.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageObjectAttachment /// The tools to add this file to. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ModifyAssistantRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ModifyAssistantRequest.g.verified.cs index fc4a7d4643..a194db1691 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ModifyAssistantRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.ModifyAssistantRequest.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class ModifyAssistantRequest /// ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. /// [global::Newtonsoft.Json.JsonProperty("model")] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// The name of the assistant. The maximum length is 256 characters. @@ -39,7 +39,7 @@ public sealed partial class ModifyAssistantRequest /// A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. /// [global::Newtonsoft.Json.JsonProperty("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunObject.g.verified.cs index df1baec2a6..fb7bc73751 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunObject.g.verified.cs @@ -111,7 +111,7 @@ public sealed partial class RunObject /// The list of tools that the [assistant](/docs/api-reference/assistants) used for this run. /// [global::Newtonsoft.Json.JsonProperty("tools", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Tools { get; set; } = default!; + public global::System.Collections.Generic.IList> Tools { get; set; } = default!; /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs index 5e74a11bf0..b00076bcea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class RunStepDeltaObjectDelta /// The details of the run step. /// [global::Newtonsoft.Json.JsonProperty("step_details")] - public global::System.OneOf? StepDetails { get; set; } + public global::G.OneOf? StepDetails { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs index 7ae5c50414..a339b1c6ea 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterp /// The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type. /// [global::Newtonsoft.Json.JsonProperty("outputs")] - public global::System.Collections.Generic.IList>? Outputs { get; set; } + public global::System.Collections.Generic.IList>? Outputs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs index f0cdb443cb..8dd91a8215 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class RunStepDeltaStepDetailsToolCallsObject /// An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`. /// [global::Newtonsoft.Json.JsonProperty("tool_calls")] - public global::System.Collections.Generic.IList>? ToolCalls { get; set; } + public global::System.Collections.Generic.IList>? ToolCalls { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs index 47fba3c8b0..6a8981aa11 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class RunStepDetailsToolCallsCodeObjectCodeInterpreter /// The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type. /// [global::Newtonsoft.Json.JsonProperty("outputs", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> Outputs { get; set; } = default!; + public global::System.Collections.Generic.IList> Outputs { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs index aaf3c353e1..a47085d9ab 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class RunStepDetailsToolCallsObject /// An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`. /// [global::Newtonsoft.Json.JsonProperty("tool_calls", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.Collections.Generic.IList> ToolCalls { get; set; } = default!; + public global::System.Collections.Generic.IList> ToolCalls { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepObject.g.verified.cs index b84cec6541..2fa868ca63 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.RunStepObject.g.verified.cs @@ -63,7 +63,7 @@ public sealed partial class RunStepObject /// The details of the run step. /// [global::Newtonsoft.Json.JsonProperty("step_details", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf StepDetails { get; set; } = default!; + public global::G.OneOf StepDetails { get; set; } = default!; /// /// The last error associated with this run step. Will be `null` if there are no errors. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.VectorStoreFileObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.VectorStoreFileObject.g.verified.cs index 79f70695d9..b3df2bddcb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.VectorStoreFileObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.Models.VectorStoreFileObject.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class VectorStoreFileObject /// The strategy used to chunk the file. /// [global::Newtonsoft.Json.JsonProperty("chunking_strategy")] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ModerationsClient.CreateModeration.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ModerationsClient.CreateModeration.g.verified.cs index eb9369303a..47d1fb3127 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ModerationsClient.CreateModeration.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ModerationsClient.CreateModeration.g.verified.cs @@ -110,8 +110,8 @@ partial void ProcessCreateModerationResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateModerationAsync( - global::System.OneOf> input, - global::System.AnyOf? model = default, + global::G.OneOf> input, + global::G.AnyOf? model = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateModerationRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs index 1d27c4156b..97e8687b58 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs @@ -119,7 +119,7 @@ partial void ProcessCreateVectorStoreResponseContent( global::System.Collections.Generic.IList? fileIds = default, string? name = default, global::G.VectorStoreExpirationAfter? expiresAfter = default, - global::System.OneOf? chunkingStrategy = default, + global::G.OneOf? chunkingStrategy = default, global::G.CreateVectorStoreRequestMetadata? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.5.g.verified.cs index 051e7d69e1..026bd6075b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#OneOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.1.g.verified.cs index b9ac10a20d..3b49ea5e0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.2.g.verified.cs index 8333f3c3e9..a4e52ba19a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#AnyOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs index 150358123f..70b81893bf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateAssistant.g.verified.cs @@ -139,11 +139,11 @@ partial void ProcessCreateAssistantResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateAssistantAsync( - global::System.AnyOf model, + global::G.AnyOf model, string? name = default, string? description = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateAssistantRequestToolResources? toolResources = default, global::G.CreateAssistantRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateMessage.g.verified.cs index eb70865840..fc62d3ee10 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateMessage.g.verified.cs @@ -122,7 +122,7 @@ partial void ProcessCreateMessageResponseContent( public async global::System.Threading.Tasks.Task CreateMessageAsync( string threadId, global::G.CreateMessageRequestRole role, - global::System.OneOf>> content, + global::G.OneOf>> content, global::System.Collections.Generic.IList? attachments = default, global::G.CreateMessageRequestMetadata? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateRun.g.verified.cs index 78b518babc..d9b6ae5356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateRun.g.verified.cs @@ -170,11 +170,11 @@ partial void ProcessCreateRunResponseContent( public async global::System.Threading.Tasks.Task CreateRunAsync( string threadId, string assistantId, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? instructions = default, string? additionalInstructions = default, global::System.Collections.Generic.IList? additionalMessages = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateRunRequestMetadata? metadata = default, double? temperature = 1, double? topP = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs index bf86410caa..f73ed76672 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.CreateThreadAndRun.g.verified.cs @@ -161,9 +161,9 @@ partial void ProcessCreateThreadAndRunResponseContent( public async global::System.Threading.Tasks.Task CreateThreadAndRunAsync( string assistantId, global::G.CreateThreadRequest? thread = default, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.CreateThreadAndRunRequestToolResources? toolResources = default, global::G.CreateThreadAndRunRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs index d76e95f0c7..41a236ee4d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AssistantsClient.ModifyAssistant.g.verified.cs @@ -146,11 +146,11 @@ partial void ProcessModifyAssistantResponseContent( /// public async global::System.Threading.Tasks.Task ModifyAssistantAsync( string assistantId, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, string? name = default, string? description = default, string? instructions = default, - global::System.Collections.Generic.IList>? tools = default, + global::System.Collections.Generic.IList>? tools = default, global::G.ModifyAssistantRequestToolResources? toolResources = default, global::G.ModifyAssistantRequestMetadata? metadata = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateSpeech.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateSpeech.g.verified.cs index 11a9f9cb5c..db05cc33b4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateSpeech.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateSpeech.g.verified.cs @@ -106,7 +106,7 @@ partial void ProcessCreateSpeechResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateSpeechAsync( - global::System.AnyOf model, + global::G.AnyOf model, string input, global::G.CreateSpeechRequestVoice voice, global::G.CreateSpeechRequestResponseFormat? responseFormat = global::G.CreateSpeechRequestResponseFormat.Mp3, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs index ec04c02154..0b4aa375c1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs @@ -29,7 +29,7 @@ partial void ProcessCreateTranscriptionResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( + public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( global::G.CreateTranscriptionRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -131,7 +131,7 @@ partial void ProcessCreateTranscriptionResponseContent( } 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}\" "); } @@ -168,10 +168,10 @@ partial void ProcessCreateTranscriptionResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( + public async global::System.Threading.Tasks.Task> CreateTranscriptionAsync( byte[] file, string filename, - global::System.AnyOf model, + global::G.AnyOf model, string? language = default, string? prompt = default, global::G.CreateTranscriptionRequestResponseFormat? responseFormat = global::G.CreateTranscriptionRequestResponseFormat.Json, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs index 1c85049cf0..e87629375f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs @@ -28,7 +28,7 @@ partial void ProcessCreateTranslationResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranslationAsync( + public async global::System.Threading.Tasks.Task> CreateTranslationAsync( global::G.CreateTranslationRequest request, global::System.Threading.CancellationToken cancellationToken = default) { @@ -118,7 +118,7 @@ partial void ProcessCreateTranslationResponseContent( } 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}\" "); } @@ -148,10 +148,10 @@ partial void ProcessCreateTranslationResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateTranslationAsync( + public async global::System.Threading.Tasks.Task> CreateTranslationAsync( byte[] file, string filename, - global::System.AnyOf model, + global::G.AnyOf model, string? prompt = default, string? responseFormat = "json", double temperature = 0, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs index 2bbe65be1a..c1a92a0bc7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ChatClient.CreateChatCompletion.g.verified.cs @@ -197,7 +197,7 @@ partial void ProcessCreateChatCompletionResponseContent( /// public async global::System.Threading.Tasks.Task CreateChatCompletionAsync( global::System.Collections.Generic.IList messages, - global::System.AnyOf model, + global::G.AnyOf model, double? frequencyPenalty = 0, global::G.CreateChatCompletionRequestLogitBias? logitBias = default, bool? logprobs = false, @@ -205,10 +205,10 @@ partial void ProcessCreateChatCompletionResponseContent( int? maxTokens = default, int? n = 1, double? presencePenalty = 0, - global::System.OneOf? responseFormat = default, + global::G.OneOf? responseFormat = default, int? seed = default, global::G.CreateChatCompletionRequestServiceTier? serviceTier = default, - global::System.OneOf>? stop = default, + global::G.OneOf>? stop = default, bool? stream = false, global::G.ChatCompletionStreamOptions? streamOptions = default, double? temperature = 1, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs index 9afb1ee40f..5fbe330551 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.CompletionsClient.CreateCompletion.g.verified.cs @@ -185,8 +185,8 @@ partial void ProcessCreateCompletionResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateCompletionAsync( - global::System.AnyOf model, - global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? prompt, + global::G.AnyOf model, + global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? prompt, int? bestOf = 1, bool? echo = false, double? frequencyPenalty = 0, @@ -196,7 +196,7 @@ partial void ProcessCreateCompletionResponseContent( int? n = 1, double? presencePenalty = 0, int? seed = default, - global::System.OneOf>? stop = default, + global::G.OneOf>? stop = default, bool? stream = false, global::G.ChatCompletionStreamOptions? streamOptions = default, string? suffix = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs index 7a401b5f33..8838afb0e0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.EmbeddingsClient.CreateEmbedding.g.verified.cs @@ -121,8 +121,8 @@ partial void ProcessCreateEmbeddingResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateEmbeddingAsync( - global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> input, - global::System.AnyOf model, + global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> input, + global::G.AnyOf model, global::G.CreateEmbeddingRequestEncodingFormat? encodingFormat = global::G.CreateEmbeddingRequestEncodingFormat.Float, int? dimensions = default, string? user = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs index f3434c633a..8f407df25c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FineTuningClient.CreateFineTuningJob.g.verified.cs @@ -143,7 +143,7 @@ partial void ProcessCreateFineTuningJobResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateFineTuningJobAsync( - global::System.AnyOf model, + global::G.AnyOf model, string trainingFile, global::G.CreateFineTuningJobRequestHyperparameters? hyperparameters = default, string? suffix = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImage.g.verified.cs index dbba715f0f..fc6a171563 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImage.g.verified.cs @@ -140,7 +140,7 @@ partial void ProcessCreateImageResponseContent( /// public async global::System.Threading.Tasks.Task CreateImageAsync( string prompt, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageRequestQuality? quality = global::G.CreateImageRequestQuality.Standard, global::G.CreateImageRequestResponseFormat? responseFormat = global::G.CreateImageRequestResponseFormat.Url, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs index c8bc11d147..329b7366f2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs @@ -198,7 +198,7 @@ partial void ProcessCreateImageEditResponseContent( string prompt, byte[]? mask = default, string? maskname = default, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageEditRequestSize? size = global::G.CreateImageEditRequestSize.x1024x1024, global::G.CreateImageEditRequestResponseFormat? responseFormat = global::G.CreateImageEditRequestResponseFormat.Url, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs index dd5d9aed5e..56c8cceee0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs @@ -169,7 +169,7 @@ partial void ProcessCreateImageVariationResponseContent( public async global::System.Threading.Tasks.Task CreateImageVariationAsync( byte[] image, string imagename, - global::System.AnyOf? model = default, + global::G.AnyOf? model = default, int? n = 1, global::G.CreateImageVariationRequestResponseFormat? responseFormat = global::G.CreateImageVariationRequestResponseFormat.Url, global::G.CreateImageVariationRequestSize? size = global::G.CreateImageVariationRequestSize.x1024x1024, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.AssistantObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.AssistantObject.g.verified.cs index bf192e2d6c..cff9f38aae 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.AssistantObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.AssistantObject.g.verified.cs @@ -66,7 +66,7 @@ public sealed partial class AssistantObject /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Tools { get; set; } + public required global::System.Collections.Generic.IList> Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs index 3e005366a7..d31554dae4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestAssistantMessage.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class ChatCompletionRequestAssistantMessage /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>? Content { get; set; } + public global::G.OneOf>? Content { get; set; } /// /// The refusal message by the assistant. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs index 1e61a7ed4f..5f0ef67544 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestSystemMessage.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class ChatCompletionRequestSystemMessage [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// The role of the messages author, in this case `system`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs index d7c1bf481e..93c017845c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestToolMessage.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class ChatCompletionRequestToolMessage [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// Tool call that this message is responding to. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs index 72dfef0cd3..732c502007 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ChatCompletionRequestUserMessage.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class ChatCompletionRequestUserMessage [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Content { get; set; } + public required global::G.OneOf> Content { get; set; } /// /// The role of the messages author, in this case `user`. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequest.g.verified.cs index 70b4c0f9d2..9c7eb4eb5a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequest.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class CreateAssistantRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The name of the assistant. The maximum length is 256 characters. @@ -42,7 +42,7 @@ public sealed partial class CreateAssistantRequest /// A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs index b1932c2e0e..65767c3be6 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateAssistantRequestToolResourcesFileSearchVectorStore.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class CreateAssistantRequestToolResourcesFileSearchVectorS /// [global::System.Text.Json.Serialization.JsonPropertyName("chunking_strategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs index 65a6960889..7e12d1265c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateChatCompletionRequest.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class CreateChatCompletionRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
@@ -86,7 +86,7 @@ public sealed partial class CreateChatCompletionRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("response_format")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory3))] - public global::System.OneOf? ResponseFormat { get; set; } + public global::G.OneOf? ResponseFormat { get; set; } /// /// This feature is in Beta.
@@ -112,7 +112,7 @@ public sealed partial class CreateChatCompletionRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("stop")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>? Stop { get; set; } + public global::G.OneOf>? Stop { get; set; } /// /// If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions).
@@ -186,7 +186,7 @@ public sealed partial class CreateChatCompletionRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("function_call")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? FunctionCall { get; set; } + public global::G.OneOf? FunctionCall { get; set; } /// /// Deprecated in favor of `tools`.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateCompletionRequest.g.verified.cs index 31926894aa..bc7131234d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateCompletionRequest.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateCompletionRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays.
@@ -27,7 +27,7 @@ public sealed partial class CreateCompletionRequest [global::System.Text.Json.Serialization.JsonPropertyName("prompt")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory4))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Prompt { get; set; } + public required global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Prompt { get; set; } /// /// Generates `best_of` completions server-side and returns the "best" (the one with the highest log probability per token). Results cannot be streamed.
@@ -106,7 +106,7 @@ public sealed partial class CreateCompletionRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("stop")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf>? Stop { get; set; } + public global::G.OneOf>? Stop { get; set; } /// /// Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs index e813bc9c12..1bcbf498cf 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateEmbeddingRequest.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class CreateEmbeddingRequest [global::System.Text.Json.Serialization.JsonPropertyName("input")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory4))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> Input { get; set; } + public required global::G.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>> Input { get; set; } /// /// ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them.
@@ -27,7 +27,7 @@ public sealed partial class CreateEmbeddingRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The format to return the embeddings in. Can be either `float` or [`base64`](https://pypi.org/project/pybase64/).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs index 489a25a6d5..3b97acee87 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequest.g.verified.cs @@ -19,7 +19,7 @@ public sealed partial class CreateFineTuningJobRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The ID of an uploaded file that contains training data.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs index 85b586ac3b..c8ae55c194 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestHyperparameters.g.verified.cs @@ -18,7 +18,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters ///
[global::System.Text.Json.Serialization.JsonPropertyName("batch_size")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? BatchSize { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersBatchSize.Auto; + public global::G.OneOf? BatchSize { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersBatchSize.Auto; /// /// Scaling factor for the learning rate. A smaller learning rate may be useful to avoid
@@ -27,7 +27,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters ///
[global::System.Text.Json.Serialization.JsonPropertyName("learning_rate_multiplier")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? LearningRateMultiplier { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier.Auto; + public global::G.OneOf? LearningRateMultiplier { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier.Auto; /// /// The number of epochs to train the model for. An epoch refers to one full cycle
@@ -36,7 +36,7 @@ public sealed partial class CreateFineTuningJobRequestHyperparameters ///
[global::System.Text.Json.Serialization.JsonPropertyName("n_epochs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? NEpochs { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersNEpochs.Auto; + public global::G.OneOf? NEpochs { get; set; } = global::G.CreateFineTuningJobRequestHyperparametersNEpochs.Auto; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs index 1bfe01ef77..20a43854b5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateFineTuningJobRequestIntegration.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateFineTuningJobRequestIntegration [global::System.Text.Json.Serialization.JsonPropertyName("type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory1))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf Type { get; set; } + public required global::G.OneOf Type { get; set; } /// /// The settings for your integration with Weights and Biases. This payload specifies the project that
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageEditRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageEditRequest.g.verified.cs index b93f01489e..08eef34157 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageEditRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageEditRequest.g.verified.cs @@ -52,7 +52,7 @@ public sealed partial class CreateImageEditRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageEditRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageEditRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageRequest.g.verified.cs index 396350f1c0..9268d3a716 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageRequest.g.verified.cs @@ -26,7 +26,7 @@ public sealed partial class CreateImageRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only `n=1` is supported.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageVariationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageVariationRequest.g.verified.cs index 2a345ebee2..4cd7975cd8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageVariationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateImageVariationRequest.g.verified.cs @@ -32,7 +32,7 @@ public sealed partial class CreateImageVariationRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } = global::G.CreateImageVariationRequestModel.DallE2; + public global::G.AnyOf? Model { get; set; } = global::G.CreateImageVariationRequestModel.DallE2; /// /// The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only `n=1` is supported.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs index 63ea37e9ef..3a1cdc27e4 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequest.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class CreateMessageRequest [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf>> Content { get; set; } + public required global::G.OneOf>> Content { get; set; } /// /// A list of files attached to the message, and the tools they should be added to. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs index ab70ea6869..1dfa6f3495 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateMessageRequestAttachment.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class CreateMessageRequestAttachment /// The tools to add this file to. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateModerationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateModerationRequest.g.verified.cs index c3470ef1f6..b8b908554f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateModerationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateModerationRequest.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateModerationRequest [global::System.Text.Json.Serialization.JsonPropertyName("input")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Input { get; set; } + public required global::G.OneOf> Input { get; set; } /// /// Two content moderations models are available: `text-moderation-stable` and `text-moderation-latest`.
@@ -27,7 +27,7 @@ public sealed partial class CreateModerationRequest ///
[global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } = global::G.CreateModerationRequestModel.TextModerationLatest; + public global::G.AnyOf? Model { get; set; } = global::G.CreateModerationRequestModel.TextModerationLatest; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs index 21a2a27fbd..70cda3947f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateRunRequest.g.verified.cs @@ -24,7 +24,7 @@ public sealed partial class CreateRunRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// Overrides the [instructions](/docs/api-reference/assistants/createAssistant) of the assistant. This is useful for modifying the behavior on a per-run basis. @@ -48,7 +48,7 @@ public sealed partial class CreateRunRequest /// Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateSpeechRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateSpeechRequest.g.verified.cs index c058bf37d1..44ed72bf8e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateSpeechRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateSpeechRequest.g.verified.cs @@ -17,7 +17,7 @@ public sealed partial class CreateSpeechRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The text to generate audio for. The maximum length is 4096 characters. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs index 43f08c5fb6..5bd8c389d1 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadAndRunRequest.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class CreateThreadAndRunRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// Override the default system message of the assistant. This is useful for modifying the behavior on a per-run basis. @@ -42,7 +42,7 @@ public sealed partial class CreateThreadAndRunRequest /// Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs index cf05451c02..af88f6b97c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateThreadRequestToolResourcesFileSearchVectorStore.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class CreateThreadRequestToolResourcesFileSearchVectorStor /// [global::System.Text.Json.Serialization.JsonPropertyName("chunking_strategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs index c1c05952e7..98742bf6a8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranscriptionRequest.g.verified.cs @@ -32,7 +32,7 @@ public sealed partial class CreateTranscriptionRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranslationRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranslationRequest.g.verified.cs index e112335af9..9d7b24ea64 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranslationRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateTranslationRequest.g.verified.cs @@ -32,7 +32,7 @@ public sealed partial class CreateTranslationRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AnyOf Model { get; set; } + public required global::G.AnyOf Model { get; set; } /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs index bf8c63affc..33a356337f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.CreateVectorStoreRequest.g.verified.cs @@ -34,7 +34,7 @@ public sealed partial class CreateVectorStoreRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("chunking_strategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJob.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJob.g.verified.cs index 39b5d6bd2e..ca3423b3aa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJob.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJob.g.verified.cs @@ -116,7 +116,7 @@ public sealed partial class FineTuningJob /// A list of integrations to enable for this fine-tuning job. /// [global::System.Text.Json.Serialization.JsonPropertyName("integrations")] - public global::System.Collections.Generic.IList>? Integrations { get; set; } + public global::System.Collections.Generic.IList>? Integrations { get; set; } /// /// The seed used for the fine-tuning job. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs index d15a8bf0d3..41dfc40ce0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FineTuningJobHyperparameters.g.verified.cs @@ -19,7 +19,7 @@ public sealed partial class FineTuningJobHyperparameters [global::System.Text.Json.Serialization.JsonPropertyName("n_epochs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf NEpochs { get; set; } + public required global::G.OneOf NEpochs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs index 62dde834c8..412455cd6e 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.FinetuneChatRequestInput.g.verified.cs @@ -15,7 +15,7 @@ public sealed partial class FinetuneChatRequestInput /// /// [global::System.Text.Json.Serialization.JsonPropertyName("messages")] - public global::System.Collections.Generic.IList>? Messages { get; set; } + public global::System.Collections.Generic.IList>? Messages { get; set; } /// /// A list of tools the model may generate JSON inputs for. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageContentTextObjectText.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageContentTextObjectText.g.verified.cs index 1ee3f4a71a..c979544d40 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageContentTextObjectText.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageContentTextObjectText.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class MessageContentTextObjectText /// [global::System.Text.Json.Serialization.JsonPropertyName("annotations")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Annotations { get; set; } + public required global::System.Collections.Generic.IList> Annotations { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs index d534994cbf..c17d37bdd5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaContentTextObjectText.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageDeltaContentTextObjectText /// /// [global::System.Text.Json.Serialization.JsonPropertyName("annotations")] - public global::System.Collections.Generic.IList>? Annotations { get; set; } + public global::System.Collections.Generic.IList>? Annotations { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs index 94ccc8e6fc..7c419fc4e2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageDeltaObjectDelta.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class MessageDeltaObjectDelta /// The content of the message in array of text and/or images. /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::System.Collections.Generic.IList>? Content { get; set; } + public global::System.Collections.Generic.IList>? Content { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObject.g.verified.cs index 81ccf3c103..65d7803115 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObject.g.verified.cs @@ -84,7 +84,7 @@ public sealed partial class MessageObject /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Content { get; set; } + public required global::System.Collections.Generic.IList> Content { get; set; } /// /// If applicable, the ID of the [assistant](/docs/api-reference/assistants) that authored this message. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObjectAttachment.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObjectAttachment.g.verified.cs index d11fcd28c5..05a54c24b3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObjectAttachment.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.MessageObjectAttachment.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class MessageObjectAttachment /// The tools to add this file to. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ModifyAssistantRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ModifyAssistantRequest.g.verified.cs index 64386391aa..57dc210b41 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ModifyAssistantRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.ModifyAssistantRequest.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class ModifyAssistantRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory1))] - public global::System.AnyOf? Model { get; set; } + public global::G.AnyOf? Model { get; set; } /// /// The name of the assistant. The maximum length is 256 characters. @@ -40,7 +40,7 @@ public sealed partial class ModifyAssistantRequest /// A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList>? Tools { get; set; } + public global::System.Collections.Generic.IList>? Tools { get; set; } /// /// A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunObject.g.verified.cs index 7e2a297785..1fbc467ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunObject.g.verified.cs @@ -135,7 +135,7 @@ public sealed partial class RunObject /// [global::System.Text.Json.Serialization.JsonPropertyName("tools")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Tools { get; set; } + public required global::System.Collections.Generic.IList> Tools { get; set; } /// /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs index 832d60bceb..09b4beab89 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaObjectDelta.g.verified.cs @@ -16,7 +16,7 @@ public sealed partial class RunStepDeltaObjectDelta /// [global::System.Text.Json.Serialization.JsonPropertyName("step_details")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? StepDetails { get; set; } + public global::G.OneOf? StepDetails { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs index 0a2d324a34..4bdcc726a9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs @@ -21,7 +21,7 @@ public sealed partial class RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterp /// The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type. /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] - public global::System.Collections.Generic.IList>? Outputs { get; set; } + public global::System.Collections.Generic.IList>? Outputs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs index 4f71b3b904..eb6a68b69d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDeltaStepDetailsToolCallsObject.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class RunStepDeltaStepDetailsToolCallsObject /// An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`. /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_calls")] - public global::System.Collections.Generic.IList>? ToolCalls { get; set; } + public global::System.Collections.Generic.IList>? ToolCalls { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs index 2a82faa3ee..e64586fc76 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsCodeObjectCodeInterpreter.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class RunStepDetailsToolCallsCodeObjectCodeInterpreter /// [global::System.Text.Json.Serialization.JsonPropertyName("outputs")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> Outputs { get; set; } + public required global::System.Collections.Generic.IList> Outputs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs index 592020c4d4..097d428b21 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepDetailsToolCallsObject.g.verified.cs @@ -23,7 +23,7 @@ public sealed partial class RunStepDetailsToolCallsObject /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_calls")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> ToolCalls { get; set; } + public required global::System.Collections.Generic.IList> ToolCalls { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepObject.g.verified.cs index 45b9dc85da..c0d922620a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.RunStepObject.g.verified.cs @@ -76,7 +76,7 @@ public sealed partial class RunStepObject [global::System.Text.Json.Serialization.JsonPropertyName("step_details")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf StepDetails { get; set; } + public required global::G.OneOf StepDetails { get; set; } /// /// The last error associated with this run step. Will be `null` if there are no errors. diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.VectorStoreFileObject.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.VectorStoreFileObject.g.verified.cs index 385838c864..dd5e106aa0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.VectorStoreFileObject.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.Models.VectorStoreFileObject.g.verified.cs @@ -67,7 +67,7 @@ public sealed partial class VectorStoreFileObject /// [global::System.Text.Json.Serialization.JsonPropertyName("chunking_strategy")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ChunkingStrategy { get; set; } + public global::G.OneOf? ChunkingStrategy { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ModerationsClient.CreateModeration.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ModerationsClient.CreateModeration.g.verified.cs index 5d3d5e5393..034cfdc92d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ModerationsClient.CreateModeration.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ModerationsClient.CreateModeration.g.verified.cs @@ -110,8 +110,8 @@ partial void ProcessCreateModerationResponseContent( /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CreateModerationAsync( - global::System.OneOf> input, - global::System.AnyOf? model = default, + global::G.OneOf> input, + global::G.AnyOf? model = default, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.CreateModerationRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs index 91b038b0cd..12b4675be0 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.VectorStoresClient.CreateVectorStore.g.verified.cs @@ -119,7 +119,7 @@ partial void ProcessCreateVectorStoreResponseContent( global::System.Collections.Generic.IList? fileIds = default, string? name = default, global::G.VectorStoreExpirationAfter? expiresAfter = default, - global::System.OneOf? chunkingStrategy = default, + global::G.OneOf? chunkingStrategy = default, global::G.CreateVectorStoreRequestMetadata? metadata = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs index e88a137aec..fc903f6b32 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1 ); @@ -40,7 +40,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs index ae666f4e9e..46337d368c 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs index 9473eddc4c..17daf15fd5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs index fff185313c..f5ed7f5051 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.AnyOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs index 8f6fb328ce..ade9215444 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1 ); @@ -40,7 +40,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs index 73bc9f5c18..64a17520a2 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf3.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -45,7 +45,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3 @@ -70,7 +70,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serializa /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs index dc36115487..0f6c5aea48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf4.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3, @@ -85,7 +85,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Seria /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs index aa84794adc..f7d9bbe022 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOf5.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -65,7 +65,7 @@ public class OneOfJsonConverter : global::System.Text.Json.S { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2, value3, @@ -100,7 +100,7 @@ public class OneOfJsonConverter : global::System.Text.Json.S /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs index 57ff9d167d..50f7b590c3 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs index 141db21b25..a60f3e9978 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory3.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory3 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs index 8193f367d6..2bca2bec47 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory4.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory4 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs index 5232991b53..313553af48 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#JsonConverters.OneOfFactory5.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory5 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,,,,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,,,,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.1.g.verified.cs index 5f34723afb..9272d23ec5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.3.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.3.g.verified.cs index 567f9ab936..048b642356 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.3.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.3.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.4.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.4.g.verified.cs index 9ea95f4cbc..3cf14720fe 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.4.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.4.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.5.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.5.g.verified.cs index 051e7d69e1..026bd6075b 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.5.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#OneOf.5.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AllOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AllOf.2.g.verified.cs index cc8cad9ec0..5ba8f097cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AllOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AllOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AnyOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AnyOf.1.g.verified.cs index b9ac10a20d..3b49ea5e0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AnyOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#AnyOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.ChatClient.ChatCompletions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.ChatClient.ChatCompletions.g.verified.cs index da50cf4d50..96cbbd7250 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.ChatClient.ChatCompletions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.ChatClient.ChatCompletions.g.verified.cs @@ -182,10 +182,10 @@ partial void ProcessChatCompletionsResponseContent( float presencePenalty = default, float frequencyPenalty = default, global::G.ChatCompletionRequestLogitBias? logitBias = default, - global::System.OneOf? functionCall = default, + global::G.OneOf? functionCall = default, global::G.ChatCompletionRequestResponseFormat? responseFormat = default, global::System.Collections.Generic.IList? tools = default, - global::System.OneOf? toolChoice = default, + global::G.OneOf? toolChoice = default, string? safetyModel = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs index f890771990..9099672837 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs @@ -109,7 +109,7 @@ partial void ProcessEmbeddingsResponseContent( /// public async global::System.Threading.Tasks.Task EmbeddingsAsync( string model, - global::System.OneOf> input, + global::G.OneOf> input, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.EmbeddingsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs index 7458384da3..9a3231ee89 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs @@ -45,7 +45,7 @@ public sealed partial class ChatCompletionChoicesDataItem /// /// [global::Newtonsoft.Json.JsonProperty("logprobs")] - public global::System.AllOf? Logprobs { get; set; } + public global::G.AllOf? Logprobs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChunk.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChunk.g.verified.cs index 1ef5b1bc80..8ed008d0ad 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChunk.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionChunk.g.verified.cs @@ -51,7 +51,7 @@ public sealed partial class ChatCompletionChunk /// /// [global::Newtonsoft.Json.JsonProperty("usage")] - public global::System.AllOf? Usage { get; set; } + public global::G.AllOf? Usage { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionRequest.g.verified.cs index 2fa0d21f55..3c23781bfa 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.ChatCompletionRequest.g.verified.cs @@ -112,7 +112,7 @@ public sealed partial class ChatCompletionRequest /// /// [global::Newtonsoft.Json.JsonProperty("function_call")] - public global::System.OneOf? FunctionCall { get; set; } + public global::G.OneOf? FunctionCall { get; set; } /// /// An object specifying the format that the model must output. @@ -130,7 +130,7 @@ public sealed partial class ChatCompletionRequest /// Controls which (if any) function is called by the model. By default uses `auto`, which lets the model pick between generating a message or calling a function. /// [global::Newtonsoft.Json.JsonProperty("tool_choice")] - public global::System.OneOf? ToolChoice { get; set; } + public global::G.OneOf? ToolChoice { get; set; } /// /// The name of the moderation model used to validate tokens. Choose from the available moderation models found [here](https://docs.together.ai/docs/inference-models#moderation-models).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.CompletionChunk.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.CompletionChunk.g.verified.cs index d9e4866913..053445a7f7 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.CompletionChunk.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.CompletionChunk.g.verified.cs @@ -33,13 +33,13 @@ public sealed partial class CompletionChunk /// ///
[global::Newtonsoft.Json.JsonProperty("usage", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf Usage { get; set; } = default!; + public global::G.AllOf Usage { get; set; } = default!; /// /// /// [global::Newtonsoft.Json.JsonProperty("finish_reason", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.AllOf FinishReason { get; set; } = default!; + public global::G.AllOf FinishReason { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.EmbeddingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.EmbeddingsRequest.g.verified.cs index 8592ef126d..4def37beec 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.EmbeddingsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.EmbeddingsRequest.g.verified.cs @@ -22,7 +22,7 @@ public sealed partial class EmbeddingsRequest /// /// [global::Newtonsoft.Json.JsonProperty("input", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf> Input { get; set; } = default!; + public global::G.OneOf> Input { get; set; } = default!; /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.FinetuneEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.FinetuneEvent.g.verified.cs index a5210c5c66..a8d07483cc 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.FinetuneEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.FinetuneEvent.g.verified.cs @@ -27,7 +27,7 @@ public sealed partial class FinetuneEvent /// /// [global::Newtonsoft.Json.JsonProperty("level")] - public global::System.AnyOf? Level { get; set; } + public global::G.AnyOf? Level { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs index f1b063e396..4db1415238 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.Models.RerankRequest.g.verified.cs @@ -30,7 +30,7 @@ public sealed partial class RerankRequest /// Example: [, , , ] /// [global::Newtonsoft.Json.JsonProperty("documents", Required = global::Newtonsoft.Json.Required.Always)] - public global::System.OneOf, global::System.Collections.Generic.IList> Documents { get; set; } = default!; + public global::G.OneOf, global::System.Collections.Generic.IList> Documents { get; set; } = default!; /// /// The number of top results to return.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.RerankClient.Rerank.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.RerankClient.Rerank.g.verified.cs index ad1f3fc126..566be6e1f9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.RerankClient.Rerank.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#G.RerankClient.Rerank.g.verified.cs @@ -129,7 +129,7 @@ partial void ProcessRerankResponseContent( public async global::System.Threading.Tasks.Task RerankAsync( string model, string query, - global::System.OneOf, global::System.Collections.Generic.IList> documents, + global::G.OneOf, global::System.Collections.Generic.IList> documents, int topN = default, bool returnDocuments = default, global::System.Collections.Generic.IList? rankFields = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/NewtonsoftJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AllOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AllOf.2.g.verified.cs index cc8cad9ec0..5ba8f097cb 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AllOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AllOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AnyOf.1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AnyOf.1.g.verified.cs index b9ac10a20d..3b49ea5e0a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AnyOf.1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#AnyOf.1.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.ChatClient.ChatCompletions.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.ChatClient.ChatCompletions.g.verified.cs index c82e432f6b..39fdeedc49 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.ChatClient.ChatCompletions.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.ChatClient.ChatCompletions.g.verified.cs @@ -182,10 +182,10 @@ partial void ProcessChatCompletionsResponseContent( float presencePenalty = default, float frequencyPenalty = default, global::G.ChatCompletionRequestLogitBias? logitBias = default, - global::System.OneOf? functionCall = default, + global::G.OneOf? functionCall = default, global::G.ChatCompletionRequestResponseFormat? responseFormat = default, global::System.Collections.Generic.IList? tools = default, - global::System.OneOf? toolChoice = default, + global::G.OneOf? toolChoice = default, string? safetyModel = default, global::System.Threading.CancellationToken cancellationToken = default) { diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs index 8257875286..404834985a 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.EmbeddingsClient.Embeddings.g.verified.cs @@ -109,7 +109,7 @@ partial void ProcessEmbeddingsResponseContent( /// public async global::System.Threading.Tasks.Task EmbeddingsAsync( string model, - global::System.OneOf> input, + global::G.OneOf> input, global::System.Threading.CancellationToken cancellationToken = default) { var request = new global::G.EmbeddingsRequest diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs index a9b404c290..35080952b9 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChoicesDataItem.g.verified.cs @@ -47,7 +47,7 @@ public sealed partial class ChatCompletionChoicesDataItem /// [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] - public global::System.AllOf? Logprobs { get; set; } + public global::G.AllOf? Logprobs { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChunk.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChunk.g.verified.cs index b7bcf0ca2d..1dfe7192ae 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChunk.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionChunk.g.verified.cs @@ -57,7 +57,7 @@ public sealed partial class ChatCompletionChunk /// [global::System.Text.Json.Serialization.JsonPropertyName("usage")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] - public global::System.AllOf? Usage { get; set; } + public global::G.AllOf? Usage { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionRequest.g.verified.cs index 475d5f4b23..aa53b0cf08 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.ChatCompletionRequest.g.verified.cs @@ -115,7 +115,7 @@ public sealed partial class ChatCompletionRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("function_call")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? FunctionCall { get; set; } + public global::G.OneOf? FunctionCall { get; set; } /// /// An object specifying the format that the model must output. @@ -134,7 +134,7 @@ public sealed partial class ChatCompletionRequest /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] - public global::System.OneOf? ToolChoice { get; set; } + public global::G.OneOf? ToolChoice { get; set; } /// /// The name of the moderation model used to validate tokens. Choose from the available moderation models found [here](https://docs.together.ai/docs/inference-models#moderation-models).
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.CompletionChunk.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.CompletionChunk.g.verified.cs index e64f6c03f9..2d6a505cf8 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.CompletionChunk.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.CompletionChunk.g.verified.cs @@ -38,7 +38,7 @@ public sealed partial class CompletionChunk [global::System.Text.Json.Serialization.JsonPropertyName("usage")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf Usage { get; set; } + public required global::G.AllOf Usage { get; set; } /// /// @@ -46,7 +46,7 @@ public sealed partial class CompletionChunk [global::System.Text.Json.Serialization.JsonPropertyName("finish_reason")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AllOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.AllOf FinishReason { get; set; } + public required global::G.AllOf FinishReason { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.EmbeddingsRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.EmbeddingsRequest.g.verified.cs index ec566aa60f..7585dd0644 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.EmbeddingsRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.EmbeddingsRequest.g.verified.cs @@ -25,7 +25,7 @@ public sealed partial class EmbeddingsRequest [global::System.Text.Json.Serialization.JsonPropertyName("input")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf> Input { get; set; } + public required global::G.OneOf> Input { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.FinetuneEvent.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.FinetuneEvent.g.verified.cs index 30bca83608..fd026d4659 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.FinetuneEvent.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.FinetuneEvent.g.verified.cs @@ -29,7 +29,7 @@ public sealed partial class FinetuneEvent /// [global::System.Text.Json.Serialization.JsonPropertyName("level")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.AnyOfJsonConverterFactory1))] - public global::System.AnyOf? Level { get; set; } + public global::G.AnyOf? Level { get; set; } /// /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs index c862e141d8..fb46187c62 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.Models.RerankRequest.g.verified.cs @@ -34,7 +34,7 @@ public sealed partial class RerankRequest [global::System.Text.Json.Serialization.JsonPropertyName("documents")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::AutoSDK.JsonConverters.OneOfJsonConverterFactory2))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.OneOf, global::System.Collections.Generic.IList> Documents { get; set; } + public required global::G.OneOf, global::System.Collections.Generic.IList> Documents { get; set; } /// /// The number of top results to return.
diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.RerankClient.Rerank.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.RerankClient.Rerank.g.verified.cs index 7c36ef7d51..1c3fb3b98d 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.RerankClient.Rerank.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#G.RerankClient.Rerank.g.verified.cs @@ -129,7 +129,7 @@ partial void ProcessRerankResponseContent( public async global::System.Threading.Tasks.Task RerankAsync( string model, string query, - global::System.OneOf, global::System.Collections.Generic.IList> documents, + global::G.OneOf, global::System.Collections.Generic.IList> documents, int topN = default, bool returnDocuments = default, global::System.Collections.Generic.IList? rankFields = default, diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs index db279d04d6..aedb302c29 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AllOf Read( + public override global::G.AllOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.AllOf( + var result = new global::G.AllOf( value1, value2 ); @@ -55,7 +55,7 @@ public class AllOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AllOf value, + global::G.AllOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs index 785e6bb987..1ce6ed91b5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AllOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AllOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AllOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AllOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs index e88a137aec..fc903f6b32 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOf1.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class AnyOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.AnyOf Read( + public override global::G.AnyOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -25,7 +25,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization.Jso { } - var result = new global::System.AnyOf( + var result = new global::G.AnyOf( value1 ); @@ -40,7 +40,7 @@ public class AnyOfJsonConverter : global::System.Text.Json.Serialization.Jso /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.AnyOf value, + global::G.AnyOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs index 9473eddc4c..17daf15fd5 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.AnyOfFactory1.g.verified.cs @@ -9,7 +9,7 @@ public sealed class AnyOfJsonConverterFactory1 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.AnyOf<>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.AnyOf<>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs index 2f070b474c..bb63da9068 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOf2.g.verified.cs @@ -4,10 +4,10 @@ namespace AutoSDK.JsonConverters { /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> + public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> { /// - public override global::System.OneOf Read( + public override global::G.OneOf Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -35,7 +35,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization { } - var result = new global::System.OneOf( + var result = new global::G.OneOf( value1, value2 ); @@ -55,7 +55,7 @@ public class OneOfJsonConverter : global::System.Text.Json.Serialization /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::System.OneOf value, + global::G.OneOf value, global::System.Text.Json.JsonSerializerOptions options) { options = options ?? throw new global::System.ArgumentNullException(nameof(options)); diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs index bfd90fac81..f814ca5b8f 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#JsonConverters.OneOfFactory2.g.verified.cs @@ -9,7 +9,7 @@ public sealed class OneOfJsonConverterFactory2 : global::System.Text.Json.Serial /// public override bool CanConvert(global::System.Type? typeToConvert) { - return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::System.OneOf<,>); + return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::G.OneOf<,>); } /// diff --git a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#OneOf.2.g.verified.cs b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#OneOf.2.g.verified.cs index 43d464658e..80d1955a67 100644 --- a/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#OneOf.2.g.verified.cs +++ b/src/tests/AutoSDK.SnapshotTests/Snapshots/Together/SystemTextJson/_#OneOf.2.g.verified.cs @@ -3,7 +3,7 @@ #nullable enable -namespace System +namespace G { /// ///