authhero 0.246.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 +2285 -164
- package/dist/authhero.mjs +8177 -7908
- 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,78 +12977,872 @@ 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
|
-
|
|
12980
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12410
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>;
|
|
12411
12986
|
sender_email: z.ZodString;
|
|
12412
12987
|
sender_name: z.ZodString;
|
|
12413
|
-
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
|
|
12417
|
-
|
|
12418
|
-
|
|
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>;
|
|
12419
13213
|
}, "strip", z.ZodTypeAny, {
|
|
12420
|
-
name: string;
|
|
12421
13214
|
audience: string;
|
|
13215
|
+
friendly_name: string;
|
|
12422
13216
|
sender_email: string;
|
|
12423
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;
|
|
12424
13223
|
id?: string | undefined;
|
|
13224
|
+
picture_url?: string | undefined;
|
|
13225
|
+
support_email?: string | undefined;
|
|
12425
13226
|
support_url?: string | undefined;
|
|
12426
|
-
|
|
12427
|
-
|
|
12428
|
-
|
|
12429
|
-
|
|
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;
|
|
12430
13311
|
}, {
|
|
12431
|
-
name: string;
|
|
12432
13312
|
audience: string;
|
|
13313
|
+
friendly_name: string;
|
|
12433
13314
|
sender_email: string;
|
|
12434
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;
|
|
12435
13321
|
id?: string | undefined;
|
|
13322
|
+
picture_url?: string | undefined;
|
|
13323
|
+
support_email?: string | undefined;
|
|
12436
13324
|
support_url?: string | undefined;
|
|
12437
|
-
|
|
12438
|
-
|
|
12439
|
-
|
|
12440
|
-
|
|
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;
|
|
12441
13409
|
}>;
|
|
12442
13410
|
export declare const tenantSchema: z.ZodObject<{
|
|
12443
13411
|
id: z.ZodString;
|
|
12444
|
-
name: z.ZodString;
|
|
12445
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>;
|
|
12446
13417
|
sender_email: z.ZodString;
|
|
12447
13418
|
sender_name: z.ZodString;
|
|
12448
|
-
|
|
12449
|
-
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12453
|
-
|
|
12454
|
-
|
|
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>;
|
|
12455
13646
|
}, "strip", z.ZodTypeAny, {
|
|
12456
13647
|
created_at: string;
|
|
12457
13648
|
updated_at: string;
|
|
12458
|
-
name: string;
|
|
12459
13649
|
audience: string;
|
|
12460
13650
|
id: string;
|
|
13651
|
+
friendly_name: string;
|
|
12461
13652
|
sender_email: string;
|
|
12462
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;
|
|
12463
13661
|
support_url?: string | undefined;
|
|
12464
|
-
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
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;
|
|
12468
13746
|
}, {
|
|
12469
|
-
created_at: string;
|
|
12470
|
-
updated_at: string;
|
|
12471
|
-
name: string;
|
|
13747
|
+
created_at: string | null;
|
|
13748
|
+
updated_at: string | null;
|
|
12472
13749
|
audience: string;
|
|
12473
13750
|
id: string;
|
|
13751
|
+
friendly_name: string;
|
|
12474
13752
|
sender_email: string;
|
|
12475
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;
|
|
12476
13761
|
support_url?: string | undefined;
|
|
12477
|
-
|
|
12478
|
-
|
|
12479
|
-
|
|
12480
|
-
|
|
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;
|
|
12481
13846
|
}>;
|
|
12482
13847
|
export type Tenant = z.infer<typeof tenantSchema>;
|
|
12483
13848
|
export declare enum GrantType {
|
|
@@ -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
|
-
enable_introspection_endpoint?: boolean | undefined;
|
|
14387
|
-
mtls?: {
|
|
14388
|
-
bound_access_tokens?: boolean | undefined;
|
|
14389
|
-
} | undefined;
|
|
15754
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14390
15755
|
} | undefined;
|
|
14391
15756
|
created_at?: string | undefined;
|
|
14392
15757
|
updated_at?: string | undefined;
|
|
@@ -15079,6 +16444,254 @@ export declare const userOrganizationSchema: z.ZodObject<{
|
|
|
15079
16444
|
organization_id: string;
|
|
15080
16445
|
}>;
|
|
15081
16446
|
export type UserOrganization = z.infer<typeof userOrganizationSchema>;
|
|
16447
|
+
export declare const tenantSettingsSchema: z.ZodObject<{
|
|
16448
|
+
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
16449
|
+
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
16450
|
+
session_cookie: z.ZodOptional<z.ZodObject<{
|
|
16451
|
+
mode: z.ZodOptional<z.ZodEnum<[
|
|
16452
|
+
"persistent",
|
|
16453
|
+
"non-persistent"
|
|
16454
|
+
]>>;
|
|
16455
|
+
}, "strip", z.ZodTypeAny, {
|
|
16456
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
16457
|
+
}, {
|
|
16458
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
16459
|
+
}>>;
|
|
16460
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
16461
|
+
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
16462
|
+
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16463
|
+
default_directory: z.ZodOptional<z.ZodString>;
|
|
16464
|
+
error_page: z.ZodOptional<z.ZodObject<{
|
|
16465
|
+
html: z.ZodOptional<z.ZodString>;
|
|
16466
|
+
show_log_link: z.ZodOptional<z.ZodBoolean>;
|
|
16467
|
+
url: z.ZodOptional<z.ZodString>;
|
|
16468
|
+
}, "strip", z.ZodTypeAny, {
|
|
16469
|
+
url?: string | undefined;
|
|
16470
|
+
html?: string | undefined;
|
|
16471
|
+
show_log_link?: boolean | undefined;
|
|
16472
|
+
}, {
|
|
16473
|
+
url?: string | undefined;
|
|
16474
|
+
html?: string | undefined;
|
|
16475
|
+
show_log_link?: boolean | undefined;
|
|
16476
|
+
}>>;
|
|
16477
|
+
flags: z.ZodOptional<z.ZodObject<{
|
|
16478
|
+
allow_legacy_delegation_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
16479
|
+
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
16480
|
+
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
16481
|
+
disable_clickjack_protection_headers: z.ZodOptional<z.ZodBoolean>;
|
|
16482
|
+
enable_apis_section: z.ZodOptional<z.ZodBoolean>;
|
|
16483
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
16484
|
+
enable_custom_domain_in_emails: z.ZodOptional<z.ZodBoolean>;
|
|
16485
|
+
enable_dynamic_client_registration: z.ZodOptional<z.ZodBoolean>;
|
|
16486
|
+
enable_idtoken_api2: z.ZodOptional<z.ZodBoolean>;
|
|
16487
|
+
enable_legacy_logs_search_v2: z.ZodOptional<z.ZodBoolean>;
|
|
16488
|
+
enable_legacy_profile: z.ZodOptional<z.ZodBoolean>;
|
|
16489
|
+
enable_pipeline2: z.ZodOptional<z.ZodBoolean>;
|
|
16490
|
+
enable_public_signup_user_exists_error: z.ZodOptional<z.ZodBoolean>;
|
|
16491
|
+
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
16492
|
+
disable_management_api_sms_obfuscation: z.ZodOptional<z.ZodBoolean>;
|
|
16493
|
+
enable_adfs_waad_email_verification: z.ZodOptional<z.ZodBoolean>;
|
|
16494
|
+
revoke_refresh_token_grant: z.ZodOptional<z.ZodBoolean>;
|
|
16495
|
+
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
16496
|
+
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
16497
|
+
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
16498
|
+
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
16499
|
+
}, "strip", z.ZodTypeAny, {
|
|
16500
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
16501
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
16502
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16503
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16504
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
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;
|
|
16509
|
+
enable_apis_section?: boolean | undefined;
|
|
16510
|
+
enable_client_connections?: boolean | undefined;
|
|
16511
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
16512
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
16513
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
16514
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
16515
|
+
enable_legacy_profile?: boolean | undefined;
|
|
16516
|
+
enable_pipeline2?: boolean | undefined;
|
|
16517
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
16518
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16519
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16520
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
16521
|
+
}, {
|
|
16522
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
16523
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
16524
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16525
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16526
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
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;
|
|
16531
|
+
enable_apis_section?: boolean | undefined;
|
|
16532
|
+
enable_client_connections?: boolean | undefined;
|
|
16533
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
16534
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
16535
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
16536
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
16537
|
+
enable_legacy_profile?: boolean | undefined;
|
|
16538
|
+
enable_pipeline2?: boolean | undefined;
|
|
16539
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
16540
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16541
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16542
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
16543
|
+
}>>;
|
|
16544
|
+
friendly_name: z.ZodOptional<z.ZodString>;
|
|
16545
|
+
picture_url: z.ZodOptional<z.ZodString>;
|
|
16546
|
+
support_email: z.ZodOptional<z.ZodString>;
|
|
16547
|
+
support_url: z.ZodOptional<z.ZodString>;
|
|
16548
|
+
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
16549
|
+
sandbox_versions_available: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16550
|
+
change_password: z.ZodOptional<z.ZodObject<{
|
|
16551
|
+
enabled: z.ZodBoolean;
|
|
16552
|
+
html: z.ZodString;
|
|
16553
|
+
}, "strip", z.ZodTypeAny, {
|
|
16554
|
+
html: string;
|
|
16555
|
+
enabled: boolean;
|
|
16556
|
+
}, {
|
|
16557
|
+
html: string;
|
|
16558
|
+
enabled: boolean;
|
|
16559
|
+
}>>;
|
|
16560
|
+
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
16561
|
+
enabled: z.ZodBoolean;
|
|
16562
|
+
html: z.ZodString;
|
|
16563
|
+
}, "strip", z.ZodTypeAny, {
|
|
16564
|
+
html: string;
|
|
16565
|
+
enabled: boolean;
|
|
16566
|
+
}, {
|
|
16567
|
+
html: string;
|
|
16568
|
+
enabled: boolean;
|
|
16569
|
+
}>>;
|
|
16570
|
+
default_audience: z.ZodOptional<z.ZodString>;
|
|
16571
|
+
default_organization: z.ZodOptional<z.ZodString>;
|
|
16572
|
+
sessions: z.ZodOptional<z.ZodObject<{
|
|
16573
|
+
oidc_logout_prompt_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
16574
|
+
}, "strip", z.ZodTypeAny, {
|
|
16575
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
16576
|
+
}, {
|
|
16577
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
16578
|
+
}>>;
|
|
16579
|
+
}, "strip", z.ZodTypeAny, {
|
|
16580
|
+
default_organization?: string | undefined;
|
|
16581
|
+
friendly_name?: string | undefined;
|
|
16582
|
+
picture_url?: string | undefined;
|
|
16583
|
+
support_email?: string | undefined;
|
|
16584
|
+
support_url?: string | undefined;
|
|
16585
|
+
session_lifetime?: number | undefined;
|
|
16586
|
+
idle_session_lifetime?: number | undefined;
|
|
16587
|
+
session_cookie?: {
|
|
16588
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
16589
|
+
} | undefined;
|
|
16590
|
+
default_redirection_uri?: string | undefined;
|
|
16591
|
+
enabled_locales?: string[] | undefined;
|
|
16592
|
+
default_directory?: string | undefined;
|
|
16593
|
+
error_page?: {
|
|
16594
|
+
url?: string | undefined;
|
|
16595
|
+
html?: string | undefined;
|
|
16596
|
+
show_log_link?: boolean | undefined;
|
|
16597
|
+
} | undefined;
|
|
16598
|
+
enable_client_connections?: boolean | undefined;
|
|
16599
|
+
flags?: {
|
|
16600
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
16601
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
16602
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16603
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16604
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
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;
|
|
16609
|
+
enable_apis_section?: boolean | undefined;
|
|
16610
|
+
enable_client_connections?: boolean | undefined;
|
|
16611
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
16612
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
16613
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
16614
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
16615
|
+
enable_legacy_profile?: boolean | undefined;
|
|
16616
|
+
enable_pipeline2?: boolean | undefined;
|
|
16617
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
16618
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16619
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16620
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
16621
|
+
} | undefined;
|
|
16622
|
+
sandbox_version?: string | undefined;
|
|
16623
|
+
sandbox_versions_available?: string[] | undefined;
|
|
16624
|
+
change_password?: {
|
|
16625
|
+
html: string;
|
|
16626
|
+
enabled: boolean;
|
|
16627
|
+
} | undefined;
|
|
16628
|
+
guardian_mfa_page?: {
|
|
16629
|
+
html: string;
|
|
16630
|
+
enabled: boolean;
|
|
16631
|
+
} | undefined;
|
|
16632
|
+
default_audience?: string | undefined;
|
|
16633
|
+
sessions?: {
|
|
16634
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
16635
|
+
} | undefined;
|
|
16636
|
+
}, {
|
|
16637
|
+
default_organization?: string | undefined;
|
|
16638
|
+
friendly_name?: string | undefined;
|
|
16639
|
+
picture_url?: string | undefined;
|
|
16640
|
+
support_email?: string | undefined;
|
|
16641
|
+
support_url?: string | undefined;
|
|
16642
|
+
session_lifetime?: number | undefined;
|
|
16643
|
+
idle_session_lifetime?: number | undefined;
|
|
16644
|
+
session_cookie?: {
|
|
16645
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
16646
|
+
} | undefined;
|
|
16647
|
+
default_redirection_uri?: string | undefined;
|
|
16648
|
+
enabled_locales?: string[] | undefined;
|
|
16649
|
+
default_directory?: string | undefined;
|
|
16650
|
+
error_page?: {
|
|
16651
|
+
url?: string | undefined;
|
|
16652
|
+
html?: string | undefined;
|
|
16653
|
+
show_log_link?: boolean | undefined;
|
|
16654
|
+
} | undefined;
|
|
16655
|
+
enable_client_connections?: boolean | undefined;
|
|
16656
|
+
flags?: {
|
|
16657
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
16658
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
16659
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
16660
|
+
dashboard_insights_view?: boolean | undefined;
|
|
16661
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
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;
|
|
16666
|
+
enable_apis_section?: boolean | undefined;
|
|
16667
|
+
enable_client_connections?: boolean | undefined;
|
|
16668
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
16669
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
16670
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
16671
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
16672
|
+
enable_legacy_profile?: boolean | undefined;
|
|
16673
|
+
enable_pipeline2?: boolean | undefined;
|
|
16674
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
16675
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
16676
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
16677
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
16678
|
+
} | undefined;
|
|
16679
|
+
sandbox_version?: string | undefined;
|
|
16680
|
+
sandbox_versions_available?: string[] | undefined;
|
|
16681
|
+
change_password?: {
|
|
16682
|
+
html: string;
|
|
16683
|
+
enabled: boolean;
|
|
16684
|
+
} | undefined;
|
|
16685
|
+
guardian_mfa_page?: {
|
|
16686
|
+
html: string;
|
|
16687
|
+
enabled: boolean;
|
|
16688
|
+
} | undefined;
|
|
16689
|
+
default_audience?: string | undefined;
|
|
16690
|
+
sessions?: {
|
|
16691
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
16692
|
+
} | undefined;
|
|
16693
|
+
}>;
|
|
16694
|
+
export type TenantSettings = z.infer<typeof tenantSettingsSchema>;
|
|
15082
16695
|
export declare function parseUserId(user_id: string): {
|
|
15083
16696
|
connection: string;
|
|
15084
16697
|
id: string;
|
|
@@ -15158,7 +16771,7 @@ export interface SessionsAdapter {
|
|
|
15158
16771
|
remove: (tenant_id: string, id: string) => Promise<boolean>;
|
|
15159
16772
|
}
|
|
15160
16773
|
export interface CreateTenantParams {
|
|
15161
|
-
|
|
16774
|
+
friendly_name: string;
|
|
15162
16775
|
audience: string;
|
|
15163
16776
|
sender_name: string;
|
|
15164
16777
|
sender_email: string;
|
|
@@ -16532,15 +18145,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16532
18145
|
name: string;
|
|
16533
18146
|
identifier: string;
|
|
16534
18147
|
options?: {
|
|
18148
|
+
mtls?: {
|
|
18149
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18150
|
+
} | undefined;
|
|
16535
18151
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16536
18152
|
enforce_policies?: boolean | undefined | undefined;
|
|
16537
18153
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16538
18154
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16539
18155
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16540
18156
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16541
|
-
mtls?: {
|
|
16542
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16543
|
-
} | undefined;
|
|
16544
18157
|
} | undefined;
|
|
16545
18158
|
created_at?: string | undefined | undefined;
|
|
16546
18159
|
updated_at?: string | undefined | undefined;
|
|
@@ -16564,15 +18177,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16564
18177
|
name: string;
|
|
16565
18178
|
identifier: string;
|
|
16566
18179
|
options?: {
|
|
18180
|
+
mtls?: {
|
|
18181
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18182
|
+
} | undefined;
|
|
16567
18183
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16568
18184
|
enforce_policies?: boolean | undefined | undefined;
|
|
16569
18185
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16570
18186
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16571
18187
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16572
18188
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16573
|
-
mtls?: {
|
|
16574
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16575
|
-
} | undefined;
|
|
16576
18189
|
} | undefined;
|
|
16577
18190
|
created_at?: string | undefined | undefined;
|
|
16578
18191
|
updated_at?: string | undefined | undefined;
|
|
@@ -16610,15 +18223,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16610
18223
|
name: string;
|
|
16611
18224
|
identifier: string;
|
|
16612
18225
|
options?: {
|
|
18226
|
+
mtls?: {
|
|
18227
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18228
|
+
} | undefined;
|
|
16613
18229
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16614
18230
|
enforce_policies?: boolean | undefined | undefined;
|
|
16615
18231
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16616
18232
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16617
18233
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16618
18234
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16619
|
-
mtls?: {
|
|
16620
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16621
|
-
} | undefined;
|
|
16622
18235
|
} | undefined;
|
|
16623
18236
|
created_at?: string | undefined | undefined;
|
|
16624
18237
|
updated_at?: string | undefined | undefined;
|
|
@@ -16671,15 +18284,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16671
18284
|
json: {
|
|
16672
18285
|
name?: string | undefined;
|
|
16673
18286
|
options?: {
|
|
18287
|
+
mtls?: {
|
|
18288
|
+
bound_access_tokens?: boolean | undefined;
|
|
18289
|
+
} | undefined;
|
|
16674
18290
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
16675
18291
|
enforce_policies?: boolean | undefined;
|
|
16676
18292
|
allow_skipping_userinfo?: boolean | undefined;
|
|
16677
18293
|
skip_userinfo?: boolean | undefined;
|
|
16678
18294
|
persist_client_authorization?: boolean | undefined;
|
|
16679
18295
|
enable_introspection_endpoint?: boolean | undefined;
|
|
16680
|
-
mtls?: {
|
|
16681
|
-
bound_access_tokens?: boolean | undefined;
|
|
16682
|
-
} | undefined;
|
|
16683
18296
|
} | undefined;
|
|
16684
18297
|
scopes?: {
|
|
16685
18298
|
value: string;
|
|
@@ -16699,15 +18312,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16699
18312
|
name: string;
|
|
16700
18313
|
identifier: string;
|
|
16701
18314
|
options?: {
|
|
18315
|
+
mtls?: {
|
|
18316
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18317
|
+
} | undefined;
|
|
16702
18318
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16703
18319
|
enforce_policies?: boolean | undefined | undefined;
|
|
16704
18320
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16705
18321
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16706
18322
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16707
18323
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16708
|
-
mtls?: {
|
|
16709
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16710
|
-
} | undefined;
|
|
16711
18324
|
} | undefined;
|
|
16712
18325
|
created_at?: string | undefined | undefined;
|
|
16713
18326
|
updated_at?: string | undefined | undefined;
|
|
@@ -16740,15 +18353,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16740
18353
|
name: string;
|
|
16741
18354
|
identifier: string;
|
|
16742
18355
|
options?: {
|
|
18356
|
+
mtls?: {
|
|
18357
|
+
bound_access_tokens?: boolean | undefined;
|
|
18358
|
+
} | undefined;
|
|
16743
18359
|
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
16744
18360
|
enforce_policies?: boolean | undefined;
|
|
16745
18361
|
allow_skipping_userinfo?: boolean | undefined;
|
|
16746
18362
|
skip_userinfo?: boolean | undefined;
|
|
16747
18363
|
persist_client_authorization?: boolean | undefined;
|
|
16748
18364
|
enable_introspection_endpoint?: boolean | undefined;
|
|
16749
|
-
mtls?: {
|
|
16750
|
-
bound_access_tokens?: boolean | undefined;
|
|
16751
|
-
} | undefined;
|
|
16752
18365
|
} | undefined;
|
|
16753
18366
|
scopes?: {
|
|
16754
18367
|
value: string;
|
|
@@ -16767,15 +18380,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16767
18380
|
name: string;
|
|
16768
18381
|
identifier: string;
|
|
16769
18382
|
options?: {
|
|
18383
|
+
mtls?: {
|
|
18384
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
18385
|
+
} | undefined;
|
|
16770
18386
|
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
16771
18387
|
enforce_policies?: boolean | undefined | undefined;
|
|
16772
18388
|
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
16773
18389
|
skip_userinfo?: boolean | undefined | undefined;
|
|
16774
18390
|
persist_client_authorization?: boolean | undefined | undefined;
|
|
16775
18391
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
16776
|
-
mtls?: {
|
|
16777
|
-
bound_access_tokens?: boolean | undefined | undefined;
|
|
16778
|
-
} | undefined;
|
|
16779
18392
|
} | undefined;
|
|
16780
18393
|
created_at?: string | undefined | undefined;
|
|
16781
18394
|
updated_at?: string | undefined | undefined;
|
|
@@ -18043,6 +19656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18043
19656
|
updated_at: string;
|
|
18044
19657
|
user_id: string;
|
|
18045
19658
|
id: string;
|
|
19659
|
+
clients: string[];
|
|
18046
19660
|
login_session_id: string;
|
|
18047
19661
|
device: {
|
|
18048
19662
|
last_ip: string;
|
|
@@ -18052,7 +19666,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18052
19666
|
last_user_agent: string;
|
|
18053
19667
|
last_asn: string;
|
|
18054
19668
|
};
|
|
18055
|
-
clients: string[];
|
|
18056
19669
|
authenticated_at: string;
|
|
18057
19670
|
last_interaction_at: string;
|
|
18058
19671
|
expires_at?: string | undefined | undefined;
|
|
@@ -18449,16 +20062,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18449
20062
|
created_at: string;
|
|
18450
20063
|
updated_at: string;
|
|
18451
20064
|
url: string;
|
|
18452
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18453
20065
|
enabled: boolean;
|
|
20066
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18454
20067
|
synchronous: boolean;
|
|
18455
20068
|
hook_id: string;
|
|
18456
20069
|
priority?: number | undefined | undefined;
|
|
18457
20070
|
} | {
|
|
18458
20071
|
created_at: string;
|
|
18459
20072
|
updated_at: string;
|
|
18460
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18461
20073
|
enabled: boolean;
|
|
20074
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18462
20075
|
synchronous: boolean;
|
|
18463
20076
|
hook_id: string;
|
|
18464
20077
|
form_id: string;
|
|
@@ -18471,16 +20084,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18471
20084
|
created_at: string;
|
|
18472
20085
|
updated_at: string;
|
|
18473
20086
|
url: string;
|
|
18474
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18475
20087
|
enabled: boolean;
|
|
20088
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18476
20089
|
synchronous: boolean;
|
|
18477
20090
|
hook_id: string;
|
|
18478
20091
|
priority?: number | undefined | undefined;
|
|
18479
20092
|
} | {
|
|
18480
20093
|
created_at: string;
|
|
18481
20094
|
updated_at: string;
|
|
18482
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18483
20095
|
enabled: boolean;
|
|
20096
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18484
20097
|
synchronous: boolean;
|
|
18485
20098
|
hook_id: string;
|
|
18486
20099
|
form_id: string;
|
|
@@ -18519,16 +20132,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18519
20132
|
created_at: string;
|
|
18520
20133
|
updated_at: string;
|
|
18521
20134
|
url: string;
|
|
18522
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18523
20135
|
enabled: boolean;
|
|
20136
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18524
20137
|
synchronous: boolean;
|
|
18525
20138
|
hook_id: string;
|
|
18526
20139
|
priority?: number | undefined | undefined;
|
|
18527
20140
|
} | {
|
|
18528
20141
|
created_at: string;
|
|
18529
20142
|
updated_at: string;
|
|
18530
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18531
20143
|
enabled: boolean;
|
|
20144
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18532
20145
|
synchronous: boolean;
|
|
18533
20146
|
hook_id: string;
|
|
18534
20147
|
form_id: string;
|
|
@@ -18552,13 +20165,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18552
20165
|
} & {
|
|
18553
20166
|
json: {
|
|
18554
20167
|
url?: string | undefined;
|
|
18555
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18556
20168
|
enabled?: boolean | undefined;
|
|
20169
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18557
20170
|
synchronous?: boolean | undefined;
|
|
18558
20171
|
priority?: number | undefined;
|
|
18559
20172
|
} | {
|
|
18560
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18561
20173
|
enabled?: boolean | undefined;
|
|
20174
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18562
20175
|
synchronous?: boolean | undefined;
|
|
18563
20176
|
priority?: number | undefined;
|
|
18564
20177
|
form_id?: string | undefined;
|
|
@@ -18579,13 +20192,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18579
20192
|
} & {
|
|
18580
20193
|
json: {
|
|
18581
20194
|
url?: string | undefined;
|
|
18582
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18583
20195
|
enabled?: boolean | undefined;
|
|
20196
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18584
20197
|
synchronous?: boolean | undefined;
|
|
18585
20198
|
priority?: number | undefined;
|
|
18586
20199
|
} | {
|
|
18587
|
-
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18588
20200
|
enabled?: boolean | undefined;
|
|
20201
|
+
trigger_id?: "pre-user-signup" | "post-user-registration" | "post-user-login" | undefined;
|
|
18589
20202
|
synchronous?: boolean | undefined;
|
|
18590
20203
|
priority?: number | undefined;
|
|
18591
20204
|
form_id?: string | undefined;
|
|
@@ -18595,16 +20208,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18595
20208
|
created_at: string;
|
|
18596
20209
|
updated_at: string;
|
|
18597
20210
|
url: string;
|
|
18598
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18599
20211
|
enabled: boolean;
|
|
20212
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18600
20213
|
synchronous: boolean;
|
|
18601
20214
|
hook_id: string;
|
|
18602
20215
|
priority?: number | undefined | undefined;
|
|
18603
20216
|
} | {
|
|
18604
20217
|
created_at: string;
|
|
18605
20218
|
updated_at: string;
|
|
18606
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18607
20219
|
enabled: boolean;
|
|
20220
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18608
20221
|
synchronous: boolean;
|
|
18609
20222
|
hook_id: string;
|
|
18610
20223
|
form_id: string;
|
|
@@ -18643,16 +20256,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18643
20256
|
created_at: string;
|
|
18644
20257
|
updated_at: string;
|
|
18645
20258
|
url: string;
|
|
18646
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18647
20259
|
enabled: boolean;
|
|
20260
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18648
20261
|
synchronous: boolean;
|
|
18649
20262
|
hook_id: string;
|
|
18650
20263
|
priority?: number | undefined | undefined;
|
|
18651
20264
|
} | {
|
|
18652
20265
|
created_at: string;
|
|
18653
20266
|
updated_at: string;
|
|
18654
|
-
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18655
20267
|
enabled: boolean;
|
|
20268
|
+
trigger_id: "pre-user-signup" | "post-user-registration" | "post-user-login";
|
|
18656
20269
|
synchronous: boolean;
|
|
18657
20270
|
hook_id: string;
|
|
18658
20271
|
form_id: string;
|
|
@@ -18807,6 +20420,340 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18807
20420
|
};
|
|
18808
20421
|
};
|
|
18809
20422
|
}, "/logs"> & import("hono/types").MergeSchemaPath<{
|
|
20423
|
+
"/settings": {
|
|
20424
|
+
$get: {
|
|
20425
|
+
input: {
|
|
20426
|
+
header: {
|
|
20427
|
+
"tenant-id": string;
|
|
20428
|
+
};
|
|
20429
|
+
};
|
|
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;
|
|
20442
|
+
default_organization?: string | undefined | undefined;
|
|
20443
|
+
picture_url?: string | undefined | undefined;
|
|
20444
|
+
support_email?: string | undefined | undefined;
|
|
20445
|
+
support_url?: string | undefined | undefined;
|
|
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;
|
|
20450
|
+
session_cookie?: {
|
|
20451
|
+
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
20452
|
+
} | undefined;
|
|
20453
|
+
default_redirection_uri?: string | undefined | undefined;
|
|
20454
|
+
enabled_locales?: string[] | undefined | undefined;
|
|
20455
|
+
default_directory?: string | undefined | undefined;
|
|
20456
|
+
error_page?: {
|
|
20457
|
+
url?: string | undefined | undefined;
|
|
20458
|
+
html?: string | undefined | undefined;
|
|
20459
|
+
show_log_link?: boolean | undefined | undefined;
|
|
20460
|
+
} | undefined;
|
|
20461
|
+
flags?: {
|
|
20462
|
+
allow_changing_enable_sso?: boolean | undefined | undefined;
|
|
20463
|
+
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
20464
|
+
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
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;
|
|
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;
|
|
20475
|
+
enable_apis_section?: boolean | undefined | undefined;
|
|
20476
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
20477
|
+
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
20478
|
+
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
20479
|
+
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
20480
|
+
enable_legacy_logs_search_v2?: boolean | undefined | undefined;
|
|
20481
|
+
enable_legacy_profile?: boolean | undefined | undefined;
|
|
20482
|
+
enable_pipeline2?: boolean | undefined | undefined;
|
|
20483
|
+
enable_public_signup_user_exists_error?: 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;
|
|
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;
|
|
20494
|
+
} | undefined;
|
|
20495
|
+
sandbox_version?: string | undefined | undefined;
|
|
20496
|
+
legacy_sandbox_version?: string | undefined | undefined;
|
|
20497
|
+
sandbox_versions_available?: string[] | undefined | undefined;
|
|
20498
|
+
change_password?: {
|
|
20499
|
+
html?: string | undefined | undefined;
|
|
20500
|
+
enabled?: boolean | undefined | undefined;
|
|
20501
|
+
} | undefined;
|
|
20502
|
+
guardian_mfa_page?: {
|
|
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;
|
|
20521
|
+
} | undefined;
|
|
20522
|
+
default_audience?: string | undefined | undefined;
|
|
20523
|
+
sessions?: {
|
|
20524
|
+
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
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;
|
|
20534
|
+
};
|
|
20535
|
+
outputFormat: "json";
|
|
20536
|
+
status: 200;
|
|
20537
|
+
};
|
|
20538
|
+
};
|
|
20539
|
+
} & {
|
|
20540
|
+
"/settings": {
|
|
20541
|
+
$patch: {
|
|
20542
|
+
input: {
|
|
20543
|
+
header: {
|
|
20544
|
+
"tenant-id": string;
|
|
20545
|
+
};
|
|
20546
|
+
} & {
|
|
20547
|
+
json: {
|
|
20548
|
+
id?: string | undefined;
|
|
20549
|
+
audience?: string | undefined;
|
|
20550
|
+
sessions?: {
|
|
20551
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
20552
|
+
} | undefined;
|
|
20553
|
+
allowed_logout_urls?: string[] | undefined;
|
|
20554
|
+
oidc_logout?: {
|
|
20555
|
+
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
20556
|
+
} | undefined;
|
|
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;
|
|
20563
|
+
support_url?: string | undefined;
|
|
20564
|
+
session_lifetime?: number | undefined;
|
|
20565
|
+
idle_session_lifetime?: number | undefined;
|
|
20566
|
+
ephemeral_session_lifetime?: number | undefined;
|
|
20567
|
+
idle_ephemeral_session_lifetime?: number | undefined;
|
|
20568
|
+
session_cookie?: {
|
|
20569
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
20570
|
+
} | undefined;
|
|
20571
|
+
default_redirection_uri?: string | undefined;
|
|
20572
|
+
enabled_locales?: string[] | undefined;
|
|
20573
|
+
default_directory?: string | undefined;
|
|
20574
|
+
error_page?: {
|
|
20575
|
+
url?: string | undefined;
|
|
20576
|
+
html?: string | undefined;
|
|
20577
|
+
show_log_link?: boolean | undefined;
|
|
20578
|
+
} | undefined;
|
|
20579
|
+
flags?: {
|
|
20580
|
+
allow_changing_enable_sso?: boolean | undefined;
|
|
20581
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
20582
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
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;
|
|
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;
|
|
20593
|
+
enable_apis_section?: boolean | undefined;
|
|
20594
|
+
enable_client_connections?: boolean | undefined;
|
|
20595
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
20596
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
20597
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
20598
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
20599
|
+
enable_legacy_profile?: boolean | undefined;
|
|
20600
|
+
enable_pipeline2?: boolean | undefined;
|
|
20601
|
+
enable_public_signup_user_exists_error?: 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;
|
|
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;
|
|
20612
|
+
} | undefined;
|
|
20613
|
+
sandbox_version?: string | undefined;
|
|
20614
|
+
legacy_sandbox_version?: string | undefined;
|
|
20615
|
+
sandbox_versions_available?: string[] | undefined;
|
|
20616
|
+
change_password?: {
|
|
20617
|
+
html?: string | undefined;
|
|
20618
|
+
enabled?: boolean | undefined;
|
|
20619
|
+
} | undefined;
|
|
20620
|
+
guardian_mfa_page?: {
|
|
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;
|
|
20635
|
+
} | undefined;
|
|
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;
|
|
20645
|
+
};
|
|
20646
|
+
};
|
|
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;
|
|
20659
|
+
default_organization?: string | undefined | undefined;
|
|
20660
|
+
picture_url?: string | undefined | undefined;
|
|
20661
|
+
support_email?: string | undefined | undefined;
|
|
20662
|
+
support_url?: string | undefined | undefined;
|
|
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;
|
|
20667
|
+
session_cookie?: {
|
|
20668
|
+
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
20669
|
+
} | undefined;
|
|
20670
|
+
default_redirection_uri?: string | undefined | undefined;
|
|
20671
|
+
enabled_locales?: string[] | undefined | undefined;
|
|
20672
|
+
default_directory?: string | undefined | undefined;
|
|
20673
|
+
error_page?: {
|
|
20674
|
+
url?: string | undefined | undefined;
|
|
20675
|
+
html?: string | undefined | undefined;
|
|
20676
|
+
show_log_link?: boolean | undefined | undefined;
|
|
20677
|
+
} | undefined;
|
|
20678
|
+
flags?: {
|
|
20679
|
+
allow_changing_enable_sso?: boolean | undefined | undefined;
|
|
20680
|
+
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
20681
|
+
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
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;
|
|
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;
|
|
20692
|
+
enable_apis_section?: boolean | undefined | undefined;
|
|
20693
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
20694
|
+
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
20695
|
+
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
20696
|
+
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
20697
|
+
enable_legacy_logs_search_v2?: boolean | undefined | undefined;
|
|
20698
|
+
enable_legacy_profile?: boolean | undefined | undefined;
|
|
20699
|
+
enable_pipeline2?: boolean | undefined | undefined;
|
|
20700
|
+
enable_public_signup_user_exists_error?: 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;
|
|
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;
|
|
20711
|
+
} | undefined;
|
|
20712
|
+
sandbox_version?: string | undefined | undefined;
|
|
20713
|
+
legacy_sandbox_version?: string | undefined | undefined;
|
|
20714
|
+
sandbox_versions_available?: string[] | undefined | undefined;
|
|
20715
|
+
change_password?: {
|
|
20716
|
+
html?: string | undefined | undefined;
|
|
20717
|
+
enabled?: boolean | undefined | undefined;
|
|
20718
|
+
} | undefined;
|
|
20719
|
+
guardian_mfa_page?: {
|
|
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;
|
|
20738
|
+
} | undefined;
|
|
20739
|
+
default_audience?: string | undefined | undefined;
|
|
20740
|
+
sessions?: {
|
|
20741
|
+
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
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;
|
|
20751
|
+
};
|
|
20752
|
+
outputFormat: "json";
|
|
20753
|
+
status: 200;
|
|
20754
|
+
};
|
|
20755
|
+
};
|
|
20756
|
+
} & {
|
|
18810
20757
|
"/": {
|
|
18811
20758
|
$get: {
|
|
18812
20759
|
input: {
|
|
@@ -18858,16 +20805,103 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18858
20805
|
};
|
|
18859
20806
|
} & {
|
|
18860
20807
|
json: {
|
|
18861
|
-
name?: string | undefined;
|
|
18862
20808
|
id?: string | undefined;
|
|
18863
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;
|
|
18864
20819
|
sender_email?: string | undefined;
|
|
18865
20820
|
sender_name?: string | undefined;
|
|
20821
|
+
picture_url?: string | undefined;
|
|
20822
|
+
support_email?: string | undefined;
|
|
18866
20823
|
support_url?: string | undefined;
|
|
18867
|
-
|
|
18868
|
-
|
|
18869
|
-
|
|
18870
|
-
|
|
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;
|
|
18871
20905
|
};
|
|
18872
20906
|
};
|
|
18873
20907
|
output: {};
|
|
@@ -18880,16 +20914,103 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18880
20914
|
$post: {
|
|
18881
20915
|
input: {
|
|
18882
20916
|
json: {
|
|
18883
|
-
name: string;
|
|
18884
20917
|
audience: string;
|
|
20918
|
+
friendly_name: string;
|
|
18885
20919
|
sender_email: string;
|
|
18886
20920
|
sender_name: string;
|
|
18887
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;
|
|
18888
20932
|
support_url?: string | undefined;
|
|
18889
|
-
|
|
18890
|
-
|
|
18891
|
-
|
|
18892
|
-
|
|
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;
|
|
18893
21014
|
};
|
|
18894
21015
|
};
|
|
18895
21016
|
output: Response;
|
|
@@ -20191,6 +22312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20191
22312
|
updated_at: string;
|
|
20192
22313
|
user_id: string;
|
|
20193
22314
|
id: string;
|
|
22315
|
+
clients: string[];
|
|
20194
22316
|
login_session_id: string;
|
|
20195
22317
|
device: {
|
|
20196
22318
|
last_ip: string;
|
|
@@ -20200,7 +22322,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20200
22322
|
last_user_agent: string;
|
|
20201
22323
|
last_asn: string;
|
|
20202
22324
|
};
|
|
20203
|
-
clients: string[];
|
|
20204
22325
|
authenticated_at: string;
|
|
20205
22326
|
last_interaction_at: string;
|
|
20206
22327
|
expires_at?: string | undefined | undefined;
|
|
@@ -20216,6 +22337,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20216
22337
|
updated_at: string;
|
|
20217
22338
|
user_id: string;
|
|
20218
22339
|
id: string;
|
|
22340
|
+
clients: string[];
|
|
20219
22341
|
login_session_id: string;
|
|
20220
22342
|
device: {
|
|
20221
22343
|
last_ip: string;
|
|
@@ -20225,7 +22347,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20225
22347
|
last_user_agent: string;
|
|
20226
22348
|
last_asn: string;
|
|
20227
22349
|
};
|
|
20228
|
-
clients: string[];
|
|
20229
22350
|
authenticated_at: string;
|
|
20230
22351
|
last_interaction_at: string;
|
|
20231
22352
|
expires_at?: string | undefined | undefined;
|
|
@@ -20556,9 +22677,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20556
22677
|
clientId: string;
|
|
20557
22678
|
clientSecret: string;
|
|
20558
22679
|
};
|
|
22680
|
+
settings?: {} | undefined;
|
|
20559
22681
|
enabled?: boolean | undefined;
|
|
20560
22682
|
default_from_address?: string | undefined;
|
|
20561
|
-
settings?: {} | undefined;
|
|
20562
22683
|
};
|
|
20563
22684
|
};
|
|
20564
22685
|
output: {};
|
|
@@ -20576,6 +22697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20576
22697
|
} & {
|
|
20577
22698
|
json: {
|
|
20578
22699
|
name?: string | undefined;
|
|
22700
|
+
settings?: {} | undefined;
|
|
20579
22701
|
enabled?: boolean | undefined;
|
|
20580
22702
|
credentials?: {
|
|
20581
22703
|
accessKeyId: string;
|
|
@@ -20597,7 +22719,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
20597
22719
|
clientSecret: string;
|
|
20598
22720
|
} | undefined;
|
|
20599
22721
|
default_from_address?: string | undefined;
|
|
20600
|
-
settings?: {} | undefined;
|
|
20601
22722
|
};
|
|
20602
22723
|
};
|
|
20603
22724
|
output: {};
|
|
@@ -21005,7 +23126,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
21005
23126
|
widget?: {
|
|
21006
23127
|
header_text_alignment?: "center" | "left" | "right" | undefined;
|
|
21007
23128
|
logo_height?: number | undefined;
|
|
21008
|
-
logo_position?: "
|
|
23129
|
+
logo_position?: "none" | "center" | "left" | "right" | undefined;
|
|
21009
23130
|
logo_url?: string | undefined;
|
|
21010
23131
|
social_buttons_layout?: "bottom" | "top" | undefined;
|
|
21011
23132
|
} | undefined;
|