@@ -3538,6 +3538,14 @@ export type ConnectionDomainGoogleApps = string;
35383538 */
35393539export type ConnectionDomainOkta = string;
35403540
3541+ /** Algorithm used for DPoP proof JWT signing. */
3542+ export const ConnectionDpopSigningAlgEnum = {
3543+ Es256: "ES256",
3544+ Ed25519: "Ed25519",
3545+ } as const;
3546+ export type ConnectionDpopSigningAlgEnum =
3547+ (typeof ConnectionDpopSigningAlgEnum)[keyof typeof ConnectionDpopSigningAlgEnum];
3548+
35413549/**
35423550 * JSON array containing a list of the JWS signing algorithms (alg values) supported for DPoP proof JWT signing.
35433551 */
@@ -4465,6 +4473,7 @@ export interface ConnectionOptionsCommonOidc {
44654473 client_secret?: Management.ConnectionClientSecretOidc | undefined;
44664474 connection_settings?: Management.ConnectionConnectionSettings | undefined;
44674475 domain_aliases?: Management.ConnectionDomainAliases | undefined;
4476+ dpop_signing_alg?: Management.ConnectionDpopSigningAlgEnum | undefined;
44684477 federated_connections_access_tokens?: (Management.ConnectionFederatedConnectionsAccessTokens | null) | undefined;
44694478 icon_url?: Management.ConnectionIconUrl | undefined;
44704479 id_token_signed_response_algs?: ((Management.ConnectionIdTokenSignedResponseAlgs | undefined) | null) | undefined;
@@ -5809,7 +5818,7 @@ export interface ConnectionPropertiesOptions {
58095818 /** Enable this if you have a legacy user store and you want to gradually migrate those users to the Auth0 user store */
58105819 import_mode?: boolean | undefined;
58115820 /** Stores encrypted string only configurations for connections */
5812- configuration?: (Record<string, string | null> | null) | undefined;
5821+ configuration?: (Record<string, ( string | null) | undefined > | null) | undefined;
58135822 customScripts?: Management.ConnectionCustomScripts | undefined;
58145823 authentication_methods?: (Management.ConnectionAuthenticationMethods | null) | undefined;
58155824 passkey_options?: (Management.ConnectionPasskeyOptions | null) | undefined;
@@ -7322,7 +7331,7 @@ export type ConnectionUpstreamAliasEnum =
73227331 * Options for adding parameters in the request to the upstream IdP
73237332 */
73247333export type ConnectionUpstreamParams =
7325- | (Record<string, Management.ConnectionUpstreamAdditionalProperties | null> | null)
7334+ | (Record<string, ( Management.ConnectionUpstreamAdditionalProperties | null) | undefined > | null)
73267335 | undefined;
73277336
73287337/**
@@ -7407,7 +7416,7 @@ export type ConnectionWaadProtocolEnumAzureAd =
74077416/**
74087417 * Metadata associated with the connection in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed.
74097418 */
7410- export type ConnectionsMetadata = Record<string, string | null>;
7419+ export type ConnectionsMetadata = Record<string, ( string | null) | undefined >;
74117420
74127421export interface CreateActionModuleResponseContent {
74137422 /** The unique ID of the module. */
@@ -10185,7 +10194,7 @@ export type DomainCertificateStatusEnum =
1018510194/**
1018610195 * Domain metadata associated with the custom domain, in the form of an object with string values (max 255 chars). Maximum of 10 domain metadata properties allowed.
1018710196 */
10188- export type DomainMetadata = Record<string, string | null>;
10197+ export type DomainMetadata = Record<string, ( string | null) | undefined >;
1018910198
1019010199/**
1019110200 * Domain verification settings.
@@ -11170,7 +11179,7 @@ export type FlowActionAuth0SendRequestParamsPayloadObject = Record<string, unkno
1117011179
1117111180export type FlowActionAuth0SendRequestParamsQueryParams = Record<
1117211181 string,
11173- FlowActionAuth0SendRequestParamsQueryParams.Value | null
11182+ ( FlowActionAuth0SendRequestParamsQueryParams.Value | null) | undefined
1117411183>;
1117511184
1117611185export namespace FlowActionAuth0SendRequestParamsQueryParams {
@@ -11676,7 +11685,7 @@ export type FlowActionHttpSendRequestParamsPayloadObject = Record<string, unknow
1167611685
1167711686export type FlowActionHttpSendRequestParamsQueryParams = Record<
1167811687 string,
11679- FlowActionHttpSendRequestParamsQueryParams.Value | null
11688+ ( FlowActionHttpSendRequestParamsQueryParams.Value | null) | undefined
1168011689>;
1168111690
1168211691export namespace FlowActionHttpSendRequestParamsQueryParams {
@@ -17551,7 +17560,7 @@ export interface OrganizationMemberRole {
1755117560/**
1755217561 * Metadata associated with the organization, in the form of an object with string values (max 255 chars). Maximum of 25 metadata properties allowed.
1755317562 */
17554- export type OrganizationMetadata = Record<string, string | null>;
17563+ export type OrganizationMetadata = Record<string, ( string | null) | undefined >;
1755517564
1755617565/** Defines whether organizations can be used with client credentials exchanges for this grant. */
1755717566export const OrganizationUsageEnum = {
@@ -20060,7 +20069,7 @@ export interface UpdateConnectionOptions {
2006020069 /** Enable this if you have a legacy user store and you want to gradually migrate those users to the Auth0 user store */
2006120070 import_mode?: boolean | undefined;
2006220071 /** Stores encrypted string only configurations for connections */
20063- configuration?: (Record<string, string | null> | null) | undefined;
20072+ configuration?: (Record<string, ( string | null) | undefined > | null) | undefined;
2006420073 customScripts?: Management.ConnectionCustomScripts | undefined;
2006520074 authentication_methods?: (Management.ConnectionAuthenticationMethods | null) | undefined;
2006620075 passkey_options?: (Management.ConnectionPasskeyOptions | null) | undefined;
0 commit comments