@@ -5809,7 +5809,7 @@ export interface ConnectionPropertiesOptions {
58095809 /** Enable this if you have a legacy user store and you want to gradually migrate those users to the Auth0 user store */
58105810 import_mode?: boolean | undefined;
58115811 /** Stores encrypted string only configurations for connections */
5812- configuration?: (Record<string, ( string | null) | undefined > | null) | undefined;
5812+ configuration?: (Record<string, string | null> | null) | undefined;
58135813 customScripts?: Management.ConnectionCustomScripts | undefined;
58145814 authentication_methods?: (Management.ConnectionAuthenticationMethods | null) | undefined;
58155815 passkey_options?: (Management.ConnectionPasskeyOptions | null) | undefined;
@@ -7322,7 +7322,7 @@ export type ConnectionUpstreamAliasEnum =
73227322 * Options for adding parameters in the request to the upstream IdP
73237323 */
73247324export type ConnectionUpstreamParams =
7325- | (Record<string, ( Management.ConnectionUpstreamAdditionalProperties | null) | undefined > | null)
7325+ | (Record<string, Management.ConnectionUpstreamAdditionalProperties | null> | null)
73267326 | undefined;
73277327
73287328/**
@@ -7407,7 +7407,7 @@ export type ConnectionWaadProtocolEnumAzureAd =
74077407/**
74087408 * Metadata associated with the connection in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed.
74097409 */
7410- export type ConnectionsMetadata = Record<string, ( string | null) | undefined >;
7410+ export type ConnectionsMetadata = Record<string, string | null>;
74117411
74127412export interface CreateActionModuleResponseContent {
74137413 /** The unique ID of the module. */
@@ -10185,7 +10185,7 @@ export type DomainCertificateStatusEnum =
1018510185/**
1018610186 * 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.
1018710187 */
10188- export type DomainMetadata = Record<string, ( string | null) | undefined >;
10188+ export type DomainMetadata = Record<string, string | null>;
1018910189
1019010190/**
1019110191 * Domain verification settings.
@@ -11170,7 +11170,7 @@ export type FlowActionAuth0SendRequestParamsPayloadObject = Record<string, unkno
1117011170
1117111171export type FlowActionAuth0SendRequestParamsQueryParams = Record<
1117211172 string,
11173- ( FlowActionAuth0SendRequestParamsQueryParams.Value | null) | undefined
11173+ FlowActionAuth0SendRequestParamsQueryParams.Value | null
1117411174>;
1117511175
1117611176export namespace FlowActionAuth0SendRequestParamsQueryParams {
@@ -11676,7 +11676,7 @@ export type FlowActionHttpSendRequestParamsPayloadObject = Record<string, unknow
1167611676
1167711677export type FlowActionHttpSendRequestParamsQueryParams = Record<
1167811678 string,
11679- ( FlowActionHttpSendRequestParamsQueryParams.Value | null) | undefined
11679+ FlowActionHttpSendRequestParamsQueryParams.Value | null
1168011680>;
1168111681
1168211682export namespace FlowActionHttpSendRequestParamsQueryParams {
@@ -17551,7 +17551,7 @@ export interface OrganizationMemberRole {
1755117551/**
1755217552 * Metadata associated with the organization, in the form of an object with string values (max 255 chars). Maximum of 25 metadata properties allowed.
1755317553 */
17554- export type OrganizationMetadata = Record<string, ( string | null) | undefined >;
17554+ export type OrganizationMetadata = Record<string, string | null>;
1755517555
1755617556/** Defines whether organizations can be used with client credentials exchanges for this grant. */
1755717557export const OrganizationUsageEnum = {
@@ -20060,7 +20060,7 @@ export interface UpdateConnectionOptions {
2006020060 /** Enable this if you have a legacy user store and you want to gradually migrate those users to the Auth0 user store */
2006120061 import_mode?: boolean | undefined;
2006220062 /** Stores encrypted string only configurations for connections */
20063- configuration?: (Record<string, ( string | null) | undefined > | null) | undefined;
20063+ configuration?: (Record<string, string | null> | null) | undefined;
2006420064 customScripts?: Management.ConnectionCustomScripts | undefined;
2006520065 authentication_methods?: (Management.ConnectionAuthenticationMethods | null) | undefined;
2006620066 passkey_options?: (Management.ConnectionPasskeyOptions | null) | undefined;
0 commit comments