authhero 0.247.0 → 0.248.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +50 -50
- package/dist/authhero.d.ts +2065 -396
- package/dist/authhero.mjs +8799 -8669
- package/dist/stats.html +1 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -8255,43 +8255,440 @@ export type Branding = z.infer<typeof brandingSchema>;
|
|
|
8255
8255
|
declare const LegacyClientSchema: z.ZodObject<{
|
|
8256
8256
|
tenant: z.ZodObject<{
|
|
8257
8257
|
id: z.ZodString;
|
|
8258
|
-
name: z.ZodString;
|
|
8259
8258
|
audience: z.ZodString;
|
|
8259
|
+
friendly_name: z.ZodString;
|
|
8260
|
+
picture_url: z.ZodOptional<z.ZodString>;
|
|
8261
|
+
support_email: z.ZodOptional<z.ZodString>;
|
|
8262
|
+
support_url: z.ZodOptional<z.ZodString>;
|
|
8260
8263
|
sender_email: z.ZodString;
|
|
8261
8264
|
sender_name: z.ZodString;
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
|
|
8265
|
+
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
8266
|
+
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
8267
|
+
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
8268
|
+
idle_ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
8269
|
+
session_cookie: z.ZodOptional<z.ZodObject<{
|
|
8270
|
+
mode: z.ZodOptional<z.ZodEnum<[
|
|
8271
|
+
"persistent",
|
|
8272
|
+
"non-persistent"
|
|
8273
|
+
]>>;
|
|
8274
|
+
}, "strip", z.ZodTypeAny, {
|
|
8275
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
8276
|
+
}, {
|
|
8277
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
8278
|
+
}>>;
|
|
8279
|
+
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8280
|
+
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
8281
|
+
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8282
|
+
default_directory: z.ZodOptional<z.ZodString>;
|
|
8283
|
+
error_page: z.ZodOptional<z.ZodObject<{
|
|
8284
|
+
html: z.ZodOptional<z.ZodString>;
|
|
8285
|
+
show_log_link: z.ZodOptional<z.ZodBoolean>;
|
|
8286
|
+
url: z.ZodOptional<z.ZodString>;
|
|
8287
|
+
}, "strip", z.ZodTypeAny, {
|
|
8288
|
+
url?: string | undefined;
|
|
8289
|
+
html?: string | undefined;
|
|
8290
|
+
show_log_link?: boolean | undefined;
|
|
8291
|
+
}, {
|
|
8292
|
+
url?: string | undefined;
|
|
8293
|
+
html?: string | undefined;
|
|
8294
|
+
show_log_link?: boolean | undefined;
|
|
8295
|
+
}>>;
|
|
8296
|
+
flags: z.ZodOptional<z.ZodObject<{
|
|
8297
|
+
allow_changing_enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
8298
|
+
allow_legacy_delegation_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
8299
|
+
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
8300
|
+
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
8301
|
+
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
8302
|
+
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
8303
|
+
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
8304
|
+
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
8305
|
+
disable_clickjack_protection_headers: z.ZodOptional<z.ZodBoolean>;
|
|
8306
|
+
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
8307
|
+
disable_impersonation: z.ZodOptional<z.ZodBoolean>;
|
|
8308
|
+
disable_management_api_sms_obfuscation: z.ZodOptional<z.ZodBoolean>;
|
|
8309
|
+
enable_adfs_waad_email_verification: z.ZodOptional<z.ZodBoolean>;
|
|
8310
|
+
enable_apis_section: z.ZodOptional<z.ZodBoolean>;
|
|
8311
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
8312
|
+
enable_custom_domain_in_emails: z.ZodOptional<z.ZodBoolean>;
|
|
8313
|
+
enable_dynamic_client_registration: z.ZodOptional<z.ZodBoolean>;
|
|
8314
|
+
enable_idtoken_api2: z.ZodOptional<z.ZodBoolean>;
|
|
8315
|
+
enable_legacy_logs_search_v2: z.ZodOptional<z.ZodBoolean>;
|
|
8316
|
+
enable_legacy_profile: z.ZodOptional<z.ZodBoolean>;
|
|
8317
|
+
enable_pipeline2: z.ZodOptional<z.ZodBoolean>;
|
|
8318
|
+
enable_public_signup_user_exists_error: z.ZodOptional<z.ZodBoolean>;
|
|
8319
|
+
enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
8320
|
+
enforce_client_authentication_on_passwordless_start: z.ZodOptional<z.ZodBoolean>;
|
|
8321
|
+
genai_trial: z.ZodOptional<z.ZodBoolean>;
|
|
8322
|
+
improved_signup_bot_detection_in_classic: z.ZodOptional<z.ZodBoolean>;
|
|
8323
|
+
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
8324
|
+
no_disclose_enterprise_connections: z.ZodOptional<z.ZodBoolean>;
|
|
8325
|
+
remove_alg_from_jwks: z.ZodOptional<z.ZodBoolean>;
|
|
8326
|
+
revoke_refresh_token_grant: z.ZodOptional<z.ZodBoolean>;
|
|
8327
|
+
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
8328
|
+
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
8329
|
+
}, "strip", z.ZodTypeAny, {
|
|
8330
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
8331
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
8332
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
8333
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
8334
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
8335
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
8336
|
+
dashboard_insights_view?: boolean | undefined;
|
|
8337
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
8338
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
8339
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
8340
|
+
disable_impersonation?: boolean | undefined;
|
|
8341
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
8342
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
8343
|
+
enable_apis_section?: boolean | undefined;
|
|
8344
|
+
enable_client_connections?: boolean | undefined;
|
|
8345
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
8346
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
8347
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
8348
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
8349
|
+
enable_legacy_profile?: boolean | undefined;
|
|
8350
|
+
enable_pipeline2?: boolean | undefined;
|
|
8351
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
8352
|
+
enable_sso?: boolean | undefined;
|
|
8353
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
8354
|
+
genai_trial?: boolean | undefined;
|
|
8355
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
8356
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
8357
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
8358
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
8359
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
8360
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
8361
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
8362
|
+
}, {
|
|
8363
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
8364
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
8365
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
8366
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
8367
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
8368
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
8369
|
+
dashboard_insights_view?: boolean | undefined;
|
|
8370
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
8371
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
8372
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
8373
|
+
disable_impersonation?: boolean | undefined;
|
|
8374
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
8375
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
8376
|
+
enable_apis_section?: boolean | undefined;
|
|
8377
|
+
enable_client_connections?: boolean | undefined;
|
|
8378
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
8379
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
8380
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
8381
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
8382
|
+
enable_legacy_profile?: boolean | undefined;
|
|
8383
|
+
enable_pipeline2?: boolean | undefined;
|
|
8384
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
8385
|
+
enable_sso?: boolean | undefined;
|
|
8386
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
8387
|
+
genai_trial?: boolean | undefined;
|
|
8388
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
8389
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
8390
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
8391
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
8392
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
8393
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
8394
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
8395
|
+
}>>;
|
|
8396
|
+
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
8397
|
+
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
8398
|
+
sandbox_versions_available: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8399
|
+
change_password: z.ZodOptional<z.ZodObject<{
|
|
8400
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8401
|
+
html: z.ZodOptional<z.ZodString>;
|
|
8402
|
+
}, "strip", z.ZodTypeAny, {
|
|
8403
|
+
html?: string | undefined;
|
|
8404
|
+
enabled?: boolean | undefined;
|
|
8405
|
+
}, {
|
|
8406
|
+
html?: string | undefined;
|
|
8407
|
+
enabled?: boolean | undefined;
|
|
8408
|
+
}>>;
|
|
8409
|
+
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
8410
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8411
|
+
html: z.ZodOptional<z.ZodString>;
|
|
8412
|
+
}, "strip", z.ZodTypeAny, {
|
|
8413
|
+
html?: string | undefined;
|
|
8414
|
+
enabled?: boolean | undefined;
|
|
8415
|
+
}, {
|
|
8416
|
+
html?: string | undefined;
|
|
8417
|
+
enabled?: boolean | undefined;
|
|
8418
|
+
}>>;
|
|
8419
|
+
device_flow: z.ZodOptional<z.ZodObject<{
|
|
8420
|
+
charset: z.ZodOptional<z.ZodEnum<[
|
|
8421
|
+
"base20",
|
|
8422
|
+
"digits"
|
|
8423
|
+
]>>;
|
|
8424
|
+
mask: z.ZodOptional<z.ZodString>;
|
|
8425
|
+
}, "strip", z.ZodTypeAny, {
|
|
8426
|
+
charset?: "base20" | "digits" | undefined;
|
|
8427
|
+
mask?: string | undefined;
|
|
8428
|
+
}, {
|
|
8429
|
+
charset?: "base20" | "digits" | undefined;
|
|
8430
|
+
mask?: string | undefined;
|
|
8431
|
+
}>>;
|
|
8432
|
+
default_token_quota: z.ZodOptional<z.ZodObject<{
|
|
8433
|
+
clients: z.ZodOptional<z.ZodObject<{
|
|
8434
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8435
|
+
}, "strip", z.ZodTypeAny, {
|
|
8436
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8437
|
+
}, {
|
|
8438
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8439
|
+
}>>;
|
|
8440
|
+
organizations: z.ZodOptional<z.ZodObject<{
|
|
8441
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8442
|
+
}, "strip", z.ZodTypeAny, {
|
|
8443
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8444
|
+
}, {
|
|
8445
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8446
|
+
}>>;
|
|
8447
|
+
}, "strip", z.ZodTypeAny, {
|
|
8448
|
+
clients?: {
|
|
8449
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8450
|
+
} | undefined;
|
|
8451
|
+
organizations?: {
|
|
8452
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8453
|
+
} | undefined;
|
|
8454
|
+
}, {
|
|
8455
|
+
clients?: {
|
|
8456
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8457
|
+
} | undefined;
|
|
8458
|
+
organizations?: {
|
|
8459
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8460
|
+
} | undefined;
|
|
8461
|
+
}>>;
|
|
8462
|
+
default_audience: z.ZodOptional<z.ZodString>;
|
|
8463
|
+
default_organization: z.ZodOptional<z.ZodString>;
|
|
8464
|
+
sessions: z.ZodOptional<z.ZodObject<{
|
|
8465
|
+
oidc_logout_prompt_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8466
|
+
}, "strip", z.ZodTypeAny, {
|
|
8467
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
8468
|
+
}, {
|
|
8469
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
8470
|
+
}>>;
|
|
8471
|
+
oidc_logout: z.ZodOptional<z.ZodObject<{
|
|
8472
|
+
rp_logout_end_session_endpoint_discovery: z.ZodOptional<z.ZodBoolean>;
|
|
8473
|
+
}, "strip", z.ZodTypeAny, {
|
|
8474
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
8475
|
+
}, {
|
|
8476
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
8477
|
+
}>>;
|
|
8478
|
+
allow_organization_name_in_authentication_api: z.ZodOptional<z.ZodBoolean>;
|
|
8479
|
+
customize_mfa_in_postlogin_action: z.ZodOptional<z.ZodBoolean>;
|
|
8480
|
+
acr_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8481
|
+
mtls: z.ZodOptional<z.ZodObject<{
|
|
8482
|
+
enable_endpoint_aliases: z.ZodOptional<z.ZodBoolean>;
|
|
8483
|
+
}, "strip", z.ZodTypeAny, {
|
|
8484
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
8485
|
+
}, {
|
|
8486
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
8487
|
+
}>>;
|
|
8488
|
+
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
8489
|
+
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
8490
|
+
created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
8491
|
+
updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
8269
8492
|
}, "strip", z.ZodTypeAny, {
|
|
8270
8493
|
created_at: string;
|
|
8271
8494
|
updated_at: string;
|
|
8272
|
-
name: string;
|
|
8273
8495
|
audience: string;
|
|
8274
8496
|
id: string;
|
|
8497
|
+
friendly_name: string;
|
|
8275
8498
|
sender_email: string;
|
|
8276
8499
|
sender_name: string;
|
|
8500
|
+
allowed_logout_urls?: string[] | undefined;
|
|
8501
|
+
oidc_logout?: {
|
|
8502
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
8503
|
+
} | undefined;
|
|
8504
|
+
default_organization?: string | undefined;
|
|
8505
|
+
picture_url?: string | undefined;
|
|
8506
|
+
support_email?: string | undefined;
|
|
8277
8507
|
support_url?: string | undefined;
|
|
8278
|
-
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
|
|
8508
|
+
session_lifetime?: number | undefined;
|
|
8509
|
+
idle_session_lifetime?: number | undefined;
|
|
8510
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
8511
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
8512
|
+
session_cookie?: {
|
|
8513
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
8514
|
+
} | undefined;
|
|
8515
|
+
default_redirection_uri?: string | undefined;
|
|
8516
|
+
enabled_locales?: string[] | undefined;
|
|
8517
|
+
default_directory?: string | undefined;
|
|
8518
|
+
error_page?: {
|
|
8519
|
+
url?: string | undefined;
|
|
8520
|
+
html?: string | undefined;
|
|
8521
|
+
show_log_link?: boolean | undefined;
|
|
8522
|
+
} | undefined;
|
|
8523
|
+
flags?: {
|
|
8524
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
8525
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
8526
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
8527
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
8528
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
8529
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
8530
|
+
dashboard_insights_view?: boolean | undefined;
|
|
8531
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
8532
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
8533
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
8534
|
+
disable_impersonation?: boolean | undefined;
|
|
8535
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
8536
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
8537
|
+
enable_apis_section?: boolean | undefined;
|
|
8538
|
+
enable_client_connections?: boolean | undefined;
|
|
8539
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
8540
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
8541
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
8542
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
8543
|
+
enable_legacy_profile?: boolean | undefined;
|
|
8544
|
+
enable_pipeline2?: boolean | undefined;
|
|
8545
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
8546
|
+
enable_sso?: boolean | undefined;
|
|
8547
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
8548
|
+
genai_trial?: boolean | undefined;
|
|
8549
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
8550
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
8551
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
8552
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
8553
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
8554
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
8555
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
8556
|
+
} | undefined;
|
|
8557
|
+
sandbox_version?: string | undefined;
|
|
8558
|
+
legacy_sandbox_version?: string | undefined;
|
|
8559
|
+
sandbox_versions_available?: string[] | undefined;
|
|
8560
|
+
change_password?: {
|
|
8561
|
+
html?: string | undefined;
|
|
8562
|
+
enabled?: boolean | undefined;
|
|
8563
|
+
} | undefined;
|
|
8564
|
+
guardian_mfa_page?: {
|
|
8565
|
+
html?: string | undefined;
|
|
8566
|
+
enabled?: boolean | undefined;
|
|
8567
|
+
} | undefined;
|
|
8568
|
+
device_flow?: {
|
|
8569
|
+
charset?: "base20" | "digits" | undefined;
|
|
8570
|
+
mask?: string | undefined;
|
|
8571
|
+
} | undefined;
|
|
8572
|
+
default_token_quota?: {
|
|
8573
|
+
clients?: {
|
|
8574
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8575
|
+
} | undefined;
|
|
8576
|
+
organizations?: {
|
|
8577
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8578
|
+
} | undefined;
|
|
8579
|
+
} | undefined;
|
|
8580
|
+
default_audience?: string | undefined;
|
|
8581
|
+
sessions?: {
|
|
8582
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
8583
|
+
} | undefined;
|
|
8584
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
8585
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
8586
|
+
acr_values_supported?: string[] | undefined;
|
|
8587
|
+
mtls?: {
|
|
8588
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
8589
|
+
} | undefined;
|
|
8590
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
8591
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
8282
8592
|
}, {
|
|
8283
|
-
created_at: string;
|
|
8284
|
-
updated_at: string;
|
|
8285
|
-
name: string;
|
|
8593
|
+
created_at: string | null;
|
|
8594
|
+
updated_at: string | null;
|
|
8286
8595
|
audience: string;
|
|
8287
8596
|
id: string;
|
|
8597
|
+
friendly_name: string;
|
|
8288
8598
|
sender_email: string;
|
|
8289
8599
|
sender_name: string;
|
|
8600
|
+
allowed_logout_urls?: string[] | undefined;
|
|
8601
|
+
oidc_logout?: {
|
|
8602
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
8603
|
+
} | undefined;
|
|
8604
|
+
default_organization?: string | undefined;
|
|
8605
|
+
picture_url?: string | undefined;
|
|
8606
|
+
support_email?: string | undefined;
|
|
8290
8607
|
support_url?: string | undefined;
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
|
|
8608
|
+
session_lifetime?: number | undefined;
|
|
8609
|
+
idle_session_lifetime?: number | undefined;
|
|
8610
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
8611
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
8612
|
+
session_cookie?: {
|
|
8613
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
8614
|
+
} | undefined;
|
|
8615
|
+
default_redirection_uri?: string | undefined;
|
|
8616
|
+
enabled_locales?: string[] | undefined;
|
|
8617
|
+
default_directory?: string | undefined;
|
|
8618
|
+
error_page?: {
|
|
8619
|
+
url?: string | undefined;
|
|
8620
|
+
html?: string | undefined;
|
|
8621
|
+
show_log_link?: boolean | undefined;
|
|
8622
|
+
} | undefined;
|
|
8623
|
+
flags?: {
|
|
8624
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
8625
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
8626
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
8627
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
8628
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
8629
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
8630
|
+
dashboard_insights_view?: boolean | undefined;
|
|
8631
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
8632
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
8633
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
8634
|
+
disable_impersonation?: boolean | undefined;
|
|
8635
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
8636
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
8637
|
+
enable_apis_section?: boolean | undefined;
|
|
8638
|
+
enable_client_connections?: boolean | undefined;
|
|
8639
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
8640
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
8641
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
8642
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
8643
|
+
enable_legacy_profile?: boolean | undefined;
|
|
8644
|
+
enable_pipeline2?: boolean | undefined;
|
|
8645
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
8646
|
+
enable_sso?: boolean | undefined;
|
|
8647
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
8648
|
+
genai_trial?: boolean | undefined;
|
|
8649
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
8650
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
8651
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
8652
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
8653
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
8654
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
8655
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
8656
|
+
} | undefined;
|
|
8657
|
+
sandbox_version?: string | undefined;
|
|
8658
|
+
legacy_sandbox_version?: string | undefined;
|
|
8659
|
+
sandbox_versions_available?: string[] | undefined;
|
|
8660
|
+
change_password?: {
|
|
8661
|
+
html?: string | undefined;
|
|
8662
|
+
enabled?: boolean | undefined;
|
|
8663
|
+
} | undefined;
|
|
8664
|
+
guardian_mfa_page?: {
|
|
8665
|
+
html?: string | undefined;
|
|
8666
|
+
enabled?: boolean | undefined;
|
|
8667
|
+
} | undefined;
|
|
8668
|
+
device_flow?: {
|
|
8669
|
+
charset?: "base20" | "digits" | undefined;
|
|
8670
|
+
mask?: string | undefined;
|
|
8671
|
+
} | undefined;
|
|
8672
|
+
default_token_quota?: {
|
|
8673
|
+
clients?: {
|
|
8674
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8675
|
+
} | undefined;
|
|
8676
|
+
organizations?: {
|
|
8677
|
+
client_credentials?: Record<string, any> | undefined;
|
|
8678
|
+
} | undefined;
|
|
8679
|
+
} | undefined;
|
|
8680
|
+
default_audience?: string | undefined;
|
|
8681
|
+
sessions?: {
|
|
8682
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
8683
|
+
} | undefined;
|
|
8684
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
8685
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
8686
|
+
acr_values_supported?: string[] | undefined;
|
|
8687
|
+
mtls?: {
|
|
8688
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
8689
|
+
} | undefined;
|
|
8690
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
8691
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
8295
8692
|
}>;
|
|
8296
8693
|
connections: z.ZodArray<z.ZodObject<{
|
|
8297
8694
|
created_at: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8529,16 +8926,103 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8529
8926
|
tenant: {
|
|
8530
8927
|
created_at: string;
|
|
8531
8928
|
updated_at: string;
|
|
8532
|
-
name: string;
|
|
8533
8929
|
audience: string;
|
|
8534
8930
|
id: string;
|
|
8931
|
+
friendly_name: string;
|
|
8535
8932
|
sender_email: string;
|
|
8536
8933
|
sender_name: string;
|
|
8934
|
+
allowed_logout_urls?: string[] | undefined;
|
|
8935
|
+
oidc_logout?: {
|
|
8936
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
8937
|
+
} | undefined;
|
|
8938
|
+
default_organization?: string | undefined;
|
|
8939
|
+
picture_url?: string | undefined;
|
|
8940
|
+
support_email?: string | undefined;
|
|
8537
8941
|
support_url?: string | undefined;
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8942
|
+
session_lifetime?: number | undefined;
|
|
8943
|
+
idle_session_lifetime?: number | undefined;
|
|
8944
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
8945
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
8946
|
+
session_cookie?: {
|
|
8947
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
8948
|
+
} | undefined;
|
|
8949
|
+
default_redirection_uri?: string | undefined;
|
|
8950
|
+
enabled_locales?: string[] | undefined;
|
|
8951
|
+
default_directory?: string | undefined;
|
|
8952
|
+
error_page?: {
|
|
8953
|
+
url?: string | undefined;
|
|
8954
|
+
html?: string | undefined;
|
|
8955
|
+
show_log_link?: boolean | undefined;
|
|
8956
|
+
} | undefined;
|
|
8957
|
+
flags?: {
|
|
8958
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
8959
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
8960
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
8961
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
8962
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
8963
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
8964
|
+
dashboard_insights_view?: boolean | undefined;
|
|
8965
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
8966
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
8967
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
8968
|
+
disable_impersonation?: boolean | undefined;
|
|
8969
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
8970
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
8971
|
+
enable_apis_section?: boolean | undefined;
|
|
8972
|
+
enable_client_connections?: boolean | undefined;
|
|
8973
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
8974
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
8975
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
8976
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
8977
|
+
enable_legacy_profile?: boolean | undefined;
|
|
8978
|
+
enable_pipeline2?: boolean | undefined;
|
|
8979
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
8980
|
+
enable_sso?: boolean | undefined;
|
|
8981
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
8982
|
+
genai_trial?: boolean | undefined;
|
|
8983
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
8984
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
8985
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
8986
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
8987
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
8988
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
8989
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
8990
|
+
} | undefined;
|
|
8991
|
+
sandbox_version?: string | undefined;
|
|
8992
|
+
legacy_sandbox_version?: string | undefined;
|
|
8993
|
+
sandbox_versions_available?: string[] | undefined;
|
|
8994
|
+
change_password?: {
|
|
8995
|
+
html?: string | undefined;
|
|
8996
|
+
enabled?: boolean | undefined;
|
|
8997
|
+
} | undefined;
|
|
8998
|
+
guardian_mfa_page?: {
|
|
8999
|
+
html?: string | undefined;
|
|
9000
|
+
enabled?: boolean | undefined;
|
|
9001
|
+
} | undefined;
|
|
9002
|
+
device_flow?: {
|
|
9003
|
+
charset?: "base20" | "digits" | undefined;
|
|
9004
|
+
mask?: string | undefined;
|
|
9005
|
+
} | undefined;
|
|
9006
|
+
default_token_quota?: {
|
|
9007
|
+
clients?: {
|
|
9008
|
+
client_credentials?: Record<string, any> | undefined;
|
|
9009
|
+
} | undefined;
|
|
9010
|
+
organizations?: {
|
|
9011
|
+
client_credentials?: Record<string, any> | undefined;
|
|
9012
|
+
} | undefined;
|
|
9013
|
+
} | undefined;
|
|
9014
|
+
default_audience?: string | undefined;
|
|
9015
|
+
sessions?: {
|
|
9016
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
9017
|
+
} | undefined;
|
|
9018
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
9019
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
9020
|
+
acr_values_supported?: string[] | undefined;
|
|
9021
|
+
mtls?: {
|
|
9022
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
9023
|
+
} | undefined;
|
|
9024
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
9025
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
8542
9026
|
};
|
|
8543
9027
|
connections: {
|
|
8544
9028
|
options: {
|
|
@@ -8611,18 +9095,105 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8611
9095
|
name: string;
|
|
8612
9096
|
client_id: string;
|
|
8613
9097
|
tenant: {
|
|
8614
|
-
created_at: string;
|
|
8615
|
-
updated_at: string;
|
|
8616
|
-
name: string;
|
|
9098
|
+
created_at: string | null;
|
|
9099
|
+
updated_at: string | null;
|
|
8617
9100
|
audience: string;
|
|
8618
9101
|
id: string;
|
|
9102
|
+
friendly_name: string;
|
|
8619
9103
|
sender_email: string;
|
|
8620
9104
|
sender_name: string;
|
|
9105
|
+
allowed_logout_urls?: string[] | undefined;
|
|
9106
|
+
oidc_logout?: {
|
|
9107
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
9108
|
+
} | undefined;
|
|
9109
|
+
default_organization?: string | undefined;
|
|
9110
|
+
picture_url?: string | undefined;
|
|
9111
|
+
support_email?: string | undefined;
|
|
8621
9112
|
support_url?: string | undefined;
|
|
8622
|
-
|
|
8623
|
-
|
|
8624
|
-
|
|
8625
|
-
|
|
9113
|
+
session_lifetime?: number | undefined;
|
|
9114
|
+
idle_session_lifetime?: number | undefined;
|
|
9115
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
9116
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
9117
|
+
session_cookie?: {
|
|
9118
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
9119
|
+
} | undefined;
|
|
9120
|
+
default_redirection_uri?: string | undefined;
|
|
9121
|
+
enabled_locales?: string[] | undefined;
|
|
9122
|
+
default_directory?: string | undefined;
|
|
9123
|
+
error_page?: {
|
|
9124
|
+
url?: string | undefined;
|
|
9125
|
+
html?: string | undefined;
|
|
9126
|
+
show_log_link?: boolean | undefined;
|
|
9127
|
+
} | undefined;
|
|
9128
|
+
flags?: {
|
|
9129
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
9130
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
9131
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
9132
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
9133
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
9134
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
9135
|
+
dashboard_insights_view?: boolean | undefined;
|
|
9136
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
9137
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
9138
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
9139
|
+
disable_impersonation?: boolean | undefined;
|
|
9140
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
9141
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
9142
|
+
enable_apis_section?: boolean | undefined;
|
|
9143
|
+
enable_client_connections?: boolean | undefined;
|
|
9144
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
9145
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
9146
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
9147
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
9148
|
+
enable_legacy_profile?: boolean | undefined;
|
|
9149
|
+
enable_pipeline2?: boolean | undefined;
|
|
9150
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
9151
|
+
enable_sso?: boolean | undefined;
|
|
9152
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
9153
|
+
genai_trial?: boolean | undefined;
|
|
9154
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
9155
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
9156
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
9157
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
9158
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
9159
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
9160
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
9161
|
+
} | undefined;
|
|
9162
|
+
sandbox_version?: string | undefined;
|
|
9163
|
+
legacy_sandbox_version?: string | undefined;
|
|
9164
|
+
sandbox_versions_available?: string[] | undefined;
|
|
9165
|
+
change_password?: {
|
|
9166
|
+
html?: string | undefined;
|
|
9167
|
+
enabled?: boolean | undefined;
|
|
9168
|
+
} | undefined;
|
|
9169
|
+
guardian_mfa_page?: {
|
|
9170
|
+
html?: string | undefined;
|
|
9171
|
+
enabled?: boolean | undefined;
|
|
9172
|
+
} | undefined;
|
|
9173
|
+
device_flow?: {
|
|
9174
|
+
charset?: "base20" | "digits" | undefined;
|
|
9175
|
+
mask?: string | undefined;
|
|
9176
|
+
} | undefined;
|
|
9177
|
+
default_token_quota?: {
|
|
9178
|
+
clients?: {
|
|
9179
|
+
client_credentials?: Record<string, any> | undefined;
|
|
9180
|
+
} | undefined;
|
|
9181
|
+
organizations?: {
|
|
9182
|
+
client_credentials?: Record<string, any> | undefined;
|
|
9183
|
+
} | undefined;
|
|
9184
|
+
} | undefined;
|
|
9185
|
+
default_audience?: string | undefined;
|
|
9186
|
+
sessions?: {
|
|
9187
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
9188
|
+
} | undefined;
|
|
9189
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
9190
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
9191
|
+
acr_values_supported?: string[] | undefined;
|
|
9192
|
+
mtls?: {
|
|
9193
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
9194
|
+
} | undefined;
|
|
9195
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
9196
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
8626
9197
|
};
|
|
8627
9198
|
connections: {
|
|
8628
9199
|
created_at: string;
|
|
@@ -11240,8 +11811,8 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
11240
11811
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
11241
11812
|
}, "strip", z.ZodTypeAny, {
|
|
11242
11813
|
url: string;
|
|
11243
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11244
11814
|
enabled: boolean;
|
|
11815
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11245
11816
|
synchronous: boolean;
|
|
11246
11817
|
priority?: number | undefined;
|
|
11247
11818
|
hook_id?: string | undefined;
|
|
@@ -11265,8 +11836,8 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
11265
11836
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
11266
11837
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
11267
11838
|
}, "strip", z.ZodTypeAny, {
|
|
11268
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11269
11839
|
enabled: boolean;
|
|
11840
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11270
11841
|
synchronous: boolean;
|
|
11271
11842
|
form_id: string;
|
|
11272
11843
|
priority?: number | undefined;
|
|
@@ -11299,8 +11870,8 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11299
11870
|
created_at: string;
|
|
11300
11871
|
updated_at: string;
|
|
11301
11872
|
url: string;
|
|
11302
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11303
11873
|
enabled: boolean;
|
|
11874
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11304
11875
|
synchronous: boolean;
|
|
11305
11876
|
hook_id: string;
|
|
11306
11877
|
priority?: number | undefined;
|
|
@@ -11330,8 +11901,8 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11330
11901
|
}, "strip", z.ZodTypeAny, {
|
|
11331
11902
|
created_at: string;
|
|
11332
11903
|
updated_at: string;
|
|
11333
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11334
11904
|
enabled: boolean;
|
|
11905
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
11335
11906
|
synchronous: boolean;
|
|
11336
11907
|
hook_id: string;
|
|
11337
11908
|
form_id: string;
|
|
@@ -12243,6 +12814,7 @@ export declare const sessionInsertSchema: z.ZodObject<{
|
|
|
12243
12814
|
}, "strip", z.ZodTypeAny, {
|
|
12244
12815
|
user_id: string;
|
|
12245
12816
|
id: string;
|
|
12817
|
+
clients: string[];
|
|
12246
12818
|
login_session_id: string;
|
|
12247
12819
|
device: {
|
|
12248
12820
|
last_ip: string;
|
|
@@ -12252,7 +12824,6 @@ export declare const sessionInsertSchema: z.ZodObject<{
|
|
|
12252
12824
|
last_user_agent: string;
|
|
12253
12825
|
last_asn: string;
|
|
12254
12826
|
};
|
|
12255
|
-
clients: string[];
|
|
12256
12827
|
expires_at?: string | undefined;
|
|
12257
12828
|
used_at?: string | undefined;
|
|
12258
12829
|
revoked_at?: string | undefined;
|
|
@@ -12260,6 +12831,7 @@ export declare const sessionInsertSchema: z.ZodObject<{
|
|
|
12260
12831
|
}, {
|
|
12261
12832
|
user_id: string;
|
|
12262
12833
|
id: string;
|
|
12834
|
+
clients: string[];
|
|
12263
12835
|
login_session_id: string;
|
|
12264
12836
|
device: {
|
|
12265
12837
|
last_ip: string;
|
|
@@ -12269,7 +12841,6 @@ export declare const sessionInsertSchema: z.ZodObject<{
|
|
|
12269
12841
|
last_user_agent: string;
|
|
12270
12842
|
last_asn: string;
|
|
12271
12843
|
};
|
|
12272
|
-
clients: string[];
|
|
12273
12844
|
expires_at?: string | undefined;
|
|
12274
12845
|
used_at?: string | undefined;
|
|
12275
12846
|
revoked_at?: string | undefined;
|
|
@@ -12316,6 +12887,7 @@ export declare const sessionSchema: z.ZodObject<{
|
|
|
12316
12887
|
updated_at: string;
|
|
12317
12888
|
user_id: string;
|
|
12318
12889
|
id: string;
|
|
12890
|
+
clients: string[];
|
|
12319
12891
|
login_session_id: string;
|
|
12320
12892
|
device: {
|
|
12321
12893
|
last_ip: string;
|
|
@@ -12325,7 +12897,6 @@ export declare const sessionSchema: z.ZodObject<{
|
|
|
12325
12897
|
last_user_agent: string;
|
|
12326
12898
|
last_asn: string;
|
|
12327
12899
|
};
|
|
12328
|
-
clients: string[];
|
|
12329
12900
|
authenticated_at: string;
|
|
12330
12901
|
last_interaction_at: string;
|
|
12331
12902
|
expires_at?: string | undefined;
|
|
@@ -12337,6 +12908,7 @@ export declare const sessionSchema: z.ZodObject<{
|
|
|
12337
12908
|
updated_at: string;
|
|
12338
12909
|
user_id: string;
|
|
12339
12910
|
id: string;
|
|
12911
|
+
clients: string[];
|
|
12340
12912
|
login_session_id: string;
|
|
12341
12913
|
device: {
|
|
12342
12914
|
last_ip: string;
|
|
@@ -12346,7 +12918,6 @@ export declare const sessionSchema: z.ZodObject<{
|
|
|
12346
12918
|
last_user_agent: string;
|
|
12347
12919
|
last_asn: string;
|
|
12348
12920
|
};
|
|
12349
|
-
clients: string[];
|
|
12350
12921
|
authenticated_at: string;
|
|
12351
12922
|
last_interaction_at: string;
|
|
12352
12923
|
expires_at?: string | undefined;
|
|
@@ -12406,179 +12977,973 @@ export declare const signingKeySchema: z.ZodObject<{
|
|
|
12406
12977
|
}>;
|
|
12407
12978
|
export type SigningKey = z.infer<typeof signingKeySchema>;
|
|
12408
12979
|
export declare const tenantInsertSchema: z.ZodObject<{
|
|
12409
|
-
name: z.ZodString;
|
|
12410
|
-
audience: z.ZodString;
|
|
12411
|
-
sender_email: z.ZodString;
|
|
12412
|
-
sender_name: z.ZodString;
|
|
12413
|
-
support_url: z.ZodOptional<z.ZodString>;
|
|
12414
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
12415
|
-
primary_color: z.ZodOptional<z.ZodString>;
|
|
12416
|
-
secondary_color: z.ZodOptional<z.ZodString>;
|
|
12417
|
-
language: z.ZodOptional<z.ZodString>;
|
|
12418
12980
|
id: z.ZodOptional<z.ZodString>;
|
|
12419
|
-
}, "strip", z.ZodTypeAny, {
|
|
12420
|
-
name: string;
|
|
12421
|
-
audience: string;
|
|
12422
|
-
sender_email: string;
|
|
12423
|
-
sender_name: string;
|
|
12424
|
-
id?: string | undefined;
|
|
12425
|
-
support_url?: string | undefined;
|
|
12426
|
-
logo?: string | undefined;
|
|
12427
|
-
primary_color?: string | undefined;
|
|
12428
|
-
secondary_color?: string | undefined;
|
|
12429
|
-
language?: string | undefined;
|
|
12430
|
-
}, {
|
|
12431
|
-
name: string;
|
|
12432
|
-
audience: string;
|
|
12433
|
-
sender_email: string;
|
|
12434
|
-
sender_name: string;
|
|
12435
|
-
id?: string | undefined;
|
|
12436
|
-
support_url?: string | undefined;
|
|
12437
|
-
logo?: string | undefined;
|
|
12438
|
-
primary_color?: string | undefined;
|
|
12439
|
-
secondary_color?: string | undefined;
|
|
12440
|
-
language?: string | undefined;
|
|
12441
|
-
}>;
|
|
12442
|
-
export declare const tenantSchema: z.ZodObject<{
|
|
12443
|
-
id: z.ZodString;
|
|
12444
|
-
name: z.ZodString;
|
|
12445
12981
|
audience: z.ZodString;
|
|
12982
|
+
friendly_name: z.ZodString;
|
|
12983
|
+
picture_url: z.ZodOptional<z.ZodString>;
|
|
12984
|
+
support_email: z.ZodOptional<z.ZodString>;
|
|
12985
|
+
support_url: z.ZodOptional<z.ZodString>;
|
|
12446
12986
|
sender_email: z.ZodString;
|
|
12447
12987
|
sender_name: z.ZodString;
|
|
12448
|
-
|
|
12449
|
-
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12453
|
-
|
|
12454
|
-
|
|
12455
|
-
|
|
12456
|
-
|
|
12457
|
-
|
|
12458
|
-
|
|
12459
|
-
|
|
12460
|
-
|
|
12461
|
-
|
|
12462
|
-
|
|
12463
|
-
|
|
12464
|
-
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
12468
|
-
|
|
12469
|
-
|
|
12470
|
-
|
|
12471
|
-
|
|
12472
|
-
|
|
12473
|
-
|
|
12474
|
-
|
|
12475
|
-
|
|
12476
|
-
|
|
12477
|
-
|
|
12478
|
-
|
|
12479
|
-
|
|
12480
|
-
|
|
12481
|
-
|
|
12482
|
-
|
|
12483
|
-
|
|
12484
|
-
|
|
12485
|
-
|
|
12486
|
-
|
|
12487
|
-
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
|
|
12491
|
-
|
|
12492
|
-
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
|
|
12502
|
-
|
|
12503
|
-
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
|
|
12507
|
-
|
|
12508
|
-
|
|
12509
|
-
|
|
12510
|
-
|
|
12511
|
-
|
|
12512
|
-
|
|
12513
|
-
|
|
12514
|
-
|
|
12515
|
-
|
|
12516
|
-
|
|
12517
|
-
|
|
12518
|
-
|
|
12519
|
-
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
|
|
12526
|
-
|
|
12527
|
-
|
|
12528
|
-
|
|
12529
|
-
|
|
12530
|
-
|
|
12531
|
-
|
|
12532
|
-
|
|
12533
|
-
|
|
12534
|
-
|
|
12535
|
-
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12539
|
-
|
|
12540
|
-
|
|
12541
|
-
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
|
-
|
|
12545
|
-
|
|
12546
|
-
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
|
|
12551
|
-
|
|
12552
|
-
|
|
12553
|
-
|
|
12554
|
-
|
|
12555
|
-
|
|
12556
|
-
|
|
12557
|
-
|
|
12558
|
-
|
|
12559
|
-
|
|
12560
|
-
|
|
12561
|
-
|
|
12562
|
-
|
|
12563
|
-
|
|
12564
|
-
|
|
12565
|
-
|
|
12566
|
-
|
|
12567
|
-
|
|
12568
|
-
|
|
12569
|
-
|
|
12570
|
-
|
|
12571
|
-
|
|
12572
|
-
|
|
12573
|
-
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
|
-
|
|
12577
|
-
|
|
12578
|
-
|
|
12579
|
-
|
|
12580
|
-
|
|
12581
|
-
|
|
12988
|
+
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
12989
|
+
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
12990
|
+
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
12991
|
+
idle_ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
12992
|
+
session_cookie: z.ZodOptional<z.ZodObject<{
|
|
12993
|
+
mode: z.ZodOptional<z.ZodEnum<[
|
|
12994
|
+
"persistent",
|
|
12995
|
+
"non-persistent"
|
|
12996
|
+
]>>;
|
|
12997
|
+
}, "strip", z.ZodTypeAny, {
|
|
12998
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
12999
|
+
}, {
|
|
13000
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13001
|
+
}>>;
|
|
13002
|
+
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13003
|
+
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
13004
|
+
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13005
|
+
default_directory: z.ZodOptional<z.ZodString>;
|
|
13006
|
+
error_page: z.ZodOptional<z.ZodObject<{
|
|
13007
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13008
|
+
show_log_link: z.ZodOptional<z.ZodBoolean>;
|
|
13009
|
+
url: z.ZodOptional<z.ZodString>;
|
|
13010
|
+
}, "strip", z.ZodTypeAny, {
|
|
13011
|
+
url?: string | undefined;
|
|
13012
|
+
html?: string | undefined;
|
|
13013
|
+
show_log_link?: boolean | undefined;
|
|
13014
|
+
}, {
|
|
13015
|
+
url?: string | undefined;
|
|
13016
|
+
html?: string | undefined;
|
|
13017
|
+
show_log_link?: boolean | undefined;
|
|
13018
|
+
}>>;
|
|
13019
|
+
flags: z.ZodOptional<z.ZodObject<{
|
|
13020
|
+
allow_changing_enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
13021
|
+
allow_legacy_delegation_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
13022
|
+
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
13023
|
+
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13024
|
+
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
13025
|
+
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
13026
|
+
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
13027
|
+
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
13028
|
+
disable_clickjack_protection_headers: z.ZodOptional<z.ZodBoolean>;
|
|
13029
|
+
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
13030
|
+
disable_impersonation: z.ZodOptional<z.ZodBoolean>;
|
|
13031
|
+
disable_management_api_sms_obfuscation: z.ZodOptional<z.ZodBoolean>;
|
|
13032
|
+
enable_adfs_waad_email_verification: z.ZodOptional<z.ZodBoolean>;
|
|
13033
|
+
enable_apis_section: z.ZodOptional<z.ZodBoolean>;
|
|
13034
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
13035
|
+
enable_custom_domain_in_emails: z.ZodOptional<z.ZodBoolean>;
|
|
13036
|
+
enable_dynamic_client_registration: z.ZodOptional<z.ZodBoolean>;
|
|
13037
|
+
enable_idtoken_api2: z.ZodOptional<z.ZodBoolean>;
|
|
13038
|
+
enable_legacy_logs_search_v2: z.ZodOptional<z.ZodBoolean>;
|
|
13039
|
+
enable_legacy_profile: z.ZodOptional<z.ZodBoolean>;
|
|
13040
|
+
enable_pipeline2: z.ZodOptional<z.ZodBoolean>;
|
|
13041
|
+
enable_public_signup_user_exists_error: z.ZodOptional<z.ZodBoolean>;
|
|
13042
|
+
enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
13043
|
+
enforce_client_authentication_on_passwordless_start: z.ZodOptional<z.ZodBoolean>;
|
|
13044
|
+
genai_trial: z.ZodOptional<z.ZodBoolean>;
|
|
13045
|
+
improved_signup_bot_detection_in_classic: z.ZodOptional<z.ZodBoolean>;
|
|
13046
|
+
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
13047
|
+
no_disclose_enterprise_connections: z.ZodOptional<z.ZodBoolean>;
|
|
13048
|
+
remove_alg_from_jwks: z.ZodOptional<z.ZodBoolean>;
|
|
13049
|
+
revoke_refresh_token_grant: z.ZodOptional<z.ZodBoolean>;
|
|
13050
|
+
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
13051
|
+
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
13052
|
+
}, "strip", z.ZodTypeAny, {
|
|
13053
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13054
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13055
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13056
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13057
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13058
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13059
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13060
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13061
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13062
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13063
|
+
disable_impersonation?: boolean | undefined;
|
|
13064
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13065
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13066
|
+
enable_apis_section?: boolean | undefined;
|
|
13067
|
+
enable_client_connections?: boolean | undefined;
|
|
13068
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13069
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13070
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13071
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13072
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13073
|
+
enable_pipeline2?: boolean | undefined;
|
|
13074
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13075
|
+
enable_sso?: boolean | undefined;
|
|
13076
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13077
|
+
genai_trial?: boolean | undefined;
|
|
13078
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13079
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13080
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13081
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13082
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13083
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13084
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13085
|
+
}, {
|
|
13086
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13087
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13088
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13089
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13090
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13091
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13092
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13093
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13094
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13095
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13096
|
+
disable_impersonation?: boolean | undefined;
|
|
13097
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13098
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13099
|
+
enable_apis_section?: boolean | undefined;
|
|
13100
|
+
enable_client_connections?: boolean | undefined;
|
|
13101
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13102
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13103
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13104
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13105
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13106
|
+
enable_pipeline2?: boolean | undefined;
|
|
13107
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13108
|
+
enable_sso?: boolean | undefined;
|
|
13109
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13110
|
+
genai_trial?: boolean | undefined;
|
|
13111
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13112
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13113
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13114
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13115
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13116
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13117
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13118
|
+
}>>;
|
|
13119
|
+
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
13120
|
+
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
13121
|
+
sandbox_versions_available: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13122
|
+
change_password: z.ZodOptional<z.ZodObject<{
|
|
13123
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13124
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13125
|
+
}, "strip", z.ZodTypeAny, {
|
|
13126
|
+
html?: string | undefined;
|
|
13127
|
+
enabled?: boolean | undefined;
|
|
13128
|
+
}, {
|
|
13129
|
+
html?: string | undefined;
|
|
13130
|
+
enabled?: boolean | undefined;
|
|
13131
|
+
}>>;
|
|
13132
|
+
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
13133
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13134
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13135
|
+
}, "strip", z.ZodTypeAny, {
|
|
13136
|
+
html?: string | undefined;
|
|
13137
|
+
enabled?: boolean | undefined;
|
|
13138
|
+
}, {
|
|
13139
|
+
html?: string | undefined;
|
|
13140
|
+
enabled?: boolean | undefined;
|
|
13141
|
+
}>>;
|
|
13142
|
+
device_flow: z.ZodOptional<z.ZodObject<{
|
|
13143
|
+
charset: z.ZodOptional<z.ZodEnum<[
|
|
13144
|
+
"base20",
|
|
13145
|
+
"digits"
|
|
13146
|
+
]>>;
|
|
13147
|
+
mask: z.ZodOptional<z.ZodString>;
|
|
13148
|
+
}, "strip", z.ZodTypeAny, {
|
|
13149
|
+
charset?: "base20" | "digits" | undefined;
|
|
13150
|
+
mask?: string | undefined;
|
|
13151
|
+
}, {
|
|
13152
|
+
charset?: "base20" | "digits" | undefined;
|
|
13153
|
+
mask?: string | undefined;
|
|
13154
|
+
}>>;
|
|
13155
|
+
default_token_quota: z.ZodOptional<z.ZodObject<{
|
|
13156
|
+
clients: z.ZodOptional<z.ZodObject<{
|
|
13157
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13158
|
+
}, "strip", z.ZodTypeAny, {
|
|
13159
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13160
|
+
}, {
|
|
13161
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13162
|
+
}>>;
|
|
13163
|
+
organizations: z.ZodOptional<z.ZodObject<{
|
|
13164
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13165
|
+
}, "strip", z.ZodTypeAny, {
|
|
13166
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13167
|
+
}, {
|
|
13168
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13169
|
+
}>>;
|
|
13170
|
+
}, "strip", z.ZodTypeAny, {
|
|
13171
|
+
clients?: {
|
|
13172
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13173
|
+
} | undefined;
|
|
13174
|
+
organizations?: {
|
|
13175
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13176
|
+
} | undefined;
|
|
13177
|
+
}, {
|
|
13178
|
+
clients?: {
|
|
13179
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13180
|
+
} | undefined;
|
|
13181
|
+
organizations?: {
|
|
13182
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13183
|
+
} | undefined;
|
|
13184
|
+
}>>;
|
|
13185
|
+
default_audience: z.ZodOptional<z.ZodString>;
|
|
13186
|
+
default_organization: z.ZodOptional<z.ZodString>;
|
|
13187
|
+
sessions: z.ZodOptional<z.ZodObject<{
|
|
13188
|
+
oidc_logout_prompt_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13189
|
+
}, "strip", z.ZodTypeAny, {
|
|
13190
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13191
|
+
}, {
|
|
13192
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13193
|
+
}>>;
|
|
13194
|
+
oidc_logout: z.ZodOptional<z.ZodObject<{
|
|
13195
|
+
rp_logout_end_session_endpoint_discovery: z.ZodOptional<z.ZodBoolean>;
|
|
13196
|
+
}, "strip", z.ZodTypeAny, {
|
|
13197
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13198
|
+
}, {
|
|
13199
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13200
|
+
}>>;
|
|
13201
|
+
allow_organization_name_in_authentication_api: z.ZodOptional<z.ZodBoolean>;
|
|
13202
|
+
customize_mfa_in_postlogin_action: z.ZodOptional<z.ZodBoolean>;
|
|
13203
|
+
acr_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13204
|
+
mtls: z.ZodOptional<z.ZodObject<{
|
|
13205
|
+
enable_endpoint_aliases: z.ZodOptional<z.ZodBoolean>;
|
|
13206
|
+
}, "strip", z.ZodTypeAny, {
|
|
13207
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13208
|
+
}, {
|
|
13209
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13210
|
+
}>>;
|
|
13211
|
+
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
13212
|
+
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
13213
|
+
}, "strip", z.ZodTypeAny, {
|
|
13214
|
+
audience: string;
|
|
13215
|
+
friendly_name: string;
|
|
13216
|
+
sender_email: string;
|
|
13217
|
+
sender_name: string;
|
|
13218
|
+
allowed_logout_urls?: string[] | undefined;
|
|
13219
|
+
oidc_logout?: {
|
|
13220
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13221
|
+
} | undefined;
|
|
13222
|
+
default_organization?: string | undefined;
|
|
13223
|
+
id?: string | undefined;
|
|
13224
|
+
picture_url?: string | undefined;
|
|
13225
|
+
support_email?: string | undefined;
|
|
13226
|
+
support_url?: string | undefined;
|
|
13227
|
+
session_lifetime?: number | undefined;
|
|
13228
|
+
idle_session_lifetime?: number | undefined;
|
|
13229
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
13230
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
13231
|
+
session_cookie?: {
|
|
13232
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13233
|
+
} | undefined;
|
|
13234
|
+
default_redirection_uri?: string | undefined;
|
|
13235
|
+
enabled_locales?: string[] | undefined;
|
|
13236
|
+
default_directory?: string | undefined;
|
|
13237
|
+
error_page?: {
|
|
13238
|
+
url?: string | undefined;
|
|
13239
|
+
html?: string | undefined;
|
|
13240
|
+
show_log_link?: boolean | undefined;
|
|
13241
|
+
} | undefined;
|
|
13242
|
+
flags?: {
|
|
13243
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13244
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13245
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13246
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13247
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13248
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13249
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13250
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13251
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13252
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13253
|
+
disable_impersonation?: boolean | undefined;
|
|
13254
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13255
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13256
|
+
enable_apis_section?: boolean | undefined;
|
|
13257
|
+
enable_client_connections?: boolean | undefined;
|
|
13258
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13259
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13260
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13261
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13262
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13263
|
+
enable_pipeline2?: boolean | undefined;
|
|
13264
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13265
|
+
enable_sso?: boolean | undefined;
|
|
13266
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13267
|
+
genai_trial?: boolean | undefined;
|
|
13268
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13269
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13270
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13271
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13272
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13273
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13274
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13275
|
+
} | undefined;
|
|
13276
|
+
sandbox_version?: string | undefined;
|
|
13277
|
+
legacy_sandbox_version?: string | undefined;
|
|
13278
|
+
sandbox_versions_available?: string[] | undefined;
|
|
13279
|
+
change_password?: {
|
|
13280
|
+
html?: string | undefined;
|
|
13281
|
+
enabled?: boolean | undefined;
|
|
13282
|
+
} | undefined;
|
|
13283
|
+
guardian_mfa_page?: {
|
|
13284
|
+
html?: string | undefined;
|
|
13285
|
+
enabled?: boolean | undefined;
|
|
13286
|
+
} | undefined;
|
|
13287
|
+
device_flow?: {
|
|
13288
|
+
charset?: "base20" | "digits" | undefined;
|
|
13289
|
+
mask?: string | undefined;
|
|
13290
|
+
} | undefined;
|
|
13291
|
+
default_token_quota?: {
|
|
13292
|
+
clients?: {
|
|
13293
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13294
|
+
} | undefined;
|
|
13295
|
+
organizations?: {
|
|
13296
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13297
|
+
} | undefined;
|
|
13298
|
+
} | undefined;
|
|
13299
|
+
default_audience?: string | undefined;
|
|
13300
|
+
sessions?: {
|
|
13301
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13302
|
+
} | undefined;
|
|
13303
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
13304
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
13305
|
+
acr_values_supported?: string[] | undefined;
|
|
13306
|
+
mtls?: {
|
|
13307
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13308
|
+
} | undefined;
|
|
13309
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
13310
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
13311
|
+
}, {
|
|
13312
|
+
audience: string;
|
|
13313
|
+
friendly_name: string;
|
|
13314
|
+
sender_email: string;
|
|
13315
|
+
sender_name: string;
|
|
13316
|
+
allowed_logout_urls?: string[] | undefined;
|
|
13317
|
+
oidc_logout?: {
|
|
13318
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13319
|
+
} | undefined;
|
|
13320
|
+
default_organization?: string | undefined;
|
|
13321
|
+
id?: string | undefined;
|
|
13322
|
+
picture_url?: string | undefined;
|
|
13323
|
+
support_email?: string | undefined;
|
|
13324
|
+
support_url?: string | undefined;
|
|
13325
|
+
session_lifetime?: number | undefined;
|
|
13326
|
+
idle_session_lifetime?: number | undefined;
|
|
13327
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
13328
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
13329
|
+
session_cookie?: {
|
|
13330
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13331
|
+
} | undefined;
|
|
13332
|
+
default_redirection_uri?: string | undefined;
|
|
13333
|
+
enabled_locales?: string[] | undefined;
|
|
13334
|
+
default_directory?: string | undefined;
|
|
13335
|
+
error_page?: {
|
|
13336
|
+
url?: string | undefined;
|
|
13337
|
+
html?: string | undefined;
|
|
13338
|
+
show_log_link?: boolean | undefined;
|
|
13339
|
+
} | undefined;
|
|
13340
|
+
flags?: {
|
|
13341
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13342
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13343
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13344
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13345
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13346
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13347
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13348
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13349
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13350
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13351
|
+
disable_impersonation?: boolean | undefined;
|
|
13352
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13353
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13354
|
+
enable_apis_section?: boolean | undefined;
|
|
13355
|
+
enable_client_connections?: boolean | undefined;
|
|
13356
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13357
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13358
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13359
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13360
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13361
|
+
enable_pipeline2?: boolean | undefined;
|
|
13362
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13363
|
+
enable_sso?: boolean | undefined;
|
|
13364
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13365
|
+
genai_trial?: boolean | undefined;
|
|
13366
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13367
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13368
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13369
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13370
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13371
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13372
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13373
|
+
} | undefined;
|
|
13374
|
+
sandbox_version?: string | undefined;
|
|
13375
|
+
legacy_sandbox_version?: string | undefined;
|
|
13376
|
+
sandbox_versions_available?: string[] | undefined;
|
|
13377
|
+
change_password?: {
|
|
13378
|
+
html?: string | undefined;
|
|
13379
|
+
enabled?: boolean | undefined;
|
|
13380
|
+
} | undefined;
|
|
13381
|
+
guardian_mfa_page?: {
|
|
13382
|
+
html?: string | undefined;
|
|
13383
|
+
enabled?: boolean | undefined;
|
|
13384
|
+
} | undefined;
|
|
13385
|
+
device_flow?: {
|
|
13386
|
+
charset?: "base20" | "digits" | undefined;
|
|
13387
|
+
mask?: string | undefined;
|
|
13388
|
+
} | undefined;
|
|
13389
|
+
default_token_quota?: {
|
|
13390
|
+
clients?: {
|
|
13391
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13392
|
+
} | undefined;
|
|
13393
|
+
organizations?: {
|
|
13394
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13395
|
+
} | undefined;
|
|
13396
|
+
} | undefined;
|
|
13397
|
+
default_audience?: string | undefined;
|
|
13398
|
+
sessions?: {
|
|
13399
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13400
|
+
} | undefined;
|
|
13401
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
13402
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
13403
|
+
acr_values_supported?: string[] | undefined;
|
|
13404
|
+
mtls?: {
|
|
13405
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13406
|
+
} | undefined;
|
|
13407
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
13408
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
13409
|
+
}>;
|
|
13410
|
+
export declare const tenantSchema: z.ZodObject<{
|
|
13411
|
+
id: z.ZodString;
|
|
13412
|
+
audience: z.ZodString;
|
|
13413
|
+
friendly_name: z.ZodString;
|
|
13414
|
+
picture_url: z.ZodOptional<z.ZodString>;
|
|
13415
|
+
support_email: z.ZodOptional<z.ZodString>;
|
|
13416
|
+
support_url: z.ZodOptional<z.ZodString>;
|
|
13417
|
+
sender_email: z.ZodString;
|
|
13418
|
+
sender_name: z.ZodString;
|
|
13419
|
+
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
13420
|
+
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
13421
|
+
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
13422
|
+
idle_ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
13423
|
+
session_cookie: z.ZodOptional<z.ZodObject<{
|
|
13424
|
+
mode: z.ZodOptional<z.ZodEnum<[
|
|
13425
|
+
"persistent",
|
|
13426
|
+
"non-persistent"
|
|
13427
|
+
]>>;
|
|
13428
|
+
}, "strip", z.ZodTypeAny, {
|
|
13429
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13430
|
+
}, {
|
|
13431
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13432
|
+
}>>;
|
|
13433
|
+
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13434
|
+
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
13435
|
+
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13436
|
+
default_directory: z.ZodOptional<z.ZodString>;
|
|
13437
|
+
error_page: z.ZodOptional<z.ZodObject<{
|
|
13438
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13439
|
+
show_log_link: z.ZodOptional<z.ZodBoolean>;
|
|
13440
|
+
url: z.ZodOptional<z.ZodString>;
|
|
13441
|
+
}, "strip", z.ZodTypeAny, {
|
|
13442
|
+
url?: string | undefined;
|
|
13443
|
+
html?: string | undefined;
|
|
13444
|
+
show_log_link?: boolean | undefined;
|
|
13445
|
+
}, {
|
|
13446
|
+
url?: string | undefined;
|
|
13447
|
+
html?: string | undefined;
|
|
13448
|
+
show_log_link?: boolean | undefined;
|
|
13449
|
+
}>>;
|
|
13450
|
+
flags: z.ZodOptional<z.ZodObject<{
|
|
13451
|
+
allow_changing_enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
13452
|
+
allow_legacy_delegation_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
13453
|
+
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
13454
|
+
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13455
|
+
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
13456
|
+
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
13457
|
+
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
13458
|
+
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
13459
|
+
disable_clickjack_protection_headers: z.ZodOptional<z.ZodBoolean>;
|
|
13460
|
+
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
13461
|
+
disable_impersonation: z.ZodOptional<z.ZodBoolean>;
|
|
13462
|
+
disable_management_api_sms_obfuscation: z.ZodOptional<z.ZodBoolean>;
|
|
13463
|
+
enable_adfs_waad_email_verification: z.ZodOptional<z.ZodBoolean>;
|
|
13464
|
+
enable_apis_section: z.ZodOptional<z.ZodBoolean>;
|
|
13465
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
13466
|
+
enable_custom_domain_in_emails: z.ZodOptional<z.ZodBoolean>;
|
|
13467
|
+
enable_dynamic_client_registration: z.ZodOptional<z.ZodBoolean>;
|
|
13468
|
+
enable_idtoken_api2: z.ZodOptional<z.ZodBoolean>;
|
|
13469
|
+
enable_legacy_logs_search_v2: z.ZodOptional<z.ZodBoolean>;
|
|
13470
|
+
enable_legacy_profile: z.ZodOptional<z.ZodBoolean>;
|
|
13471
|
+
enable_pipeline2: z.ZodOptional<z.ZodBoolean>;
|
|
13472
|
+
enable_public_signup_user_exists_error: z.ZodOptional<z.ZodBoolean>;
|
|
13473
|
+
enable_sso: z.ZodOptional<z.ZodBoolean>;
|
|
13474
|
+
enforce_client_authentication_on_passwordless_start: z.ZodOptional<z.ZodBoolean>;
|
|
13475
|
+
genai_trial: z.ZodOptional<z.ZodBoolean>;
|
|
13476
|
+
improved_signup_bot_detection_in_classic: z.ZodOptional<z.ZodBoolean>;
|
|
13477
|
+
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
13478
|
+
no_disclose_enterprise_connections: z.ZodOptional<z.ZodBoolean>;
|
|
13479
|
+
remove_alg_from_jwks: z.ZodOptional<z.ZodBoolean>;
|
|
13480
|
+
revoke_refresh_token_grant: z.ZodOptional<z.ZodBoolean>;
|
|
13481
|
+
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
13482
|
+
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
13483
|
+
}, "strip", z.ZodTypeAny, {
|
|
13484
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13485
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13486
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13487
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13488
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13489
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13490
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13491
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13492
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13493
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13494
|
+
disable_impersonation?: boolean | undefined;
|
|
13495
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13496
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13497
|
+
enable_apis_section?: boolean | undefined;
|
|
13498
|
+
enable_client_connections?: boolean | undefined;
|
|
13499
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13500
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13501
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13502
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13503
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13504
|
+
enable_pipeline2?: boolean | undefined;
|
|
13505
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13506
|
+
enable_sso?: boolean | undefined;
|
|
13507
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13508
|
+
genai_trial?: boolean | undefined;
|
|
13509
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13510
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13511
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13512
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13513
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13514
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13515
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13516
|
+
}, {
|
|
13517
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13518
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13519
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13520
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13521
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13522
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13523
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13524
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13525
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13526
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13527
|
+
disable_impersonation?: boolean | undefined;
|
|
13528
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13529
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13530
|
+
enable_apis_section?: boolean | undefined;
|
|
13531
|
+
enable_client_connections?: boolean | undefined;
|
|
13532
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13533
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13534
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13535
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13536
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13537
|
+
enable_pipeline2?: boolean | undefined;
|
|
13538
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13539
|
+
enable_sso?: boolean | undefined;
|
|
13540
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13541
|
+
genai_trial?: boolean | undefined;
|
|
13542
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13543
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13544
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13545
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13546
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13547
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13548
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13549
|
+
}>>;
|
|
13550
|
+
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
13551
|
+
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
13552
|
+
sandbox_versions_available: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13553
|
+
change_password: z.ZodOptional<z.ZodObject<{
|
|
13554
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13555
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13556
|
+
}, "strip", z.ZodTypeAny, {
|
|
13557
|
+
html?: string | undefined;
|
|
13558
|
+
enabled?: boolean | undefined;
|
|
13559
|
+
}, {
|
|
13560
|
+
html?: string | undefined;
|
|
13561
|
+
enabled?: boolean | undefined;
|
|
13562
|
+
}>>;
|
|
13563
|
+
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
13564
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13565
|
+
html: z.ZodOptional<z.ZodString>;
|
|
13566
|
+
}, "strip", z.ZodTypeAny, {
|
|
13567
|
+
html?: string | undefined;
|
|
13568
|
+
enabled?: boolean | undefined;
|
|
13569
|
+
}, {
|
|
13570
|
+
html?: string | undefined;
|
|
13571
|
+
enabled?: boolean | undefined;
|
|
13572
|
+
}>>;
|
|
13573
|
+
device_flow: z.ZodOptional<z.ZodObject<{
|
|
13574
|
+
charset: z.ZodOptional<z.ZodEnum<[
|
|
13575
|
+
"base20",
|
|
13576
|
+
"digits"
|
|
13577
|
+
]>>;
|
|
13578
|
+
mask: z.ZodOptional<z.ZodString>;
|
|
13579
|
+
}, "strip", z.ZodTypeAny, {
|
|
13580
|
+
charset?: "base20" | "digits" | undefined;
|
|
13581
|
+
mask?: string | undefined;
|
|
13582
|
+
}, {
|
|
13583
|
+
charset?: "base20" | "digits" | undefined;
|
|
13584
|
+
mask?: string | undefined;
|
|
13585
|
+
}>>;
|
|
13586
|
+
default_token_quota: z.ZodOptional<z.ZodObject<{
|
|
13587
|
+
clients: z.ZodOptional<z.ZodObject<{
|
|
13588
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13589
|
+
}, "strip", z.ZodTypeAny, {
|
|
13590
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13591
|
+
}, {
|
|
13592
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13593
|
+
}>>;
|
|
13594
|
+
organizations: z.ZodOptional<z.ZodObject<{
|
|
13595
|
+
client_credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13596
|
+
}, "strip", z.ZodTypeAny, {
|
|
13597
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13598
|
+
}, {
|
|
13599
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13600
|
+
}>>;
|
|
13601
|
+
}, "strip", z.ZodTypeAny, {
|
|
13602
|
+
clients?: {
|
|
13603
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13604
|
+
} | undefined;
|
|
13605
|
+
organizations?: {
|
|
13606
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13607
|
+
} | undefined;
|
|
13608
|
+
}, {
|
|
13609
|
+
clients?: {
|
|
13610
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13611
|
+
} | undefined;
|
|
13612
|
+
organizations?: {
|
|
13613
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13614
|
+
} | undefined;
|
|
13615
|
+
}>>;
|
|
13616
|
+
default_audience: z.ZodOptional<z.ZodString>;
|
|
13617
|
+
default_organization: z.ZodOptional<z.ZodString>;
|
|
13618
|
+
sessions: z.ZodOptional<z.ZodObject<{
|
|
13619
|
+
oidc_logout_prompt_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13620
|
+
}, "strip", z.ZodTypeAny, {
|
|
13621
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13622
|
+
}, {
|
|
13623
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13624
|
+
}>>;
|
|
13625
|
+
oidc_logout: z.ZodOptional<z.ZodObject<{
|
|
13626
|
+
rp_logout_end_session_endpoint_discovery: z.ZodOptional<z.ZodBoolean>;
|
|
13627
|
+
}, "strip", z.ZodTypeAny, {
|
|
13628
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13629
|
+
}, {
|
|
13630
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13631
|
+
}>>;
|
|
13632
|
+
allow_organization_name_in_authentication_api: z.ZodOptional<z.ZodBoolean>;
|
|
13633
|
+
customize_mfa_in_postlogin_action: z.ZodOptional<z.ZodBoolean>;
|
|
13634
|
+
acr_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13635
|
+
mtls: z.ZodOptional<z.ZodObject<{
|
|
13636
|
+
enable_endpoint_aliases: z.ZodOptional<z.ZodBoolean>;
|
|
13637
|
+
}, "strip", z.ZodTypeAny, {
|
|
13638
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13639
|
+
}, {
|
|
13640
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13641
|
+
}>>;
|
|
13642
|
+
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
13643
|
+
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
13644
|
+
created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
13645
|
+
updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
13646
|
+
}, "strip", z.ZodTypeAny, {
|
|
13647
|
+
created_at: string;
|
|
13648
|
+
updated_at: string;
|
|
13649
|
+
audience: string;
|
|
13650
|
+
id: string;
|
|
13651
|
+
friendly_name: string;
|
|
13652
|
+
sender_email: string;
|
|
13653
|
+
sender_name: string;
|
|
13654
|
+
allowed_logout_urls?: string[] | undefined;
|
|
13655
|
+
oidc_logout?: {
|
|
13656
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13657
|
+
} | undefined;
|
|
13658
|
+
default_organization?: string | undefined;
|
|
13659
|
+
picture_url?: string | undefined;
|
|
13660
|
+
support_email?: string | undefined;
|
|
13661
|
+
support_url?: string | undefined;
|
|
13662
|
+
session_lifetime?: number | undefined;
|
|
13663
|
+
idle_session_lifetime?: number | undefined;
|
|
13664
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
13665
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
13666
|
+
session_cookie?: {
|
|
13667
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13668
|
+
} | undefined;
|
|
13669
|
+
default_redirection_uri?: string | undefined;
|
|
13670
|
+
enabled_locales?: string[] | undefined;
|
|
13671
|
+
default_directory?: string | undefined;
|
|
13672
|
+
error_page?: {
|
|
13673
|
+
url?: string | undefined;
|
|
13674
|
+
html?: string | undefined;
|
|
13675
|
+
show_log_link?: boolean | undefined;
|
|
13676
|
+
} | undefined;
|
|
13677
|
+
flags?: {
|
|
13678
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13679
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13680
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13681
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13682
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13683
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13684
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13685
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13686
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13687
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13688
|
+
disable_impersonation?: boolean | undefined;
|
|
13689
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13690
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13691
|
+
enable_apis_section?: boolean | undefined;
|
|
13692
|
+
enable_client_connections?: boolean | undefined;
|
|
13693
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13694
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13695
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13696
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13697
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13698
|
+
enable_pipeline2?: boolean | undefined;
|
|
13699
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13700
|
+
enable_sso?: boolean | undefined;
|
|
13701
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13702
|
+
genai_trial?: boolean | undefined;
|
|
13703
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13704
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13705
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13706
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13707
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13708
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13709
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13710
|
+
} | undefined;
|
|
13711
|
+
sandbox_version?: string | undefined;
|
|
13712
|
+
legacy_sandbox_version?: string | undefined;
|
|
13713
|
+
sandbox_versions_available?: string[] | undefined;
|
|
13714
|
+
change_password?: {
|
|
13715
|
+
html?: string | undefined;
|
|
13716
|
+
enabled?: boolean | undefined;
|
|
13717
|
+
} | undefined;
|
|
13718
|
+
guardian_mfa_page?: {
|
|
13719
|
+
html?: string | undefined;
|
|
13720
|
+
enabled?: boolean | undefined;
|
|
13721
|
+
} | undefined;
|
|
13722
|
+
device_flow?: {
|
|
13723
|
+
charset?: "base20" | "digits" | undefined;
|
|
13724
|
+
mask?: string | undefined;
|
|
13725
|
+
} | undefined;
|
|
13726
|
+
default_token_quota?: {
|
|
13727
|
+
clients?: {
|
|
13728
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13729
|
+
} | undefined;
|
|
13730
|
+
organizations?: {
|
|
13731
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13732
|
+
} | undefined;
|
|
13733
|
+
} | undefined;
|
|
13734
|
+
default_audience?: string | undefined;
|
|
13735
|
+
sessions?: {
|
|
13736
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13737
|
+
} | undefined;
|
|
13738
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
13739
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
13740
|
+
acr_values_supported?: string[] | undefined;
|
|
13741
|
+
mtls?: {
|
|
13742
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13743
|
+
} | undefined;
|
|
13744
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
13745
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
13746
|
+
}, {
|
|
13747
|
+
created_at: string | null;
|
|
13748
|
+
updated_at: string | null;
|
|
13749
|
+
audience: string;
|
|
13750
|
+
id: string;
|
|
13751
|
+
friendly_name: string;
|
|
13752
|
+
sender_email: string;
|
|
13753
|
+
sender_name: string;
|
|
13754
|
+
allowed_logout_urls?: string[] | undefined;
|
|
13755
|
+
oidc_logout?: {
|
|
13756
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
13757
|
+
} | undefined;
|
|
13758
|
+
default_organization?: string | undefined;
|
|
13759
|
+
picture_url?: string | undefined;
|
|
13760
|
+
support_email?: string | undefined;
|
|
13761
|
+
support_url?: string | undefined;
|
|
13762
|
+
session_lifetime?: number | undefined;
|
|
13763
|
+
idle_session_lifetime?: number | undefined;
|
|
13764
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
13765
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
13766
|
+
session_cookie?: {
|
|
13767
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
13768
|
+
} | undefined;
|
|
13769
|
+
default_redirection_uri?: string | undefined;
|
|
13770
|
+
enabled_locales?: string[] | undefined;
|
|
13771
|
+
default_directory?: string | undefined;
|
|
13772
|
+
error_page?: {
|
|
13773
|
+
url?: string | undefined;
|
|
13774
|
+
html?: string | undefined;
|
|
13775
|
+
show_log_link?: boolean | undefined;
|
|
13776
|
+
} | undefined;
|
|
13777
|
+
flags?: {
|
|
13778
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
13779
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
13780
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
13781
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
13782
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
13783
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
13784
|
+
dashboard_insights_view?: boolean | undefined;
|
|
13785
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
13786
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
13787
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
13788
|
+
disable_impersonation?: boolean | undefined;
|
|
13789
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
13790
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
13791
|
+
enable_apis_section?: boolean | undefined;
|
|
13792
|
+
enable_client_connections?: boolean | undefined;
|
|
13793
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
13794
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
13795
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
13796
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
13797
|
+
enable_legacy_profile?: boolean | undefined;
|
|
13798
|
+
enable_pipeline2?: boolean | undefined;
|
|
13799
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
13800
|
+
enable_sso?: boolean | undefined;
|
|
13801
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
13802
|
+
genai_trial?: boolean | undefined;
|
|
13803
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
13804
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
13805
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
13806
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
13807
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
13808
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
13809
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
13810
|
+
} | undefined;
|
|
13811
|
+
sandbox_version?: string | undefined;
|
|
13812
|
+
legacy_sandbox_version?: string | undefined;
|
|
13813
|
+
sandbox_versions_available?: string[] | undefined;
|
|
13814
|
+
change_password?: {
|
|
13815
|
+
html?: string | undefined;
|
|
13816
|
+
enabled?: boolean | undefined;
|
|
13817
|
+
} | undefined;
|
|
13818
|
+
guardian_mfa_page?: {
|
|
13819
|
+
html?: string | undefined;
|
|
13820
|
+
enabled?: boolean | undefined;
|
|
13821
|
+
} | undefined;
|
|
13822
|
+
device_flow?: {
|
|
13823
|
+
charset?: "base20" | "digits" | undefined;
|
|
13824
|
+
mask?: string | undefined;
|
|
13825
|
+
} | undefined;
|
|
13826
|
+
default_token_quota?: {
|
|
13827
|
+
clients?: {
|
|
13828
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13829
|
+
} | undefined;
|
|
13830
|
+
organizations?: {
|
|
13831
|
+
client_credentials?: Record<string, any> | undefined;
|
|
13832
|
+
} | undefined;
|
|
13833
|
+
} | undefined;
|
|
13834
|
+
default_audience?: string | undefined;
|
|
13835
|
+
sessions?: {
|
|
13836
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
13837
|
+
} | undefined;
|
|
13838
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
13839
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
13840
|
+
acr_values_supported?: string[] | undefined;
|
|
13841
|
+
mtls?: {
|
|
13842
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
13843
|
+
} | undefined;
|
|
13844
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
13845
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
13846
|
+
}>;
|
|
13847
|
+
export type Tenant = z.infer<typeof tenantSchema>;
|
|
13848
|
+
export declare enum GrantType {
|
|
13849
|
+
RefreshToken = "refresh_token",
|
|
13850
|
+
AuthorizationCode = "authorization_code",
|
|
13851
|
+
ClientCredential = "client_credentials",
|
|
13852
|
+
Passwordless = "passwordless",
|
|
13853
|
+
Password = "password",
|
|
13854
|
+
OTP = "http://auth0.com/oauth/grant-type/passwordless/otp"
|
|
13855
|
+
}
|
|
13856
|
+
export declare const tokenResponseSchema: z.ZodObject<{
|
|
13857
|
+
access_token: z.ZodString;
|
|
13858
|
+
id_token: z.ZodOptional<z.ZodString>;
|
|
13859
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
13860
|
+
state: z.ZodOptional<z.ZodString>;
|
|
13861
|
+
refresh_token: z.ZodOptional<z.ZodString>;
|
|
13862
|
+
token_type: z.ZodString;
|
|
13863
|
+
expires_in: z.ZodNumber;
|
|
13864
|
+
}, "strip", z.ZodTypeAny, {
|
|
13865
|
+
access_token: string;
|
|
13866
|
+
token_type: string;
|
|
13867
|
+
expires_in: number;
|
|
13868
|
+
refresh_token?: string | undefined;
|
|
13869
|
+
scope?: string | undefined;
|
|
13870
|
+
state?: string | undefined;
|
|
13871
|
+
id_token?: string | undefined;
|
|
13872
|
+
}, {
|
|
13873
|
+
access_token: string;
|
|
13874
|
+
token_type: string;
|
|
13875
|
+
expires_in: number;
|
|
13876
|
+
refresh_token?: string | undefined;
|
|
13877
|
+
scope?: string | undefined;
|
|
13878
|
+
state?: string | undefined;
|
|
13879
|
+
id_token?: string | undefined;
|
|
13880
|
+
}>;
|
|
13881
|
+
export type TokenResponse = z.infer<typeof tokenResponseSchema>;
|
|
13882
|
+
declare const codeResponseSchema: z.ZodObject<{
|
|
13883
|
+
code: z.ZodString;
|
|
13884
|
+
state: z.ZodOptional<z.ZodString>;
|
|
13885
|
+
}, "strip", z.ZodTypeAny, {
|
|
13886
|
+
code: string;
|
|
13887
|
+
state?: string | undefined;
|
|
13888
|
+
}, {
|
|
13889
|
+
code: string;
|
|
13890
|
+
state?: string | undefined;
|
|
13891
|
+
}>;
|
|
13892
|
+
export type CodeResponse = z.infer<typeof codeResponseSchema>;
|
|
13893
|
+
export declare const bordersSchema: z.ZodObject<{
|
|
13894
|
+
button_border_radius: z.ZodNumber;
|
|
13895
|
+
button_border_weight: z.ZodNumber;
|
|
13896
|
+
buttons_style: z.ZodEnum<[
|
|
13897
|
+
"pill",
|
|
13898
|
+
"rounded",
|
|
13899
|
+
"sharp"
|
|
13900
|
+
]>;
|
|
13901
|
+
input_border_radius: z.ZodNumber;
|
|
13902
|
+
input_border_weight: z.ZodNumber;
|
|
13903
|
+
inputs_style: z.ZodEnum<[
|
|
13904
|
+
"pill",
|
|
13905
|
+
"rounded",
|
|
13906
|
+
"sharp"
|
|
13907
|
+
]>;
|
|
13908
|
+
show_widget_shadow: z.ZodBoolean;
|
|
13909
|
+
widget_border_weight: z.ZodNumber;
|
|
13910
|
+
widget_corner_radius: z.ZodNumber;
|
|
13911
|
+
}, "strip", z.ZodTypeAny, {
|
|
13912
|
+
button_border_radius: number;
|
|
13913
|
+
button_border_weight: number;
|
|
13914
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13915
|
+
input_border_radius: number;
|
|
13916
|
+
input_border_weight: number;
|
|
13917
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13918
|
+
show_widget_shadow: boolean;
|
|
13919
|
+
widget_border_weight: number;
|
|
13920
|
+
widget_corner_radius: number;
|
|
13921
|
+
}, {
|
|
13922
|
+
button_border_radius: number;
|
|
13923
|
+
button_border_weight: number;
|
|
13924
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13925
|
+
input_border_radius: number;
|
|
13926
|
+
input_border_weight: number;
|
|
13927
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13928
|
+
show_widget_shadow: boolean;
|
|
13929
|
+
widget_border_weight: number;
|
|
13930
|
+
widget_corner_radius: number;
|
|
13931
|
+
}>;
|
|
13932
|
+
export declare const colorsSchema: z.ZodObject<{
|
|
13933
|
+
base_focus_color: z.ZodString;
|
|
13934
|
+
base_hover_color: z.ZodString;
|
|
13935
|
+
body_text: z.ZodString;
|
|
13936
|
+
captcha_widget_theme: z.ZodEnum<[
|
|
13937
|
+
"auto",
|
|
13938
|
+
"dark",
|
|
13939
|
+
"light"
|
|
13940
|
+
]>;
|
|
13941
|
+
error: z.ZodString;
|
|
13942
|
+
header: z.ZodString;
|
|
13943
|
+
icons: z.ZodString;
|
|
13944
|
+
input_background: z.ZodString;
|
|
13945
|
+
input_border: z.ZodString;
|
|
13946
|
+
input_filled_text: z.ZodString;
|
|
12582
13947
|
input_labels_placeholders: z.ZodString;
|
|
12583
13948
|
links_focused_components: z.ZodString;
|
|
12584
13949
|
primary_button: z.ZodString;
|
|
@@ -14035,25 +15400,25 @@ export declare const resourceServerOptionsSchema: z.ZodObject<{
|
|
|
14035
15400
|
bound_access_tokens?: boolean | undefined;
|
|
14036
15401
|
}>>;
|
|
14037
15402
|
}, "strip", z.ZodTypeAny, {
|
|
15403
|
+
mtls?: {
|
|
15404
|
+
bound_access_tokens?: boolean | undefined;
|
|
15405
|
+
} | undefined;
|
|
14038
15406
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14039
15407
|
enforce_policies?: boolean | undefined;
|
|
14040
15408
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14041
15409
|
skip_userinfo?: boolean | undefined;
|
|
14042
15410
|
persist_client_authorization?: boolean | undefined;
|
|
14043
15411
|
enable_introspection_endpoint?: boolean | undefined;
|
|
15412
|
+
}, {
|
|
14044
15413
|
mtls?: {
|
|
14045
15414
|
bound_access_tokens?: boolean | undefined;
|
|
14046
15415
|
} | undefined;
|
|
14047
|
-
}, {
|
|
14048
15416
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14049
15417
|
enforce_policies?: boolean | undefined;
|
|
14050
15418
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14051
15419
|
skip_userinfo?: boolean | undefined;
|
|
14052
15420
|
persist_client_authorization?: boolean | undefined;
|
|
14053
15421
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14054
|
-
mtls?: {
|
|
14055
|
-
bound_access_tokens?: boolean | undefined;
|
|
14056
|
-
} | undefined;
|
|
14057
15422
|
}>;
|
|
14058
15423
|
export type ResourceServerOptions = z.infer<typeof resourceServerOptionsSchema>;
|
|
14059
15424
|
export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
@@ -14094,39 +15459,39 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
14094
15459
|
bound_access_tokens?: boolean | undefined;
|
|
14095
15460
|
}>>;
|
|
14096
15461
|
}, "strip", z.ZodTypeAny, {
|
|
15462
|
+
mtls?: {
|
|
15463
|
+
bound_access_tokens?: boolean | undefined;
|
|
15464
|
+
} | undefined;
|
|
14097
15465
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14098
15466
|
enforce_policies?: boolean | undefined;
|
|
14099
15467
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14100
15468
|
skip_userinfo?: boolean | undefined;
|
|
14101
15469
|
persist_client_authorization?: boolean | undefined;
|
|
14102
15470
|
enable_introspection_endpoint?: boolean | undefined;
|
|
15471
|
+
}, {
|
|
14103
15472
|
mtls?: {
|
|
14104
15473
|
bound_access_tokens?: boolean | undefined;
|
|
14105
15474
|
} | undefined;
|
|
14106
|
-
}, {
|
|
14107
15475
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14108
15476
|
enforce_policies?: boolean | undefined;
|
|
14109
15477
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14110
15478
|
skip_userinfo?: boolean | undefined;
|
|
14111
15479
|
persist_client_authorization?: boolean | undefined;
|
|
14112
15480
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14113
|
-
mtls?: {
|
|
14114
|
-
bound_access_tokens?: boolean | undefined;
|
|
14115
|
-
} | undefined;
|
|
14116
15481
|
}>>;
|
|
14117
15482
|
}, "strip", z.ZodTypeAny, {
|
|
14118
15483
|
name: string;
|
|
14119
15484
|
identifier: string;
|
|
14120
15485
|
options?: {
|
|
15486
|
+
mtls?: {
|
|
15487
|
+
bound_access_tokens?: boolean | undefined;
|
|
15488
|
+
} | undefined;
|
|
14121
15489
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14122
15490
|
enforce_policies?: boolean | undefined;
|
|
14123
15491
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14124
15492
|
skip_userinfo?: boolean | undefined;
|
|
14125
15493
|
persist_client_authorization?: boolean | undefined;
|
|
14126
15494
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14127
|
-
mtls?: {
|
|
14128
|
-
bound_access_tokens?: boolean | undefined;
|
|
14129
|
-
} | undefined;
|
|
14130
15495
|
} | undefined;
|
|
14131
15496
|
scopes?: {
|
|
14132
15497
|
value: string;
|
|
@@ -14143,15 +15508,15 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
14143
15508
|
name: string;
|
|
14144
15509
|
identifier: string;
|
|
14145
15510
|
options?: {
|
|
15511
|
+
mtls?: {
|
|
15512
|
+
bound_access_tokens?: boolean | undefined;
|
|
15513
|
+
} | undefined;
|
|
14146
15514
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14147
15515
|
enforce_policies?: boolean | undefined;
|
|
14148
15516
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14149
15517
|
skip_userinfo?: boolean | undefined;
|
|
14150
15518
|
persist_client_authorization?: boolean | undefined;
|
|
14151
15519
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14152
|
-
mtls?: {
|
|
14153
|
-
bound_access_tokens?: boolean | undefined;
|
|
14154
|
-
} | undefined;
|
|
14155
15520
|
} | undefined;
|
|
14156
15521
|
scopes?: {
|
|
14157
15522
|
value: string;
|
|
@@ -14206,40 +15571,40 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14206
15571
|
bound_access_tokens?: boolean | undefined;
|
|
14207
15572
|
}>>;
|
|
14208
15573
|
}, "strip", z.ZodTypeAny, {
|
|
15574
|
+
mtls?: {
|
|
15575
|
+
bound_access_tokens?: boolean | undefined;
|
|
15576
|
+
} | undefined;
|
|
14209
15577
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14210
15578
|
enforce_policies?: boolean | undefined;
|
|
14211
15579
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14212
15580
|
skip_userinfo?: boolean | undefined;
|
|
14213
15581
|
persist_client_authorization?: boolean | undefined;
|
|
14214
15582
|
enable_introspection_endpoint?: boolean | undefined;
|
|
15583
|
+
}, {
|
|
14215
15584
|
mtls?: {
|
|
14216
15585
|
bound_access_tokens?: boolean | undefined;
|
|
14217
15586
|
} | undefined;
|
|
14218
|
-
}, {
|
|
14219
15587
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14220
15588
|
enforce_policies?: boolean | undefined;
|
|
14221
15589
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14222
15590
|
skip_userinfo?: boolean | undefined;
|
|
14223
15591
|
persist_client_authorization?: boolean | undefined;
|
|
14224
15592
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14225
|
-
mtls?: {
|
|
14226
|
-
bound_access_tokens?: boolean | undefined;
|
|
14227
|
-
} | undefined;
|
|
14228
15593
|
}>>;
|
|
14229
15594
|
id: z.ZodOptional<z.ZodString>;
|
|
14230
15595
|
}, "strip", z.ZodTypeAny, {
|
|
14231
15596
|
name: string;
|
|
14232
15597
|
identifier: string;
|
|
14233
15598
|
options?: {
|
|
15599
|
+
mtls?: {
|
|
15600
|
+
bound_access_tokens?: boolean | undefined;
|
|
15601
|
+
} | undefined;
|
|
14234
15602
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14235
15603
|
enforce_policies?: boolean | undefined;
|
|
14236
15604
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14237
15605
|
skip_userinfo?: boolean | undefined;
|
|
14238
15606
|
persist_client_authorization?: boolean | undefined;
|
|
14239
15607
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14240
|
-
mtls?: {
|
|
14241
|
-
bound_access_tokens?: boolean | undefined;
|
|
14242
|
-
} | undefined;
|
|
14243
15608
|
} | undefined;
|
|
14244
15609
|
created_at?: string | undefined;
|
|
14245
15610
|
updated_at?: string | undefined;
|
|
@@ -14259,15 +15624,15 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14259
15624
|
name: string;
|
|
14260
15625
|
identifier: string;
|
|
14261
15626
|
options?: {
|
|
15627
|
+
mtls?: {
|
|
15628
|
+
bound_access_tokens?: boolean | undefined;
|
|
15629
|
+
} | undefined;
|
|
14262
15630
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14263
15631
|
enforce_policies?: boolean | undefined;
|
|
14264
15632
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14265
15633
|
skip_userinfo?: boolean | undefined;
|
|
14266
15634
|
persist_client_authorization?: boolean | undefined;
|
|
14267
15635
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14268
|
-
mtls?: {
|
|
14269
|
-
bound_access_tokens?: boolean | undefined;
|
|
14270
|
-
} | undefined;
|
|
14271
15636
|
} | undefined;
|
|
14272
15637
|
created_at?: string | undefined;
|
|
14273
15638
|
updated_at?: string | undefined;
|
|
@@ -14325,40 +15690,40 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14325
15690
|
bound_access_tokens?: boolean | undefined;
|
|
14326
15691
|
}>>;
|
|
14327
15692
|
}, "strip", z.ZodTypeAny, {
|
|
15693
|
+
mtls?: {
|
|
15694
|
+
bound_access_tokens?: boolean | undefined;
|
|
15695
|
+
} | undefined;
|
|
14328
15696
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14329
15697
|
enforce_policies?: boolean | undefined;
|
|
14330
15698
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14331
15699
|
skip_userinfo?: boolean | undefined;
|
|
14332
15700
|
persist_client_authorization?: boolean | undefined;
|
|
14333
15701
|
enable_introspection_endpoint?: boolean | undefined;
|
|
15702
|
+
}, {
|
|
14334
15703
|
mtls?: {
|
|
14335
15704
|
bound_access_tokens?: boolean | undefined;
|
|
14336
15705
|
} | undefined;
|
|
14337
|
-
}, {
|
|
14338
15706
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14339
15707
|
enforce_policies?: boolean | undefined;
|
|
14340
15708
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14341
15709
|
skip_userinfo?: boolean | undefined;
|
|
14342
15710
|
persist_client_authorization?: boolean | undefined;
|
|
14343
15711
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14344
|
-
mtls?: {
|
|
14345
|
-
bound_access_tokens?: boolean | undefined;
|
|
14346
|
-
} | undefined;
|
|
14347
15712
|
}>>;
|
|
14348
15713
|
id: z.ZodOptional<z.ZodString>;
|
|
14349
15714
|
}, "strip", z.ZodTypeAny, {
|
|
14350
15715
|
name: string;
|
|
14351
15716
|
identifier: string;
|
|
14352
15717
|
options?: {
|
|
15718
|
+
mtls?: {
|
|
15719
|
+
bound_access_tokens?: boolean | undefined;
|
|
15720
|
+
} | undefined;
|
|
14353
15721
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14354
15722
|
enforce_policies?: boolean | undefined;
|
|
14355
15723
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14356
15724
|
skip_userinfo?: boolean | undefined;
|
|
14357
15725
|
persist_client_authorization?: boolean | undefined;
|
|
14358
15726
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14359
|
-
mtls?: {
|
|
14360
|
-
bound_access_tokens?: boolean | undefined;
|
|
14361
|
-
} | undefined;
|
|
14362
15727
|
} | undefined;
|
|
14363
15728
|
created_at?: string | undefined;
|
|
14364
15729
|
updated_at?: string | undefined;
|
|
@@ -14378,15 +15743,15 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14378
15743
|
name: string;
|
|
14379
15744
|
identifier: string;
|
|
14380
15745
|
options?: {
|
|
15746
|
+
mtls?: {
|
|
15747
|
+
bound_access_tokens?: boolean | undefined;
|
|
15748
|
+
} | undefined;
|
|
14381
15749
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14382
15750
|
enforce_policies?: boolean | undefined;
|
|
14383
15751
|
allow_skipping_userinfo?: boolean | undefined;
|
|
14384
15752
|
skip_userinfo?: boolean | undefined;
|
|
14385
15753
|
persist_client_authorization?: boolean | undefined;
|
|
14386
15754
|
enable_introspection_endpoint?: boolean | undefined;
|
|
14387
|
-
mtls?: {
|
|
14388
|
-
bound_access_tokens?: boolean | undefined;
|
|
14389
|
-
} | undefined;
|
|
14390
15755
|
} | undefined;
|
|
14391
15756
|
created_at?: string | undefined;
|
|
14392
15757
|
updated_at?: string | undefined;
|
|
@@ -15132,12 +16497,17 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15132
16497
|
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
15133
16498
|
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
15134
16499
|
}, "strip", z.ZodTypeAny, {
|
|
15135
|
-
enable_client_connections?: boolean | undefined;
|
|
15136
16500
|
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15137
16501
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15138
16502
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16503
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16504
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15139
16505
|
disable_clickjack_protection_headers?: boolean | undefined;
|
|
16506
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
16507
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
16508
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15140
16509
|
enable_apis_section?: boolean | undefined;
|
|
16510
|
+
enable_client_connections?: boolean | undefined;
|
|
15141
16511
|
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15142
16512
|
enable_dynamic_client_registration?: boolean | undefined;
|
|
15143
16513
|
enable_idtoken_api2?: boolean | undefined;
|
|
@@ -15145,21 +16515,21 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15145
16515
|
enable_legacy_profile?: boolean | undefined;
|
|
15146
16516
|
enable_pipeline2?: boolean | undefined;
|
|
15147
16517
|
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15148
|
-
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15149
|
-
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15150
|
-
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15151
|
-
revoke_refresh_token_grant?: boolean | undefined;
|
|
15152
|
-
dashboard_log_streams_next?: boolean | undefined;
|
|
15153
|
-
dashboard_insights_view?: boolean | undefined;
|
|
15154
|
-
disable_fields_map_fix?: boolean | undefined;
|
|
15155
16518
|
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16519
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16520
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15156
16521
|
}, {
|
|
15157
|
-
enable_client_connections?: boolean | undefined;
|
|
15158
16522
|
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15159
16523
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15160
16524
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16525
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16526
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15161
16527
|
disable_clickjack_protection_headers?: boolean | undefined;
|
|
16528
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
16529
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
16530
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15162
16531
|
enable_apis_section?: boolean | undefined;
|
|
16532
|
+
enable_client_connections?: boolean | undefined;
|
|
15163
16533
|
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15164
16534
|
enable_dynamic_client_registration?: boolean | undefined;
|
|
15165
16535
|
enable_idtoken_api2?: boolean | undefined;
|
|
@@ -15167,14 +16537,9 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15167
16537
|
enable_legacy_profile?: boolean | undefined;
|
|
15168
16538
|
enable_pipeline2?: boolean | undefined;
|
|
15169
16539
|
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15170
|
-
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15171
|
-
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15172
|
-
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15173
|
-
revoke_refresh_token_grant?: boolean | undefined;
|
|
15174
|
-
dashboard_log_streams_next?: boolean | undefined;
|
|
15175
|
-
dashboard_insights_view?: boolean | undefined;
|
|
15176
|
-
disable_fields_map_fix?: boolean | undefined;
|
|
15177
16540
|
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16541
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16542
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15178
16543
|
}>>;
|
|
15179
16544
|
friendly_name: z.ZodOptional<z.ZodString>;
|
|
15180
16545
|
picture_url: z.ZodOptional<z.ZodString>;
|
|
@@ -15213,13 +16578,15 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15213
16578
|
}>>;
|
|
15214
16579
|
}, "strip", z.ZodTypeAny, {
|
|
15215
16580
|
default_organization?: string | undefined;
|
|
16581
|
+
friendly_name?: string | undefined;
|
|
16582
|
+
picture_url?: string | undefined;
|
|
16583
|
+
support_email?: string | undefined;
|
|
15216
16584
|
support_url?: string | undefined;
|
|
15217
|
-
idle_session_lifetime?: number | undefined;
|
|
15218
16585
|
session_lifetime?: number | undefined;
|
|
16586
|
+
idle_session_lifetime?: number | undefined;
|
|
15219
16587
|
session_cookie?: {
|
|
15220
16588
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
15221
16589
|
} | undefined;
|
|
15222
|
-
enable_client_connections?: boolean | undefined;
|
|
15223
16590
|
default_redirection_uri?: string | undefined;
|
|
15224
16591
|
enabled_locales?: string[] | undefined;
|
|
15225
16592
|
default_directory?: string | undefined;
|
|
@@ -15228,13 +16595,19 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15228
16595
|
html?: string | undefined;
|
|
15229
16596
|
show_log_link?: boolean | undefined;
|
|
15230
16597
|
} | undefined;
|
|
16598
|
+
enable_client_connections?: boolean | undefined;
|
|
15231
16599
|
flags?: {
|
|
15232
|
-
enable_client_connections?: boolean | undefined;
|
|
15233
16600
|
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15234
16601
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15235
16602
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16603
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16604
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15236
16605
|
disable_clickjack_protection_headers?: boolean | undefined;
|
|
16606
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
16607
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
16608
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15237
16609
|
enable_apis_section?: boolean | undefined;
|
|
16610
|
+
enable_client_connections?: boolean | undefined;
|
|
15238
16611
|
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15239
16612
|
enable_dynamic_client_registration?: boolean | undefined;
|
|
15240
16613
|
enable_idtoken_api2?: boolean | undefined;
|
|
@@ -15242,18 +16615,10 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15242
16615
|
enable_legacy_profile?: boolean | undefined;
|
|
15243
16616
|
enable_pipeline2?: boolean | undefined;
|
|
15244
16617
|
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15245
|
-
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15246
|
-
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15247
|
-
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15248
|
-
revoke_refresh_token_grant?: boolean | undefined;
|
|
15249
|
-
dashboard_log_streams_next?: boolean | undefined;
|
|
15250
|
-
dashboard_insights_view?: boolean | undefined;
|
|
15251
|
-
disable_fields_map_fix?: boolean | undefined;
|
|
15252
16618
|
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16619
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16620
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15253
16621
|
} | undefined;
|
|
15254
|
-
friendly_name?: string | undefined;
|
|
15255
|
-
picture_url?: string | undefined;
|
|
15256
|
-
support_email?: string | undefined;
|
|
15257
16622
|
sandbox_version?: string | undefined;
|
|
15258
16623
|
sandbox_versions_available?: string[] | undefined;
|
|
15259
16624
|
change_password?: {
|
|
@@ -15270,13 +16635,15 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15270
16635
|
} | undefined;
|
|
15271
16636
|
}, {
|
|
15272
16637
|
default_organization?: string | undefined;
|
|
16638
|
+
friendly_name?: string | undefined;
|
|
16639
|
+
picture_url?: string | undefined;
|
|
16640
|
+
support_email?: string | undefined;
|
|
15273
16641
|
support_url?: string | undefined;
|
|
15274
|
-
idle_session_lifetime?: number | undefined;
|
|
15275
16642
|
session_lifetime?: number | undefined;
|
|
16643
|
+
idle_session_lifetime?: number | undefined;
|
|
15276
16644
|
session_cookie?: {
|
|
15277
16645
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
15278
16646
|
} | undefined;
|
|
15279
|
-
enable_client_connections?: boolean | undefined;
|
|
15280
16647
|
default_redirection_uri?: string | undefined;
|
|
15281
16648
|
enabled_locales?: string[] | undefined;
|
|
15282
16649
|
default_directory?: string | undefined;
|
|
@@ -15285,13 +16652,19 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15285
16652
|
html?: string | undefined;
|
|
15286
16653
|
show_log_link?: boolean | undefined;
|
|
15287
16654
|
} | undefined;
|
|
16655
|
+
enable_client_connections?: boolean | undefined;
|
|
15288
16656
|
flags?: {
|
|
15289
|
-
enable_client_connections?: boolean | undefined;
|
|
15290
16657
|
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15291
16658
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15292
16659
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16660
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16661
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15293
16662
|
disable_clickjack_protection_headers?: boolean | undefined;
|
|
16663
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
16664
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
16665
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15294
16666
|
enable_apis_section?: boolean | undefined;
|
|
16667
|
+
enable_client_connections?: boolean | undefined;
|
|
15295
16668
|
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15296
16669
|
enable_dynamic_client_registration?: boolean | undefined;
|
|
15297
16670
|
enable_idtoken_api2?: boolean | undefined;
|
|
@@ -15299,18 +16672,10 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
15299
16672
|
enable_legacy_profile?: boolean | undefined;
|
|
15300
16673
|
enable_pipeline2?: boolean | undefined;
|
|
15301
16674
|
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15302
|
-
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15303
|
-
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15304
|
-
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15305
|
-
revoke_refresh_token_grant?: boolean | undefined;
|
|
15306
|
-
dashboard_log_streams_next?: boolean | undefined;
|
|
15307
|
-
dashboard_insights_view?: boolean | undefined;
|
|
15308
|
-
disable_fields_map_fix?: boolean | undefined;
|
|
15309
16675
|
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16676
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16677
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15310
16678
|
} | undefined;
|
|
15311
|
-
friendly_name?: string | undefined;
|
|
15312
|
-
picture_url?: string | undefined;
|
|
15313
|
-
support_email?: string | undefined;
|
|
15314
16679
|
sandbox_version?: string | undefined;
|
|
15315
16680
|
sandbox_versions_available?: string[] | undefined;
|
|
15316
16681
|
change_password?: {
|
|
@@ -15406,7 +16771,7 @@ export interface SessionsAdapter {
|
|
|
15406
16771
|
remove: (tenant_id: string, id: string) => Promise<boolean>;
|
|
15407
16772
|
}
|
|
15408
16773
|
export interface CreateTenantParams {
|
|
15409
|
-
|
|
16774
|
+
friendly_name: string;
|
|
15410
16775
|
audience: string;
|
|
15411
16776
|
sender_name: string;
|
|
15412
16777
|
sender_email: string;
|
|
@@ -15599,10 +16964,6 @@ export interface UserOrganizationsAdapter {
|
|
|
15599
16964
|
} & Totals>;
|
|
15600
16965
|
update(tenantId: string, id: string, params: Partial<UserOrganizationInsert>): Promise<boolean>;
|
|
15601
16966
|
}
|
|
15602
|
-
export interface TenantSettingsAdapter {
|
|
15603
|
-
set: (tenant_id: string, settings: TenantSettings) => Promise<void>;
|
|
15604
|
-
get: (tenant_id: string) => Promise<TenantSettings | null>;
|
|
15605
|
-
}
|
|
15606
16967
|
export interface DataAdapters {
|
|
15607
16968
|
branding: BrandingAdapter;
|
|
15608
16969
|
cache?: CacheAdapter;
|
|
@@ -15627,7 +16988,6 @@ export interface DataAdapters {
|
|
|
15627
16988
|
roles: RolesAdapter;
|
|
15628
16989
|
sessions: SessionsAdapter;
|
|
15629
16990
|
tenants: TenantsDataAdapter;
|
|
15630
|
-
tenantSettings: TenantSettingsAdapter;
|
|
15631
16991
|
themes: ThemesAdapter;
|
|
15632
16992
|
users: UserDataAdapter;
|
|
15633
16993
|
userRoles: UserRolesAdapter;
|
|
@@ -16785,15 +18145,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16785
18145
|
name: string;
|
|
16786
18146
|
identifier: string;
|
|
16787
18147
|
options?: {
|
|
18148
|
+
mtls?: {
|
|
18149
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18150
|
+
} | undefined;
|
|
16788
18151
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16789
18152
|
enforce_policies?: boolean | undefined | undefined;
|
|
16790
18153
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16791
18154
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16792
18155
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16793
18156
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16794
|
-
mtls?: {
|
|
16795
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16796
|
-
} | undefined;
|
|
16797
18157
|
} | undefined;
|
|
16798
18158
|
created_at?: string | undefined | undefined;
|
|
16799
18159
|
updated_at?: string | undefined | undefined;
|
|
@@ -16817,15 +18177,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16817
18177
|
name: string;
|
|
16818
18178
|
identifier: string;
|
|
16819
18179
|
options?: {
|
|
18180
|
+
mtls?: {
|
|
18181
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18182
|
+
} | undefined;
|
|
16820
18183
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16821
18184
|
enforce_policies?: boolean | undefined | undefined;
|
|
16822
18185
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16823
18186
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16824
18187
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16825
18188
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16826
|
-
mtls?: {
|
|
16827
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16828
|
-
} | undefined;
|
|
16829
18189
|
} | undefined;
|
|
16830
18190
|
created_at?: string | undefined | undefined;
|
|
16831
18191
|
updated_at?: string | undefined | undefined;
|
|
@@ -16863,15 +18223,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16863
18223
|
name: string;
|
|
16864
18224
|
identifier: string;
|
|
16865
18225
|
options?: {
|
|
18226
|
+
mtls?: {
|
|
18227
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18228
|
+
} | undefined;
|
|
16866
18229
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16867
18230
|
enforce_policies?: boolean | undefined | undefined;
|
|
16868
18231
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16869
18232
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16870
18233
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16871
18234
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16872
|
-
mtls?: {
|
|
16873
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16874
|
-
} | undefined;
|
|
16875
18235
|
} | undefined;
|
|
16876
18236
|
created_at?: string | undefined | undefined;
|
|
16877
18237
|
updated_at?: string | undefined | undefined;
|
|
@@ -16924,15 +18284,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16924
18284
|
json: {
|
|
16925
18285
|
name?: string | undefined;
|
|
16926
18286
|
options?: {
|
|
18287
|
+
mtls?: {
|
|
18288
|
+
bound_access_tokens?: boolean | undefined;
|
|
18289
|
+
} | undefined;
|
|
16927
18290
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
16928
18291
|
enforce_policies?: boolean | undefined;
|
|
16929
18292
|
allow_skipping_userinfo?: boolean | undefined;
|
|
16930
18293
|
skip_userinfo?: boolean | undefined;
|
|
16931
18294
|
persist_client_authorization?: boolean | undefined;
|
|
16932
18295
|
enable_introspection_endpoint?: boolean | undefined;
|
|
16933
|
-
mtls?: {
|
|
16934
|
-
bound_access_tokens?: boolean | undefined;
|
|
16935
|
-
} | undefined;
|
|
16936
18296
|
} | undefined;
|
|
16937
18297
|
scopes?: {
|
|
16938
18298
|
value: string;
|
|
@@ -16952,15 +18312,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16952
18312
|
name: string;
|
|
16953
18313
|
identifier: string;
|
|
16954
18314
|
options?: {
|
|
18315
|
+
mtls?: {
|
|
18316
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18317
|
+
} | undefined;
|
|
16955
18318
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16956
18319
|
enforce_policies?: boolean | undefined | undefined;
|
|
16957
18320
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16958
18321
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16959
18322
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16960
18323
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16961
|
-
mtls?: {
|
|
16962
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16963
|
-
} | undefined;
|
|
16964
18324
|
} | undefined;
|
|
16965
18325
|
created_at?: string | undefined | undefined;
|
|
16966
18326
|
updated_at?: string | undefined | undefined;
|
|
@@ -16993,15 +18353,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16993
18353
|
name: string;
|
|
16994
18354
|
identifier: string;
|
|
16995
18355
|
options?: {
|
|
18356
|
+
mtls?: {
|
|
18357
|
+
bound_access_tokens?: boolean | undefined;
|
|
18358
|
+
} | undefined;
|
|
16996
18359
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
16997
18360
|
enforce_policies?: boolean | undefined;
|
|
16998
18361
|
allow_skipping_userinfo?: boolean | undefined;
|
|
16999
18362
|
skip_userinfo?: boolean | undefined;
|
|
17000
18363
|
persist_client_authorization?: boolean | undefined;
|
|
17001
18364
|
enable_introspection_endpoint?: boolean | undefined;
|
|
17002
|
-
mtls?: {
|
|
17003
|
-
bound_access_tokens?: boolean | undefined;
|
|
17004
|
-
} | undefined;
|
|
17005
18365
|
} | undefined;
|
|
17006
18366
|
scopes?: {
|
|
17007
18367
|
value: string;
|
|
@@ -17020,15 +18380,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17020
18380
|
name: string;
|
|
17021
18381
|
identifier: string;
|
|
17022
18382
|
options?: {
|
|
18383
|
+
mtls?: {
|
|
18384
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18385
|
+
} | undefined;
|
|
17023
18386
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
17024
18387
|
enforce_policies?: boolean | undefined | undefined;
|
|
17025
18388
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
17026
18389
|
skip_userinfo?: boolean | undefined | undefined;
|
|
17027
18390
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
17028
18391
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
17029
|
-
mtls?: {
|
|
17030
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
17031
|
-
} | undefined;
|
|
17032
18392
|
} | undefined;
|
|
17033
18393
|
created_at?: string | undefined | undefined;
|
|
17034
18394
|
updated_at?: string | undefined | undefined;
|
|
@@ -18296,6 +19656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18296
19656
|
updated_at: string;
|
|
18297
19657
|
user_id: string;
|
|
18298
19658
|
id: string;
|
|
19659
|
+
clients: string[];
|
|
18299
19660
|
login_session_id: string;
|
|
18300
19661
|
device: {
|
|
18301
19662
|
last_ip: string;
|
|
@@ -18305,7 +19666,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18305
19666
|
last_user_agent: string;
|
|
18306
19667
|
last_asn: string;
|
|
18307
19668
|
};
|
|
18308
|
-
clients: string[];
|
|
18309
19669
|
authenticated_at: string;
|
|
18310
19670
|
last_interaction_at: string;
|
|
18311
19671
|
expires_at?: string | undefined | undefined;
|
|
@@ -18702,16 +20062,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18702
20062
|
created_at: string;
|
|
18703
20063
|
updated_at: string;
|
|
18704
20064
|
url: string;
|
|
18705
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18706
20065
|
enabled: boolean;
|
|
20066
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18707
20067
|
synchronous: boolean;
|
|
18708
20068
|
hook_id: string;
|
|
18709
20069
|
priority?: number | undefined | undefined;
|
|
18710
20070
|
} | {
|
|
18711
20071
|
created_at: string;
|
|
18712
20072
|
updated_at: string;
|
|
18713
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18714
20073
|
enabled: boolean;
|
|
20074
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18715
20075
|
synchronous: boolean;
|
|
18716
20076
|
hook_id: string;
|
|
18717
20077
|
form_id: string;
|
|
@@ -18724,16 +20084,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18724
20084
|
created_at: string;
|
|
18725
20085
|
updated_at: string;
|
|
18726
20086
|
url: string;
|
|
18727
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18728
20087
|
enabled: boolean;
|
|
20088
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18729
20089
|
synchronous: boolean;
|
|
18730
20090
|
hook_id: string;
|
|
18731
20091
|
priority?: number | undefined | undefined;
|
|
18732
20092
|
} | {
|
|
18733
20093
|
created_at: string;
|
|
18734
20094
|
updated_at: string;
|
|
18735
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18736
20095
|
enabled: boolean;
|
|
20096
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18737
20097
|
synchronous: boolean;
|
|
18738
20098
|
hook_id: string;
|
|
18739
20099
|
form_id: string;
|
|
@@ -18772,16 +20132,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18772
20132
|
created_at: string;
|
|
18773
20133
|
updated_at: string;
|
|
18774
20134
|
url: string;
|
|
18775
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18776
20135
|
enabled: boolean;
|
|
20136
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18777
20137
|
synchronous: boolean;
|
|
18778
20138
|
hook_id: string;
|
|
18779
20139
|
priority?: number | undefined | undefined;
|
|
18780
20140
|
} | {
|
|
18781
20141
|
created_at: string;
|
|
18782
20142
|
updated_at: string;
|
|
18783
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18784
20143
|
enabled: boolean;
|
|
20144
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18785
20145
|
synchronous: boolean;
|
|
18786
20146
|
hook_id: string;
|
|
18787
20147
|
form_id: string;
|
|
@@ -18805,13 +20165,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18805
20165
|
} & {
|
|
18806
20166
|
json: {
|
|
18807
20167
|
url?: string | undefined;
|
|
18808
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18809
20168
|
enabled?: boolean | undefined;
|
|
20169
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18810
20170
|
synchronous?: boolean | undefined;
|
|
18811
20171
|
priority?: number | undefined;
|
|
18812
20172
|
} | {
|
|
18813
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18814
20173
|
enabled?: boolean | undefined;
|
|
20174
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18815
20175
|
synchronous?: boolean | undefined;
|
|
18816
20176
|
priority?: number | undefined;
|
|
18817
20177
|
form_id?: string | undefined;
|
|
@@ -18832,13 +20192,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18832
20192
|
} & {
|
|
18833
20193
|
json: {
|
|
18834
20194
|
url?: string | undefined;
|
|
18835
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18836
20195
|
enabled?: boolean | undefined;
|
|
20196
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18837
20197
|
synchronous?: boolean | undefined;
|
|
18838
20198
|
priority?: number | undefined;
|
|
18839
20199
|
} | {
|
|
18840
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18841
20200
|
enabled?: boolean | undefined;
|
|
20201
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18842
20202
|
synchronous?: boolean | undefined;
|
|
18843
20203
|
priority?: number | undefined;
|
|
18844
20204
|
form_id?: string | undefined;
|
|
@@ -18848,16 +20208,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18848
20208
|
created_at: string;
|
|
18849
20209
|
updated_at: string;
|
|
18850
20210
|
url: string;
|
|
18851
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18852
20211
|
enabled: boolean;
|
|
20212
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18853
20213
|
synchronous: boolean;
|
|
18854
20214
|
hook_id: string;
|
|
18855
20215
|
priority?: number | undefined | undefined;
|
|
18856
20216
|
} | {
|
|
18857
20217
|
created_at: string;
|
|
18858
20218
|
updated_at: string;
|
|
18859
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18860
20219
|
enabled: boolean;
|
|
20220
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18861
20221
|
synchronous: boolean;
|
|
18862
20222
|
hook_id: string;
|
|
18863
20223
|
form_id: string;
|
|
@@ -18896,16 +20256,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18896
20256
|
created_at: string;
|
|
18897
20257
|
updated_at: string;
|
|
18898
20258
|
url: string;
|
|
18899
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18900
20259
|
enabled: boolean;
|
|
20260
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18901
20261
|
synchronous: boolean;
|
|
18902
20262
|
hook_id: string;
|
|
18903
20263
|
priority?: number | undefined | undefined;
|
|
18904
20264
|
} | {
|
|
18905
20265
|
created_at: string;
|
|
18906
20266
|
updated_at: string;
|
|
18907
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18908
20267
|
enabled: boolean;
|
|
20268
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18909
20269
|
synchronous: boolean;
|
|
18910
20270
|
hook_id: string;
|
|
18911
20271
|
form_id: string;
|
|
@@ -19060,7 +20420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19060
20420
|
};
|
|
19061
20421
|
};
|
|
19062
20422
|
}, "/logs"> & import("hono/types").MergeSchemaPath<{
|
|
19063
|
-
"/": {
|
|
20423
|
+
"/settings": {
|
|
19064
20424
|
$get: {
|
|
19065
20425
|
input: {
|
|
19066
20426
|
header: {
|
|
@@ -19068,14 +20428,28 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19068
20428
|
};
|
|
19069
20429
|
};
|
|
19070
20430
|
output: {
|
|
20431
|
+
created_at: string;
|
|
20432
|
+
updated_at: string;
|
|
20433
|
+
audience: string;
|
|
20434
|
+
id: string;
|
|
20435
|
+
friendly_name: string;
|
|
20436
|
+
sender_email: string;
|
|
20437
|
+
sender_name: string;
|
|
20438
|
+
allowed_logout_urls?: string[] | undefined | undefined;
|
|
20439
|
+
oidc_logout?: {
|
|
20440
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined | undefined;
|
|
20441
|
+
} | undefined;
|
|
19071
20442
|
default_organization?: string | undefined | undefined;
|
|
20443
|
+
picture_url?: string | undefined | undefined;
|
|
20444
|
+
support_email?: string | undefined | undefined;
|
|
19072
20445
|
support_url?: string | undefined | undefined;
|
|
19073
|
-
idle_session_lifetime?: number | undefined | undefined;
|
|
19074
20446
|
session_lifetime?: number | undefined | undefined;
|
|
20447
|
+
idle_session_lifetime?: number | undefined | undefined;
|
|
20448
|
+
ephemeral_session_lifetime?: number | undefined | undefined;
|
|
20449
|
+
idle_ephemeral_session_lifetime?: number | undefined | undefined;
|
|
19075
20450
|
session_cookie?: {
|
|
19076
20451
|
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
19077
20452
|
} | undefined;
|
|
19078
|
-
enable_client_connections?: boolean | undefined | undefined;
|
|
19079
20453
|
default_redirection_uri?: string | undefined | undefined;
|
|
19080
20454
|
enabled_locales?: string[] | undefined | undefined;
|
|
19081
20455
|
default_directory?: string | undefined | undefined;
|
|
@@ -19085,12 +20459,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19085
20459
|
show_log_link?: boolean | undefined | undefined;
|
|
19086
20460
|
} | undefined;
|
|
19087
20461
|
flags?: {
|
|
19088
|
-
|
|
20462
|
+
allow_changing_enable_sso?: boolean | undefined | undefined;
|
|
19089
20463
|
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
19090
20464
|
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
19091
20465
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined | undefined;
|
|
20466
|
+
change_pwd_flow_v1?: boolean | undefined | undefined;
|
|
20467
|
+
custom_domains_provisioning?: boolean | undefined | undefined;
|
|
20468
|
+
dashboard_insights_view?: boolean | undefined | undefined;
|
|
20469
|
+
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19092
20470
|
disable_clickjack_protection_headers?: boolean | undefined | undefined;
|
|
20471
|
+
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
20472
|
+
disable_impersonation?: boolean | undefined | undefined;
|
|
20473
|
+
disable_management_api_sms_obfuscation?: boolean | undefined | undefined;
|
|
20474
|
+
enable_adfs_waad_email_verification?: boolean | undefined | undefined;
|
|
19093
20475
|
enable_apis_section?: boolean | undefined | undefined;
|
|
20476
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19094
20477
|
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
19095
20478
|
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
19096
20479
|
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
@@ -19098,39 +20481,63 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19098
20481
|
enable_legacy_profile?: boolean | undefined | undefined;
|
|
19099
20482
|
enable_pipeline2?: boolean | undefined | undefined;
|
|
19100
20483
|
enable_public_signup_user_exists_error?: boolean | undefined | undefined;
|
|
19101
|
-
|
|
19102
|
-
|
|
19103
|
-
|
|
19104
|
-
|
|
19105
|
-
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19106
|
-
dashboard_insights_view?: boolean | undefined | undefined;
|
|
19107
|
-
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
20484
|
+
enable_sso?: boolean | undefined | undefined;
|
|
20485
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined | undefined;
|
|
20486
|
+
genai_trial?: boolean | undefined | undefined;
|
|
20487
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined | undefined;
|
|
19108
20488
|
mfa_show_factor_list_on_enrollment?: boolean | undefined | undefined;
|
|
20489
|
+
no_disclose_enterprise_connections?: boolean | undefined | undefined;
|
|
20490
|
+
remove_alg_from_jwks?: boolean | undefined | undefined;
|
|
20491
|
+
revoke_refresh_token_grant?: boolean | undefined | undefined;
|
|
20492
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined | undefined;
|
|
20493
|
+
use_scope_descriptions_for_consent?: boolean | undefined | undefined;
|
|
19109
20494
|
} | undefined;
|
|
19110
|
-
friendly_name?: string | undefined | undefined;
|
|
19111
|
-
picture_url?: string | undefined | undefined;
|
|
19112
|
-
support_email?: string | undefined | undefined;
|
|
19113
20495
|
sandbox_version?: string | undefined | undefined;
|
|
20496
|
+
legacy_sandbox_version?: string | undefined | undefined;
|
|
19114
20497
|
sandbox_versions_available?: string[] | undefined | undefined;
|
|
19115
20498
|
change_password?: {
|
|
19116
|
-
html
|
|
19117
|
-
enabled
|
|
20499
|
+
html?: string | undefined | undefined;
|
|
20500
|
+
enabled?: boolean | undefined | undefined;
|
|
19118
20501
|
} | undefined;
|
|
19119
20502
|
guardian_mfa_page?: {
|
|
19120
|
-
html
|
|
19121
|
-
enabled
|
|
20503
|
+
html?: string | undefined | undefined;
|
|
20504
|
+
enabled?: boolean | undefined | undefined;
|
|
20505
|
+
} | undefined;
|
|
20506
|
+
device_flow?: {
|
|
20507
|
+
charset?: "base20" | "digits" | undefined | undefined;
|
|
20508
|
+
mask?: string | undefined | undefined;
|
|
20509
|
+
} | undefined;
|
|
20510
|
+
default_token_quota?: {
|
|
20511
|
+
clients?: {
|
|
20512
|
+
client_credentials?: {
|
|
20513
|
+
[x: string]: any;
|
|
20514
|
+
} | undefined;
|
|
20515
|
+
} | undefined;
|
|
20516
|
+
organizations?: {
|
|
20517
|
+
client_credentials?: {
|
|
20518
|
+
[x: string]: any;
|
|
20519
|
+
} | undefined;
|
|
20520
|
+
} | undefined;
|
|
19122
20521
|
} | undefined;
|
|
19123
20522
|
default_audience?: string | undefined | undefined;
|
|
19124
20523
|
sessions?: {
|
|
19125
20524
|
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
19126
20525
|
} | undefined;
|
|
20526
|
+
allow_organization_name_in_authentication_api?: boolean | undefined | undefined;
|
|
20527
|
+
customize_mfa_in_postlogin_action?: boolean | undefined | undefined;
|
|
20528
|
+
acr_values_supported?: string[] | undefined | undefined;
|
|
20529
|
+
mtls?: {
|
|
20530
|
+
enable_endpoint_aliases?: boolean | undefined | undefined;
|
|
20531
|
+
} | undefined;
|
|
20532
|
+
pushed_authorization_requests_supported?: boolean | undefined | undefined;
|
|
20533
|
+
authorization_response_iss_parameter_supported?: boolean | undefined | undefined;
|
|
19127
20534
|
};
|
|
19128
20535
|
outputFormat: "json";
|
|
19129
20536
|
status: 200;
|
|
19130
20537
|
};
|
|
19131
20538
|
};
|
|
19132
20539
|
} & {
|
|
19133
|
-
"/": {
|
|
20540
|
+
"/settings": {
|
|
19134
20541
|
$patch: {
|
|
19135
20542
|
input: {
|
|
19136
20543
|
header: {
|
|
@@ -19138,17 +20545,29 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19138
20545
|
};
|
|
19139
20546
|
} & {
|
|
19140
20547
|
json: {
|
|
20548
|
+
id?: string | undefined;
|
|
20549
|
+
audience?: string | undefined;
|
|
19141
20550
|
sessions?: {
|
|
19142
20551
|
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
19143
20552
|
} | undefined;
|
|
20553
|
+
allowed_logout_urls?: string[] | undefined;
|
|
20554
|
+
oidc_logout?: {
|
|
20555
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
20556
|
+
} | undefined;
|
|
19144
20557
|
default_organization?: string | undefined;
|
|
20558
|
+
friendly_name?: string | undefined;
|
|
20559
|
+
sender_email?: string | undefined;
|
|
20560
|
+
sender_name?: string | undefined;
|
|
20561
|
+
picture_url?: string | undefined;
|
|
20562
|
+
support_email?: string | undefined;
|
|
19145
20563
|
support_url?: string | undefined;
|
|
19146
|
-
idle_session_lifetime?: number | undefined;
|
|
19147
20564
|
session_lifetime?: number | undefined;
|
|
20565
|
+
idle_session_lifetime?: number | undefined;
|
|
20566
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
20567
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
19148
20568
|
session_cookie?: {
|
|
19149
20569
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
19150
20570
|
} | undefined;
|
|
19151
|
-
enable_client_connections?: boolean | undefined;
|
|
19152
20571
|
default_redirection_uri?: string | undefined;
|
|
19153
20572
|
enabled_locales?: string[] | undefined;
|
|
19154
20573
|
default_directory?: string | undefined;
|
|
@@ -19158,12 +20577,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19158
20577
|
show_log_link?: boolean | undefined;
|
|
19159
20578
|
} | undefined;
|
|
19160
20579
|
flags?: {
|
|
19161
|
-
|
|
20580
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
19162
20581
|
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
19163
20582
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
19164
20583
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
20584
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
20585
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
20586
|
+
dashboard_insights_view?: boolean | undefined;
|
|
20587
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
19165
20588
|
disable_clickjack_protection_headers?: boolean | undefined;
|
|
20589
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
20590
|
+
disable_impersonation?: boolean | undefined;
|
|
20591
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
20592
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
19166
20593
|
enable_apis_section?: boolean | undefined;
|
|
20594
|
+
enable_client_connections?: boolean | undefined;
|
|
19167
20595
|
enable_custom_domain_in_emails?: boolean | undefined;
|
|
19168
20596
|
enable_dynamic_client_registration?: boolean | undefined;
|
|
19169
20597
|
enable_idtoken_api2?: boolean | undefined;
|
|
@@ -19171,40 +20599,74 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19171
20599
|
enable_legacy_profile?: boolean | undefined;
|
|
19172
20600
|
enable_pipeline2?: boolean | undefined;
|
|
19173
20601
|
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
19174
|
-
|
|
19175
|
-
|
|
19176
|
-
|
|
19177
|
-
|
|
19178
|
-
dashboard_log_streams_next?: boolean | undefined;
|
|
19179
|
-
dashboard_insights_view?: boolean | undefined;
|
|
19180
|
-
disable_fields_map_fix?: boolean | undefined;
|
|
20602
|
+
enable_sso?: boolean | undefined;
|
|
20603
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
20604
|
+
genai_trial?: boolean | undefined;
|
|
20605
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
19181
20606
|
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
20607
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
20608
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
20609
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
20610
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
20611
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
19182
20612
|
} | undefined;
|
|
19183
|
-
friendly_name?: string | undefined;
|
|
19184
|
-
picture_url?: string | undefined;
|
|
19185
|
-
support_email?: string | undefined;
|
|
19186
20613
|
sandbox_version?: string | undefined;
|
|
20614
|
+
legacy_sandbox_version?: string | undefined;
|
|
19187
20615
|
sandbox_versions_available?: string[] | undefined;
|
|
19188
20616
|
change_password?: {
|
|
19189
|
-
html
|
|
19190
|
-
enabled
|
|
20617
|
+
html?: string | undefined;
|
|
20618
|
+
enabled?: boolean | undefined;
|
|
19191
20619
|
} | undefined;
|
|
19192
20620
|
guardian_mfa_page?: {
|
|
19193
|
-
html
|
|
19194
|
-
enabled
|
|
20621
|
+
html?: string | undefined;
|
|
20622
|
+
enabled?: boolean | undefined;
|
|
20623
|
+
} | undefined;
|
|
20624
|
+
device_flow?: {
|
|
20625
|
+
charset?: "base20" | "digits" | undefined;
|
|
20626
|
+
mask?: string | undefined;
|
|
20627
|
+
} | undefined;
|
|
20628
|
+
default_token_quota?: {
|
|
20629
|
+
clients?: {
|
|
20630
|
+
client_credentials?: Record<string, any> | undefined;
|
|
20631
|
+
} | undefined;
|
|
20632
|
+
organizations?: {
|
|
20633
|
+
client_credentials?: Record<string, any> | undefined;
|
|
20634
|
+
} | undefined;
|
|
19195
20635
|
} | undefined;
|
|
19196
20636
|
default_audience?: string | undefined;
|
|
20637
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
20638
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
20639
|
+
acr_values_supported?: string[] | undefined;
|
|
20640
|
+
mtls?: {
|
|
20641
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
20642
|
+
} | undefined;
|
|
20643
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
20644
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
19197
20645
|
};
|
|
19198
20646
|
};
|
|
19199
20647
|
output: {
|
|
20648
|
+
created_at: string;
|
|
20649
|
+
updated_at: string;
|
|
20650
|
+
audience: string;
|
|
20651
|
+
id: string;
|
|
20652
|
+
friendly_name: string;
|
|
20653
|
+
sender_email: string;
|
|
20654
|
+
sender_name: string;
|
|
20655
|
+
allowed_logout_urls?: string[] | undefined | undefined;
|
|
20656
|
+
oidc_logout?: {
|
|
20657
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined | undefined;
|
|
20658
|
+
} | undefined;
|
|
19200
20659
|
default_organization?: string | undefined | undefined;
|
|
20660
|
+
picture_url?: string | undefined | undefined;
|
|
20661
|
+
support_email?: string | undefined | undefined;
|
|
19201
20662
|
support_url?: string | undefined | undefined;
|
|
19202
|
-
idle_session_lifetime?: number | undefined | undefined;
|
|
19203
20663
|
session_lifetime?: number | undefined | undefined;
|
|
20664
|
+
idle_session_lifetime?: number | undefined | undefined;
|
|
20665
|
+
ephemeral_session_lifetime?: number | undefined | undefined;
|
|
20666
|
+
idle_ephemeral_session_lifetime?: number | undefined | undefined;
|
|
19204
20667
|
session_cookie?: {
|
|
19205
20668
|
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
19206
20669
|
} | undefined;
|
|
19207
|
-
enable_client_connections?: boolean | undefined | undefined;
|
|
19208
20670
|
default_redirection_uri?: string | undefined | undefined;
|
|
19209
20671
|
enabled_locales?: string[] | undefined | undefined;
|
|
19210
20672
|
default_directory?: string | undefined | undefined;
|
|
@@ -19214,12 +20676,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19214
20676
|
show_log_link?: boolean | undefined | undefined;
|
|
19215
20677
|
} | undefined;
|
|
19216
20678
|
flags?: {
|
|
19217
|
-
|
|
20679
|
+
allow_changing_enable_sso?: boolean | undefined | undefined;
|
|
19218
20680
|
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
19219
20681
|
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
19220
20682
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined | undefined;
|
|
20683
|
+
change_pwd_flow_v1?: boolean | undefined | undefined;
|
|
20684
|
+
custom_domains_provisioning?: boolean | undefined | undefined;
|
|
20685
|
+
dashboard_insights_view?: boolean | undefined | undefined;
|
|
20686
|
+
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19221
20687
|
disable_clickjack_protection_headers?: boolean | undefined | undefined;
|
|
20688
|
+
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
20689
|
+
disable_impersonation?: boolean | undefined | undefined;
|
|
20690
|
+
disable_management_api_sms_obfuscation?: boolean | undefined | undefined;
|
|
20691
|
+
enable_adfs_waad_email_verification?: boolean | undefined | undefined;
|
|
19222
20692
|
enable_apis_section?: boolean | undefined | undefined;
|
|
20693
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19223
20694
|
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
19224
20695
|
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
19225
20696
|
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
@@ -19227,38 +20698,62 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19227
20698
|
enable_legacy_profile?: boolean | undefined | undefined;
|
|
19228
20699
|
enable_pipeline2?: boolean | undefined | undefined;
|
|
19229
20700
|
enable_public_signup_user_exists_error?: boolean | undefined | undefined;
|
|
19230
|
-
|
|
19231
|
-
|
|
19232
|
-
|
|
19233
|
-
|
|
19234
|
-
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19235
|
-
dashboard_insights_view?: boolean | undefined | undefined;
|
|
19236
|
-
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
20701
|
+
enable_sso?: boolean | undefined | undefined;
|
|
20702
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined | undefined;
|
|
20703
|
+
genai_trial?: boolean | undefined | undefined;
|
|
20704
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined | undefined;
|
|
19237
20705
|
mfa_show_factor_list_on_enrollment?: boolean | undefined | undefined;
|
|
20706
|
+
no_disclose_enterprise_connections?: boolean | undefined | undefined;
|
|
20707
|
+
remove_alg_from_jwks?: boolean | undefined | undefined;
|
|
20708
|
+
revoke_refresh_token_grant?: boolean | undefined | undefined;
|
|
20709
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined | undefined;
|
|
20710
|
+
use_scope_descriptions_for_consent?: boolean | undefined | undefined;
|
|
19238
20711
|
} | undefined;
|
|
19239
|
-
friendly_name?: string | undefined | undefined;
|
|
19240
|
-
picture_url?: string | undefined | undefined;
|
|
19241
|
-
support_email?: string | undefined | undefined;
|
|
19242
20712
|
sandbox_version?: string | undefined | undefined;
|
|
20713
|
+
legacy_sandbox_version?: string | undefined | undefined;
|
|
19243
20714
|
sandbox_versions_available?: string[] | undefined | undefined;
|
|
19244
20715
|
change_password?: {
|
|
19245
|
-
html
|
|
19246
|
-
enabled
|
|
20716
|
+
html?: string | undefined | undefined;
|
|
20717
|
+
enabled?: boolean | undefined | undefined;
|
|
19247
20718
|
} | undefined;
|
|
19248
20719
|
guardian_mfa_page?: {
|
|
19249
|
-
html
|
|
19250
|
-
enabled
|
|
20720
|
+
html?: string | undefined | undefined;
|
|
20721
|
+
enabled?: boolean | undefined | undefined;
|
|
20722
|
+
} | undefined;
|
|
20723
|
+
device_flow?: {
|
|
20724
|
+
charset?: "base20" | "digits" | undefined | undefined;
|
|
20725
|
+
mask?: string | undefined | undefined;
|
|
20726
|
+
} | undefined;
|
|
20727
|
+
default_token_quota?: {
|
|
20728
|
+
clients?: {
|
|
20729
|
+
client_credentials?: {
|
|
20730
|
+
[x: string]: any;
|
|
20731
|
+
} | undefined;
|
|
20732
|
+
} | undefined;
|
|
20733
|
+
organizations?: {
|
|
20734
|
+
client_credentials?: {
|
|
20735
|
+
[x: string]: any;
|
|
20736
|
+
} | undefined;
|
|
20737
|
+
} | undefined;
|
|
19251
20738
|
} | undefined;
|
|
19252
20739
|
default_audience?: string | undefined | undefined;
|
|
19253
20740
|
sessions?: {
|
|
19254
20741
|
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
19255
20742
|
} | undefined;
|
|
20743
|
+
allow_organization_name_in_authentication_api?: boolean | undefined | undefined;
|
|
20744
|
+
customize_mfa_in_postlogin_action?: boolean | undefined | undefined;
|
|
20745
|
+
acr_values_supported?: string[] | undefined | undefined;
|
|
20746
|
+
mtls?: {
|
|
20747
|
+
enable_endpoint_aliases?: boolean | undefined | undefined;
|
|
20748
|
+
} | undefined;
|
|
20749
|
+
pushed_authorization_requests_supported?: boolean | undefined | undefined;
|
|
20750
|
+
authorization_response_iss_parameter_supported?: boolean | undefined | undefined;
|
|
19256
20751
|
};
|
|
19257
20752
|
outputFormat: "json";
|
|
19258
20753
|
status: 200;
|
|
19259
20754
|
};
|
|
19260
20755
|
};
|
|
19261
|
-
}
|
|
20756
|
+
} & {
|
|
19262
20757
|
"/": {
|
|
19263
20758
|
$get: {
|
|
19264
20759
|
input: {
|
|
@@ -19310,16 +20805,103 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19310
20805
|
};
|
|
19311
20806
|
} & {
|
|
19312
20807
|
json: {
|
|
19313
|
-
name?: string | undefined;
|
|
19314
20808
|
id?: string | undefined;
|
|
19315
20809
|
audience?: string | undefined;
|
|
20810
|
+
sessions?: {
|
|
20811
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
20812
|
+
} | undefined;
|
|
20813
|
+
allowed_logout_urls?: string[] | undefined;
|
|
20814
|
+
oidc_logout?: {
|
|
20815
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
20816
|
+
} | undefined;
|
|
20817
|
+
default_organization?: string | undefined;
|
|
20818
|
+
friendly_name?: string | undefined;
|
|
19316
20819
|
sender_email?: string | undefined;
|
|
19317
20820
|
sender_name?: string | undefined;
|
|
20821
|
+
picture_url?: string | undefined;
|
|
20822
|
+
support_email?: string | undefined;
|
|
19318
20823
|
support_url?: string | undefined;
|
|
19319
|
-
|
|
19320
|
-
|
|
19321
|
-
|
|
19322
|
-
|
|
20824
|
+
session_lifetime?: number | undefined;
|
|
20825
|
+
idle_session_lifetime?: number | undefined;
|
|
20826
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
20827
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
20828
|
+
session_cookie?: {
|
|
20829
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
20830
|
+
} | undefined;
|
|
20831
|
+
default_redirection_uri?: string | undefined;
|
|
20832
|
+
enabled_locales?: string[] | undefined;
|
|
20833
|
+
default_directory?: string | undefined;
|
|
20834
|
+
error_page?: {
|
|
20835
|
+
url?: string | undefined;
|
|
20836
|
+
html?: string | undefined;
|
|
20837
|
+
show_log_link?: boolean | undefined;
|
|
20838
|
+
} | undefined;
|
|
20839
|
+
flags?: {
|
|
20840
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
20841
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
20842
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
20843
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
20844
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
20845
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
20846
|
+
dashboard_insights_view?: boolean | undefined;
|
|
20847
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
20848
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
20849
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
20850
|
+
disable_impersonation?: boolean | undefined;
|
|
20851
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
20852
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
20853
|
+
enable_apis_section?: boolean | undefined;
|
|
20854
|
+
enable_client_connections?: boolean | undefined;
|
|
20855
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
20856
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
20857
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
20858
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
20859
|
+
enable_legacy_profile?: boolean | undefined;
|
|
20860
|
+
enable_pipeline2?: boolean | undefined;
|
|
20861
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
20862
|
+
enable_sso?: boolean | undefined;
|
|
20863
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
20864
|
+
genai_trial?: boolean | undefined;
|
|
20865
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
20866
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
20867
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
20868
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
20869
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
20870
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
20871
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
20872
|
+
} | undefined;
|
|
20873
|
+
sandbox_version?: string | undefined;
|
|
20874
|
+
legacy_sandbox_version?: string | undefined;
|
|
20875
|
+
sandbox_versions_available?: string[] | undefined;
|
|
20876
|
+
change_password?: {
|
|
20877
|
+
html?: string | undefined;
|
|
20878
|
+
enabled?: boolean | undefined;
|
|
20879
|
+
} | undefined;
|
|
20880
|
+
guardian_mfa_page?: {
|
|
20881
|
+
html?: string | undefined;
|
|
20882
|
+
enabled?: boolean | undefined;
|
|
20883
|
+
} | undefined;
|
|
20884
|
+
device_flow?: {
|
|
20885
|
+
charset?: "base20" | "digits" | undefined;
|
|
20886
|
+
mask?: string | undefined;
|
|
20887
|
+
} | undefined;
|
|
20888
|
+
default_token_quota?: {
|
|
20889
|
+
clients?: {
|
|
20890
|
+
client_credentials?: Record<string, any> | undefined;
|
|
20891
|
+
} | undefined;
|
|
20892
|
+
organizations?: {
|
|
20893
|
+
client_credentials?: Record<string, any> | undefined;
|
|
20894
|
+
} | undefined;
|
|
20895
|
+
} | undefined;
|
|
20896
|
+
default_audience?: string | undefined;
|
|
20897
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
20898
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
20899
|
+
acr_values_supported?: string[] | undefined;
|
|
20900
|
+
mtls?: {
|
|
20901
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
20902
|
+
} | undefined;
|
|
20903
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
20904
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
19323
20905
|
};
|
|
19324
20906
|
};
|
|
19325
20907
|
output: {};
|
|
@@ -19332,16 +20914,103 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19332
20914
|
$post: {
|
|
19333
20915
|
input: {
|
|
19334
20916
|
json: {
|
|
19335
|
-
name: string;
|
|
19336
20917
|
audience: string;
|
|
20918
|
+
friendly_name: string;
|
|
19337
20919
|
sender_email: string;
|
|
19338
20920
|
sender_name: string;
|
|
19339
20921
|
id?: string | undefined;
|
|
20922
|
+
sessions?: {
|
|
20923
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
20924
|
+
} | undefined;
|
|
20925
|
+
allowed_logout_urls?: string[] | undefined;
|
|
20926
|
+
oidc_logout?: {
|
|
20927
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
20928
|
+
} | undefined;
|
|
20929
|
+
default_organization?: string | undefined;
|
|
20930
|
+
picture_url?: string | undefined;
|
|
20931
|
+
support_email?: string | undefined;
|
|
19340
20932
|
support_url?: string | undefined;
|
|
19341
|
-
|
|
19342
|
-
|
|
19343
|
-
|
|
19344
|
-
|
|
20933
|
+
session_lifetime?: number | undefined;
|
|
20934
|
+
idle_session_lifetime?: number | undefined;
|
|
20935
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
20936
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
20937
|
+
session_cookie?: {
|
|
20938
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
20939
|
+
} | undefined;
|
|
20940
|
+
default_redirection_uri?: string | undefined;
|
|
20941
|
+
enabled_locales?: string[] | undefined;
|
|
20942
|
+
default_directory?: string | undefined;
|
|
20943
|
+
error_page?: {
|
|
20944
|
+
url?: string | undefined;
|
|
20945
|
+
html?: string | undefined;
|
|
20946
|
+
show_log_link?: boolean | undefined;
|
|
20947
|
+
} | undefined;
|
|
20948
|
+
flags?: {
|
|
20949
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
20950
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
20951
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
20952
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
20953
|
+
change_pwd_flow_v1?: boolean | undefined;
|
|
20954
|
+
custom_domains_provisioning?: boolean | undefined;
|
|
20955
|
+
dashboard_insights_view?: boolean | undefined;
|
|
20956
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
20957
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
20958
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
20959
|
+
disable_impersonation?: boolean | undefined;
|
|
20960
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
20961
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
20962
|
+
enable_apis_section?: boolean | undefined;
|
|
20963
|
+
enable_client_connections?: boolean | undefined;
|
|
20964
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
20965
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
20966
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
20967
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
20968
|
+
enable_legacy_profile?: boolean | undefined;
|
|
20969
|
+
enable_pipeline2?: boolean | undefined;
|
|
20970
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
20971
|
+
enable_sso?: boolean | undefined;
|
|
20972
|
+
enforce_client_authentication_on_passwordless_start?: boolean | undefined;
|
|
20973
|
+
genai_trial?: boolean | undefined;
|
|
20974
|
+
improved_signup_bot_detection_in_classic?: boolean | undefined;
|
|
20975
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
20976
|
+
no_disclose_enterprise_connections?: boolean | undefined;
|
|
20977
|
+
remove_alg_from_jwks?: boolean | undefined;
|
|
20978
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
20979
|
+
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
20980
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
20981
|
+
} | undefined;
|
|
20982
|
+
sandbox_version?: string | undefined;
|
|
20983
|
+
legacy_sandbox_version?: string | undefined;
|
|
20984
|
+
sandbox_versions_available?: string[] | undefined;
|
|
20985
|
+
change_password?: {
|
|
20986
|
+
html?: string | undefined;
|
|
20987
|
+
enabled?: boolean | undefined;
|
|
20988
|
+
} | undefined;
|
|
20989
|
+
guardian_mfa_page?: {
|
|
20990
|
+
html?: string | undefined;
|
|
20991
|
+
enabled?: boolean | undefined;
|
|
20992
|
+
} | undefined;
|
|
20993
|
+
device_flow?: {
|
|
20994
|
+
charset?: "base20" | "digits" | undefined;
|
|
20995
|
+
mask?: string | undefined;
|
|
20996
|
+
} | undefined;
|
|
20997
|
+
default_token_quota?: {
|
|
20998
|
+
clients?: {
|
|
20999
|
+
client_credentials?: Record<string, any> | undefined;
|
|
21000
|
+
} | undefined;
|
|
21001
|
+
organizations?: {
|
|
21002
|
+
client_credentials?: Record<string, any> | undefined;
|
|
21003
|
+
} | undefined;
|
|
21004
|
+
} | undefined;
|
|
21005
|
+
default_audience?: string | undefined;
|
|
21006
|
+
allow_organization_name_in_authentication_api?: boolean | undefined;
|
|
21007
|
+
customize_mfa_in_postlogin_action?: boolean | undefined;
|
|
21008
|
+
acr_values_supported?: string[] | undefined;
|
|
21009
|
+
mtls?: {
|
|
21010
|
+
enable_endpoint_aliases?: boolean | undefined;
|
|
21011
|
+
} | undefined;
|
|
21012
|
+
pushed_authorization_requests_supported?: boolean | undefined;
|
|
21013
|
+
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
19345
21014
|
};
|
|
19346
21015
|
};
|
|
19347
21016
|
output: Response;
|
|
@@ -20643,6 +22312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20643
22312
|
updated_at: string;
|
|
20644
22313
|
user_id: string;
|
|
20645
22314
|
id: string;
|
|
22315
|
+
clients: string[];
|
|
20646
22316
|
login_session_id: string;
|
|
20647
22317
|
device: {
|
|
20648
22318
|
last_ip: string;
|
|
@@ -20652,7 +22322,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20652
22322
|
last_user_agent: string;
|
|
20653
22323
|
last_asn: string;
|
|
20654
22324
|
};
|
|
20655
|
-
clients: string[];
|
|
20656
22325
|
authenticated_at: string;
|
|
20657
22326
|
last_interaction_at: string;
|
|
20658
22327
|
expires_at?: string | undefined | undefined;
|
|
@@ -20668,6 +22337,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20668
22337
|
updated_at: string;
|
|
20669
22338
|
user_id: string;
|
|
20670
22339
|
id: string;
|
|
22340
|
+
clients: string[];
|
|
20671
22341
|
login_session_id: string;
|
|
20672
22342
|
device: {
|
|
20673
22343
|
last_ip: string;
|
|
@@ -20677,7 +22347,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20677
22347
|
last_user_agent: string;
|
|
20678
22348
|
last_asn: string;
|
|
20679
22349
|
};
|
|
20680
|
-
clients: string[];
|
|
20681
22350
|
authenticated_at: string;
|
|
20682
22351
|
last_interaction_at: string;
|
|
20683
22352
|
expires_at?: string | undefined | undefined;
|
|
@@ -21008,9 +22677,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
21008
22677
|
clientId: string;
|
|
21009
22678
|
clientSecret: string;
|
|
21010
22679
|
};
|
|
22680
|
+
settings?: {} | undefined;
|
|
21011
22681
|
enabled?: boolean | undefined;
|
|
21012
22682
|
default_from_address?: string | undefined;
|
|
21013
|
-
settings?: {} | undefined;
|
|
21014
22683
|
};
|
|
21015
22684
|
};
|
|
21016
22685
|
output: {};
|
|
@@ -21028,6 +22697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
21028
22697
|
} & {
|
|
21029
22698
|
json: {
|
|
21030
22699
|
name?: string | undefined;
|
|
22700
|
+
settings?: {} | undefined;
|
|
21031
22701
|
enabled?: boolean | undefined;
|
|
21032
22702
|
credentials?: {
|
|
21033
22703
|
accessKeyId: string;
|
|
@@ -21049,7 +22719,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
21049
22719
|
clientSecret: string;
|
|
21050
22720
|
} | undefined;
|
|
21051
22721
|
default_from_address?: string | undefined;
|
|
21052
|
-
settings?: {} | undefined;
|
|
21053
22722
|
};
|
|
21054
22723
|
};
|
|
21055
22724
|
output: {};
|
|
@@ -21457,7 +23126,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
21457
23126
|
widget?: {
|
|
21458
23127
|
header_text_alignment?: "center" | "left" | "right" | undefined;
|
|
21459
23128
|
logo_height?: number | undefined;
|
|
21460
|
-
logo_position?: "
|
|
23129
|
+
logo_position?: "none" | "center" | "left" | "right" | undefined;
|
|
21461
23130
|
logo_url?: string | undefined;
|
|
21462
23131
|
social_buttons_layout?: "bottom" | "top" | undefined;
|
|
21463
23132
|
} | undefined;
|