Skip to content

[codex] Support remaining official security schemes#257

Merged
HavenDV merged 8 commits intomainfrom
codex/issue-231-official-security-schemes
Apr 10, 2026
Merged

[codex] Support remaining official security schemes#257
HavenDV merged 8 commits intomainfrom
codex/issue-231-official-security-schemes

Conversation

@HavenDV
Copy link
Copy Markdown
Collaborator

@HavenDV HavenDV commented Apr 9, 2026

Summary

  • add generator support for the remaining official OpenAPI security schemes: cookie apiKey, openIdConnect, and mutualTLS
  • carry SchemeId through generated runtime auth metadata so requirement matching stays stable across multiple schemes of the same type
  • add owned HttpClientHandler support for generated mutual TLS clients and refresh the security-related snapshots

Why

Issue #231 called out three gaps in the generated clients:

  • cookie apiKey auth was not applied at request time
  • openIdConnect generated as a no-op instead of a usable bearer-style helper
  • there was no generated client-certificate hook for mutualTLS

The root cause was that the generator only had first-class handling for header/query apiKey, HTTP auth, and OAuth2, and requirement matching keyed mostly on scheme type instead of scheme identity.

Impact

  • generated clients can now send cookie auth correctly
  • generated clients expose OpenID Connect discovery metadata and auth helpers
  • generated clients can configure mutual TLS certificates when AutoSDK owns the HttpClient
  • generated security requirement matching is now scheme-aware, which avoids collisions between multiple auth schemes of the same type

Validation

  • dotnet build /p:TreatWarningsAsErrors=true
  • dotnet test src/tests/AutoSDK.UnitTests/AutoSDK.UnitTests.csproj --filter "FullyQualifiedName~AuthorizationGenerationTests|FullyQualifiedName~HttpTests"
  • dotnet test src/tests/AutoSDK.IntegrationTests.Cli/AutoSDK.IntegrationTests.Cli.csproj --filter "FullyQualifiedName~Generate_WithRemainingOfficialSecuritySchemes_BuildsAndEmitsSupport"
  • dotnet test src/tests/AutoSDK.SnapshotTests/AutoSDK.SnapshotTests.csproj

Closes #231

HavenDV added 3 commits April 9, 2026 11:51
…fficial-security-schemes

# Conflicts:
#	src/libs/AutoSDK.CSharp/Sources/Sources.Authorizations.cs
#	src/libs/AutoSDK.CSharp/Sources/Sources.Methods.cs
#	src/tests/AutoSDK.IntegrationTests.Cli/CliTests.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/assemblyai/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/blackforestlabs/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/browserbase/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/cartesia/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/chroma/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/cohere/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/deepinfra/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/deepl/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/exa/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/firecrawl/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/google-gemini/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/groq/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/heygen/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/ideogram/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/instill/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/jina/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/lakera/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/milvus/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/mixedbread/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/qdrant/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/reka/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/replicate/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/runway/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/sarvamai/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/tavily/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/twitch/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/ultravox/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/upstage/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/CLI/writer/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.FilesClient.Upload.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.ActionItems.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.GetResponse.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.PurgeRequestData.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.QuestionAnswer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.Summary.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.LemurClient.Task.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.RealtimeClient.CreateTemporaryToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.Delete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.Get.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.GetParagraphs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.GetRedactedAudio.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.GetSentences.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.GetSubtitles.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.List.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.Submit.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/NewtonsoftJson/_#G.TranscriptsClient.WordSearch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.FilesClient.Upload.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.ActionItems.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.GetResponse.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.PurgeRequestData.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.QuestionAnswer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.Summary.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.LemurClient.Task.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.RealtimeClient.CreateTemporaryToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.Delete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.Get.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.GetParagraphs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.GetRedactedAudio.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.GetSentences.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.GetSubtitles.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.List.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.Submit.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/assemblyai/SystemTextJson/_#G.TranscriptsClient.WordSearch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.Api.GetCreditsV1CreditsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.ExpandV1FluxPro10ExpandPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.FillV1FluxPro10FillPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.FluxDevV1FluxDevPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.FluxPro10FillFinetunedV1FluxPro10FillFinetunedPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.FluxPro11V1FluxPro11Post.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateBigblueFinetunedV1FluxPro11UltraFinetunedPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux11UltraV1FluxPro11UltraPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2FlexV1Flux2FlexPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2Klein4bV1Flux2Klein4bPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2Klein9bKvV1Flux2Klein9bPreviewPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2Klein9bV1Flux2Klein9bPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2MaxV1Flux2MaxPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2ProPreviewV1Flux2ProPreviewPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFlux2ProV1Flux2ProPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFluxKontextMaxV1FluxKontextMaxPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.ModelsClient.GenerateFluxKontextProV1FluxKontextProPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.UtilityClient.DeleteFinetuneV1DeleteFinetunePost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.UtilityClient.FinetuneDetailsV1FinetuneDetailsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/NewtonsoftJson/_#G.UtilityClient.MyFinetunesV1MyFinetunesGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.Api.GetCreditsV1CreditsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.ExpandV1FluxPro10ExpandPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.FillV1FluxPro10FillPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.FluxDevV1FluxDevPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.FluxPro10FillFinetunedV1FluxPro10FillFinetunedPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.FluxPro11V1FluxPro11Post.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateBigblueFinetunedV1FluxPro11UltraFinetunedPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux11UltraV1FluxPro11UltraPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2FlexV1Flux2FlexPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2Klein4bV1Flux2Klein4bPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2Klein9bKvV1Flux2Klein9bPreviewPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2Klein9bV1Flux2Klein9bPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2MaxV1Flux2MaxPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2ProPreviewV1Flux2ProPreviewPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFlux2ProV1Flux2ProPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFluxKontextMaxV1FluxKontextMaxPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.ModelsClient.GenerateFluxKontextProV1FluxKontextProPost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.UtilityClient.DeleteFinetuneV1DeleteFinetunePost.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.UtilityClient.FinetuneDetailsV1FinetuneDetailsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blackforestlabs/SystemTextJson/_#G.UtilityClient.MyFinetunesV1MyFinetunesGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.AccountClient.GetAccountDetails.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.BatchesClient.CreateBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.BatchesClient.GetBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.BatchesClient.GetBatchLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.BatchesClient.ListBatches.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.BatchesClient.StopBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.AnalyzeCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.GetCallDetails.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.GetCallRecording.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.ListActiveCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.ListCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.SendCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.StopAllActiveCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.CallsClient.StopCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.NumbersClient.GetInboundNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.NumbersClient.ListInboundNumbers.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.NumbersClient.PurchaseNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.NumbersClient.UpdateInboundNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.PathwaysClient.CreatePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.PathwaysClient.DeletePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.PathwaysClient.GetPathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.PathwaysClient.ListPathways.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.PathwaysClient.UpdatePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/NewtonsoftJson/_#G.VoicesClient.ListVoices.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.AccountClient.GetAccountDetails.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.BatchesClient.CreateBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.BatchesClient.GetBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.BatchesClient.GetBatchLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.BatchesClient.ListBatches.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.BatchesClient.StopBatch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.AnalyzeCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.GetCallDetails.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.GetCallRecording.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.ListActiveCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.ListCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.SendCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.StopAllActiveCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.CallsClient.StopCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.NumbersClient.GetInboundNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.NumbersClient.ListInboundNumbers.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.NumbersClient.PurchaseNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.NumbersClient.UpdateInboundNumber.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.PathwaysClient.CreatePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.PathwaysClient.DeletePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.PathwaysClient.GetPathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.PathwaysClient.ListPathways.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.PathwaysClient.UpdatePathway.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/blandai/SystemTextJson/_#G.VoicesClient.ListVoices.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.AclBatchUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.AclListOrg.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.DeleteAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.DeleteAclId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.GetAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.GetAclId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AclsClient.PostAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.DeleteAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.DeleteAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.GetAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.GetAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.PatchAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.PostAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.AiSecretsClient.PutAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ApiKeysClient.DeleteApiKeyId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ApiKeysClient.GetApiKey.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ApiKeysClient.GetApiKeyId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ApiKeysClient.PostApiKey.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.CrossObjectClient.PostCrossObjectInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.DeleteDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.GetDataset.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.GetDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.GetDatasetIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.GetDatasetIdSummarize.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.PatchDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.PostDataset.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.PostDatasetIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.PostDatasetIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.DatasetsClient.PostDatasetIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.DeleteEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.GetEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.GetEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.PatchEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.PostEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvVarsClient.PutEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvironmentsClient.CreateEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvironmentsClient.DeleteEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvironmentsClient.GetEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvironmentsClient.ListEnvironments.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EnvironmentsClient.UpdateEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.DeleteEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.GetEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.GetEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.PatchEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.PostEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalStatusPagesClient.PutEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.EvalsClient.EvalLaunch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.DeleteExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.GetExperiment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.GetExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.GetExperimentIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.GetExperimentIdSummarize.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.PatchExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.PostExperiment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.PostExperimentIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.PostExperimentIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ExperimentsClient.PostExperimentIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.DeleteFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.GetFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.GetFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.PatchFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.PostFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.PostFunctionIdInvoke.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.FunctionsClient.PutFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.DeleteGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.GetGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.GetGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.PatchGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.PostGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.GroupsClient.PutGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.LogsClient.GetProjectLogsIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.LogsClient.PostProjectLogsIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.LogsClient.PostProjectLogsIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.LogsClient.PostProjectLogsIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.DeleteMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.GetMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.GetMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.PatchMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.PostMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.McpServersClient.PutMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.OrganizationsClient.GetOrganization.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.OrganizationsClient.GetOrganizationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.OrganizationsClient.PatchOrganizationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.OrganizationsClient.PatchOrganizationMembers.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.DeleteProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.GetProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.GetProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.PatchProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.PostProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectAutomationsClient.PutProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.DeleteProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.GetProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.GetProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.PatchProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.PostProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectScoresClient.PutProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.DeleteProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.GetProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.GetProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.PatchProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.PostProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectTagsClient.PutProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectsClient.DeleteProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectsClient.GetProject.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectsClient.GetProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectsClient.PatchProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProjectsClient.PostProject.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.DeletePromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.GetPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.GetPromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.PatchPromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.PostPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.PromptsClient.PutPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProxyClient.Proxyauto.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProxyClient.ProxychatCompletions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProxyClient.Proxycompletions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProxyClient.Proxycredentials.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ProxyClient.Proxyembeddings.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.DeleteRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.GetRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.GetRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.PatchRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.PostRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.RolesClient.PutRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.DeleteServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.DeleteServiceTokenId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.GetServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.GetServiceTokenId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.PostServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ServiceTokensClient.PutServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.DeleteSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.GetSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.GetSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.PatchSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.PostSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.SpanIframesClient.PutSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.UsersClient.GetUser.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.UsersClient.GetUserId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.DeleteViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.GetView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.GetViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.PatchViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.PostView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/NewtonsoftJson/_#G.ViewsClient.PutView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.AclBatchUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.AclListOrg.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.DeleteAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.DeleteAclId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.GetAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.GetAclId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AclsClient.PostAcl.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.DeleteAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.DeleteAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.GetAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.GetAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.PatchAiSecretId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.PostAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.AiSecretsClient.PutAiSecret.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ApiKeysClient.DeleteApiKeyId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ApiKeysClient.GetApiKey.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ApiKeysClient.GetApiKeyId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ApiKeysClient.PostApiKey.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.CrossObjectClient.PostCrossObjectInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.DeleteDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.GetDataset.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.GetDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.GetDatasetIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.GetDatasetIdSummarize.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.PatchDatasetId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.PostDataset.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.PostDatasetIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.PostDatasetIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.DatasetsClient.PostDatasetIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.DeleteEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.GetEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.GetEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.PatchEnvVarId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.PostEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvVarsClient.PutEnvVar.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvironmentsClient.CreateEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvironmentsClient.DeleteEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvironmentsClient.GetEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvironmentsClient.ListEnvironments.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EnvironmentsClient.UpdateEnvironment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.DeleteEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.GetEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.GetEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.PatchEvalStatusPageId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.PostEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalStatusPagesClient.PutEvalStatusPage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.EvalsClient.EvalLaunch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.DeleteExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.GetExperiment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.GetExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.GetExperimentIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.GetExperimentIdSummarize.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.PatchExperimentId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.PostExperiment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.PostExperimentIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.PostExperimentIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ExperimentsClient.PostExperimentIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.DeleteFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.GetFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.GetFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.PatchFunctionId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.PostFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.PostFunctionIdInvoke.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.FunctionsClient.PutFunction.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.DeleteGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.GetGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.GetGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.PatchGroupId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.PostGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.GroupsClient.PutGroup.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.LogsClient.GetProjectLogsIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.LogsClient.PostProjectLogsIdFeedback.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.LogsClient.PostProjectLogsIdFetch.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.LogsClient.PostProjectLogsIdInsert.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.DeleteMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.GetMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.GetMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.PatchMcpServerId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.PostMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.McpServersClient.PutMcpServer.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.OrganizationsClient.GetOrganization.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.OrganizationsClient.GetOrganizationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.OrganizationsClient.PatchOrganizationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.OrganizationsClient.PatchOrganizationMembers.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.DeleteProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.GetProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.GetProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.PatchProjectAutomationId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.PostProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectAutomationsClient.PutProjectAutomation.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.DeleteProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.GetProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.GetProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.PatchProjectScoreId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.PostProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectScoresClient.PutProjectScore.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.DeleteProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.GetProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.GetProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.PatchProjectTagId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.PostProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectTagsClient.PutProjectTag.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectsClient.DeleteProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectsClient.GetProject.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectsClient.GetProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectsClient.PatchProjectId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProjectsClient.PostProject.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.DeletePromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.GetPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.GetPromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.PatchPromptId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.PostPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.PromptsClient.PutPrompt.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProxyClient.Proxyauto.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProxyClient.ProxychatCompletions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProxyClient.Proxycompletions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProxyClient.Proxycredentials.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ProxyClient.Proxyembeddings.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.DeleteRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.GetRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.GetRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.PatchRoleId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.PostRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.RolesClient.PutRole.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.DeleteServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.DeleteServiceTokenId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.GetServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.GetServiceTokenId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.PostServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ServiceTokensClient.PutServiceToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.DeleteSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.GetSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.GetSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.PatchSpanIframeId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.PostSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.SpanIframesClient.PutSpanIframe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.UsersClient.GetUser.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.UsersClient.GetUserId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.DeleteViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.GetView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.GetViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.PatchViewId.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.PostView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/braintrust/SystemTextJson/_#G.ViewsClient.PutView.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ContextsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ContextsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ContextsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ContextsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ExtensionsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ExtensionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ExtensionsUpload.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FetchCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionBuildsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionBuildsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionBuildsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionVersionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionVersionsListInvocations.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionsInvoke.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.FunctionsListVersions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.InvocationsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.InvocationsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ProjectsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ProjectsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.ProjectsUsage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SearchWeb.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsDeleteDownloads.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsGetDebug.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsGetDownloads.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsGetRecording.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Api.SessionsUploadFile.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ContextsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ContextsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ContextsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ContextsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ExtensionsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ExtensionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ExtensionsUpload.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FetchCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionBuildsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionBuildsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionBuildsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionVersionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionVersionsListInvocations.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionsInvoke.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.FunctionsListVersions.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.InvocationsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.InvocationsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ProjectsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ProjectsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.ProjectsUsage.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SearchWeb.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsDeleteDownloads.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsGetDebug.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsGetDownloads.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsGetLogs.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsGetRecording.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Api.SessionsUploadFile.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/browserbase/SystemTextJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsAddMetricToAgent.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsCreateMetric.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsDownloadCallAudio.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsExportMetricResults.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsGetCall.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsGetDeployment.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsGetMetric.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsListCalls.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsListDeployments.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsListMetricResults.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsListMetrics.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsPhoneNumbers.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsRemoveMetricFromAgent.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsTemplates.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AgentsClient.AgentsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.ApiStatusClient.ApiStatusGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.AuthClient.AuthAccessToken.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsDeleteFile.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsListFiles.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.DatasetsClient.DatasetsUploadFile.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.FineTunesClient.FineTunesCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.FineTunesClient.FineTunesDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.FineTunesClient.FineTunesGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.FineTunesClient.FineTunesList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.FineTunesClient.FineTunesListVoices.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.InfillClient.InfillBytes.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.PronunciationDictsClient.PronunciationDictsCreate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.PronunciationDictsClient.PronunciationDictsDelete.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.PronunciationDictsClient.PronunciationDictsGet.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.PronunciationDictsClient.PronunciationDictsList.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.PronunciationDictsClient.PronunciationDictsUpdate.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.Security.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.SttClient.SttTranscribe.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.TtsClient.TtsBytes.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.TtsClient.TtsSse.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/cartesia/NewtonsoftJson/_#G.VoiceChangerClient.VoiceChangerBytes.g.verified.cs
#	src/tests/AutoSDK.SnapshotTests/Snapshots/ca…
@HavenDV HavenDV marked this pull request as ready for review April 9, 2026 23:18
@HavenDV
Copy link
Copy Markdown
Collaborator Author

HavenDV commented Apr 9, 2026

Reopening to retrigger pull_request checks on the current head SHA.

@HavenDV HavenDV closed this Apr 9, 2026
@HavenDV HavenDV reopened this Apr 9, 2026
@HavenDV HavenDV merged commit 6a1c3d8 into main Apr 10, 2026
3 checks passed
@HavenDV HavenDV deleted the codex/issue-231-official-security-schemes branch April 10, 2026 01:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support remaining official OpenAPI security schemes (cookie apiKey, OpenID Connect, mutualTLS)

1 participant