Skip to content

Commit c57e7d5

Browse files
SDK regeneration
1 parent bf44d79 commit c57e7d5

6 files changed

Lines changed: 532 additions & 499 deletions

File tree

src/management/api/requests/requests.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ export interface CreateClientRequestContent {
232232
/** Comma-separated list of URLs whitelisted for Auth0 to use as a callback to the client after authentication. */
233233
callbacks?: string[];
234234
oidc_logout?: Management.ClientOidcBackchannelLogoutSettings;
235+
/** Configuration for OIDC backchannel logout (deprecated, in favor of oidc_logout) */
235236
oidc_backchannel_logout?: Management.ClientOidcBackchannelLogoutSettings;
236237
session_transfer?: Management.ClientSessionTransferConfiguration | null;
237238
/** Comma-separated list of URLs allowed to make requests from JavaScript to Auth0 API (typically used with CORS). By default, all your callback URLs will be allowed. This field allows you to enter other origins if necessary. You can also use wildcards at the subdomain level (e.g., https://*.contoso.com). Query strings and hash information are not taken into account when validating these URLs. */
@@ -337,6 +338,7 @@ export interface UpdateClientRequestContent {
337338
/** A set of URLs that are valid to call back from Auth0 when authenticating users */
338339
callbacks?: string[];
339340
oidc_logout?: Management.ClientOidcBackchannelLogoutSettings;
341+
/** Configuration for OIDC backchannel logout (deprecated, in favor of oidc_logout) */
340342
oidc_backchannel_logout?: Management.ClientOidcBackchannelLogoutSettings;
341343
session_transfer?: Management.ClientSessionTransferConfiguration | null;
342344
/** A set of URLs that represents valid origins for CORS */
@@ -351,7 +353,9 @@ export interface UpdateClientRequestContent {
351353
allowed_clients?: string[];
352354
/** URLs that are valid to redirect to after logout from Auth0 */
353355
allowed_logout_urls?: string[];
356+
/** An object that holds settings related to how JWTs are created */
354357
jwt_configuration?: Management.ClientJwtConfiguration;
358+
/** The client's encryption key */
355359
encryption_key?: Management.ClientEncryptionKey | null;
356360
/** <code>true</code> to use Auth0 instead of the IdP to do Single Sign On, <code>false</code> otherwise (default: <code>false</code>) */
357361
sso?: boolean;
@@ -379,6 +383,7 @@ export interface UpdateClientRequestContent {
379383
form_template?: string;
380384
addons?: Management.ClientAddons;
381385
client_metadata?: Management.ClientMetadata;
386+
/** Configuration related to native mobile apps */
382387
mobile?: Management.ClientMobile;
383388
/** Initiate login uri, must be https */
384389
initiate_login_uri?: string;
@@ -582,6 +587,7 @@ export interface CreateCustomDomainRequestContent {
582587
* {}
583588
*/
584589
export interface UpdateCustomDomainRequestContent {
590+
/** recommended includes TLS 1.2 */
585591
tls_policy?: Management.CustomDomainTlsPolicyEnum;
586592
custom_client_ip_header?: Management.CustomDomainCustomClientIpHeader | undefined;
587593
domain_metadata?: Management.DomainMetadata;
@@ -983,6 +989,7 @@ export interface CreateHookRequestContent {
983989
/** Whether this hook will be executed (true) or ignored (false). */
984990
enabled?: boolean;
985991
dependencies?: Management.HookDependencies;
992+
/** Execution stage of this rule. Can be `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, or `send-phone-message`. */
986993
triggerId: Management.HookTriggerIdEnum;
987994
}
988995

@@ -1198,6 +1205,7 @@ export interface UpdateSettingsRequestContent {
11981205
* {}
11991206
*/
12001207
export interface UpdateRefreshTokenRequestContent {
1208+
/** Metadata associated with the refresh token. Pass null or {} to remove all metadata. */
12011209
refresh_token_metadata?: (Management.RefreshTokenMetadata | undefined) | null;
12021210
}
12031211

@@ -1480,6 +1488,7 @@ export interface UpdateSelfServiceProfileRequestContent {
14801488
* {}
14811489
*/
14821490
export interface UpdateSessionRequestContent {
1491+
/** Metadata associated with the session. Pass null or {} to remove all session_metadata. */
14831492
session_metadata?: (Management.SessionMetadata | undefined) | null;
14841493
}
14851494

@@ -1813,7 +1822,9 @@ export interface UpdateUserRequestContent {
18131822
phone_number?: string | null;
18141823
/** Whether this phone number has been verified (true) or not (false). */
18151824
phone_verified?: boolean;
1825+
/** User metadata to which this user has read/write access. */
18161826
user_metadata?: Management.UserMetadata;
1827+
/** User metadata to which this user has read-only access. */
18171828
app_metadata?: Management.AppMetadata;
18181829
/** Given name/first name/forename of this user. */
18191830
given_name?: string | null;
@@ -2322,6 +2333,7 @@ export interface UpdatePhoneTemplateRequestContent {
23222333
export interface CreatePhoneTemplateTestNotificationRequestContent {
23232334
/** Destination of the testing phone notification */
23242335
to: string;
2336+
/** Medium to use to send the notification */
23252337
delivery_method?: Management.PhoneProviderDeliveryMethodEnum;
23262338
}
23272339

@@ -3276,6 +3288,7 @@ export interface BulkUpdateAculRequestContent {
32763288
* {}
32773289
*/
32783290
export interface UpdateAculRequestContent {
3291+
/** Rendering mode */
32793292
rendering_mode?: Management.AculRenderingModeEnum;
32803293
context_configuration?: Management.AculContextConfiguration;
32813294
/** Override Universal Login default head tags */
@@ -3419,6 +3432,7 @@ export interface GetTenantSettingsRequestParameters {
34193432
*/
34203433
export interface UpdateTenantSettingsRequestContent {
34213434
change_password?: Management.TenantSettingsPasswordPage | null;
3435+
/** Device Flow configuration. */
34223436
device_flow?: Management.TenantSettingsDeviceFlow | null;
34233437
guardian_mfa_page?: Management.TenantSettingsGuardianPage | null;
34243438
/** Default audience for API Authorization. */
@@ -3530,6 +3544,7 @@ export interface CreateUserAuthenticationMethodRequestContent {
35303544
export interface UpdateUserAuthenticationMethodRequestContent {
35313545
/** A human-readable label to identify the authentication method. */
35323546
name?: string;
3547+
/** Preferred phone authentication method */
35333548
preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum;
35343549
}
35353550

@@ -3572,6 +3587,7 @@ export interface GetUserGroupsRequestParameters {
35723587
* {}
35733588
*/
35743589
export interface LinkUserIdentityRequestContent {
3590+
/** Identity provider of the secondary user account being linked. */
35753591
provider?: Management.UserIdentityProviderEnum;
35763592
/** connection_id of the secondary user account being linked when more than one `auth0` database provider exists. */
35773593
connection_id?: string;

src/management/api/types/types.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,6 +1083,7 @@ export type AculClientMetadata = Record<string, unknown>;
10831083
export interface AculConfigsItem {
10841084
prompt: Management.PromptGroupNameEnum;
10851085
screen: Management.ScreenGroupNameEnum;
1086+
/** Rendering mode */
10861087
rendering_mode?: Management.AculRenderingModeEnum | undefined;
10871088
context_configuration?: Management.AculContextConfiguration | undefined;
10881089
/** Override Universal Login default head tags */
@@ -9703,6 +9704,7 @@ export interface CreateUserAuthenticationMethodResponseContent {
97039704
/** Applies to email authentication methods only. The email address used to send verification messages. */
97049705
email?: string | undefined;
97059706
authentication_methods?: Management.UserAuthenticationMethodProperties[] | undefined;
9707+
/** Preferred phone authentication method */
97069708
preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum | undefined;
97079709
/** Applies to webauthn authenticators only. The id of the credential. */
97089710
key_id?: string | undefined;
@@ -10115,6 +10117,7 @@ export interface DeviceCredential {
1011510117
device_name?: string | undefined;
1011610118
/** Unique identifier for the device. NOTE: This field is generally not populated for refresh_tokens and rotating_refresh_tokens */
1011710119
device_id?: string | undefined;
10120+
/** Type of credential. Can be `public_key`, `refresh_token`, or `rotating_refresh_token`. */
1011810121
type?: Management.DeviceCredentialTypeEnum | undefined;
1011910122
/** user_id this credential is associated with. */
1012010123
user_id?: string | undefined;
@@ -14385,6 +14388,7 @@ export interface GetAculResponseContent {
1438514388
prompt?: string | undefined;
1438614389
/** Name of the screen */
1438714390
screen?: string | undefined;
14391+
/** Rendering mode */
1438814392
rendering_mode?: Management.AculRenderingModeEnum | undefined;
1438914393
context_configuration?: Management.AculContextConfiguration | undefined;
1439014394
/** Override Universal Login default head tags */
@@ -16194,6 +16198,7 @@ export interface ListAculsResponseContentItem {
1619416198
prompt?: string | undefined;
1619516199
/** Name of the screen */
1619616200
screen?: string | undefined;
16201+
/** Rendering mode */
1619716202
rendering_mode?: Management.AculRenderingModeEnum | undefined;
1619816203
context_configuration?: Management.AculContextConfiguration | undefined;
1619916204
/** Override Universal Login default head tags */
@@ -17241,6 +17246,7 @@ export type NetworkAclActionRedirectEnum = boolean;
1724117246

1724217247
export interface NetworkAclMatch {
1724317248
asns?: number[] | undefined;
17249+
auth0_managed?: string[] | undefined;
1724417250
geo_country_codes?: string[] | undefined;
1724517251
geo_subdivision_codes?: string[] | undefined;
1724617252
ipv4_cidrs?: Management.NetworkAclMatchIpv4Cidr[] | undefined;
@@ -18652,6 +18658,11 @@ export const SelfServiceProfileSsoTicketProvisioningScopeEnum = {
1865218658
PutUsers: "put:users",
1865318659
PatchUsers: "patch:users",
1865418660
DeleteUsers: "delete:users",
18661+
GetGroups: "get:groups",
18662+
PostGroups: "post:groups",
18663+
PutGroups: "put:groups",
18664+
PatchGroups: "patch:groups",
18665+
DeleteGroups: "delete:groups",
1865518666
} as const;
1865618667
export type SelfServiceProfileSsoTicketProvisioningScopeEnum =
1865718668
(typeof SelfServiceProfileSsoTicketProvisioningScopeEnum)[keyof typeof SelfServiceProfileSsoTicketProvisioningScopeEnum];
@@ -18958,6 +18969,7 @@ export interface SetUserAuthenticationMethodResponseContent {
1895818969
/** Applies to email authentication methods only. The email address used to send verification messages. */
1895918970
email?: string | undefined;
1896018971
authentication_methods?: Management.UserAuthenticationMethodProperties[] | undefined;
18972+
/** Preferred phone authentication method */
1896118973
preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum | undefined;
1896218974
/** Applies to webauthn authenticators only. The id of the credential. */
1896318975
key_id?: string | undefined;
@@ -19572,6 +19584,7 @@ export interface UpdateActionResponseContent {
1957219584
}
1957319585

1957419586
export interface UpdateAculResponseContent {
19587+
/** Rendering mode */
1957519588
rendering_mode?: Management.AculRenderingModeEnum | undefined;
1957619589
context_configuration?: Management.AculContextConfiguration | undefined;
1957719590
/** Override Universal Login default head tags */
@@ -21025,6 +21038,7 @@ export interface UserAttributeProfileStrategyOverrides {
2102521038
}
2102621039

2102721040
export interface UserAttributeProfileStrategyOverridesMapping {
21041+
/** OIDC mapping override for this strategy */
2102821042
oidc_mapping?: Management.UserAttributeProfileOidcMapping | undefined;
2102921043
saml_mapping?: Management.UserAttributeProfileSamlMapping | undefined;
2103021044
/** SCIM mapping override for this strategy */
@@ -21079,6 +21093,7 @@ export interface UserAttributeProfileUserAttributeAdditionalProperties {
2107921093
/** Auth0 mapping for this attribute */
2108021094
auth0_mapping: string;
2108121095
oidc_mapping?: Management.UserAttributeProfileOidcMapping | undefined;
21096+
/** SAML mapping for this attribute */
2108221097
saml_mapping?: Management.UserAttributeProfileSamlMapping | undefined;
2108321098
/** SCIM mapping for this attribute */
2108421099
scim_mapping?: string | undefined;
@@ -21244,6 +21259,7 @@ export type UserId = string | number;
2124421259
export interface UserIdentity {
2124521260
/** Connection name of this identity. */
2124621261
connection: string;
21262+
/** user_id of this identity. */
2124721263
user_id: Management.UserId;
2124821264
/** Type of identity provider. */
2124921265
provider: string;

0 commit comments

Comments
 (0)