You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto-generated parity issue — may be a false positive.
This issue was created automatically by /sync-sdk-parity from a heuristic
analysis of recent supabase-js commits. The tooling has limited insight
into language-specific idioms and may have:
misidentified a JS-only change as cross-language relevant,
missed an existing implementation in this SDK under a different name,
or proposed an API shape that doesn't fit this language's conventions.
It is the SDK author's responsibility to validate the need before
implementing. If this change does not apply to this SDK, please close the
issue with a short note explaining why.
SDK Parity: C# implementation needed
A change was made in supabase-js that may need to be implemented in this repository for SDK parity. Please confirm applicability before starting work.
Added custom_claims_allowlist?: string[] to CustomOAuthProvider, CreateCustomProviderParams, and UpdateCustomProviderParams types. Allows specifying which raw identity provider claim keys to copy into the user's custom_claims field.
Code Reference
typeCreateCustomProviderParams={// ...custom_claims_allowlist?: string[]// e.g. ["groups", "org_id", "mail"]// ...}
Warning
Auto-generated parity issue — may be a false positive.
This issue was created automatically by
/sync-sdk-parityfrom a heuristicanalysis of recent
supabase-jscommits. The tooling has limited insightinto language-specific idioms and may have:
It is the SDK author's responsibility to validate the need before
implementing. If this change does not apply to this SDK, please close the
issue with a short note explaining why.
SDK Parity: C# implementation needed
A change was made in
supabase-jsthat may need to be implemented in this repository for SDK parity. Please confirm applicability before starting work.Reference Implementation (supabase-js)
84393f1bWhat Changed
Added
custom_claims_allowlist?: string[]toCustomOAuthProvider,CreateCustomProviderParams, andUpdateCustomProviderParamstypes. Allows specifying which raw identity provider claim keys to copy into the user'scustom_claimsfield.Code Reference
Implementation Guidance
Expected API Surface (C#)
Key Behaviors to Match
List<string>?defaulting to null (omitted from JSON when null)custom_claims_allowlistAcceptance Criteria
CustomClaimsAllowlist: List<string>?in create/update/read types[JsonProperty("custom_claims_allowlist")]or equivalentContext
Generated with Claude Code
/sync-sdk-parity