authhero 4.109.0 → 4.110.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/assets/u/js/client.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +182 -159
- package/dist/authhero.d.ts +192 -75
- package/dist/authhero.mjs +11394 -11093
- package/dist/client.js +1 -1
- package/dist/stats.html +1 -1
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -27,13 +27,13 @@ export declare const actionDependencySchema: z.ZodObject<{
|
|
|
27
27
|
}>;
|
|
28
28
|
export declare const actionSecretSchema: z.ZodObject<{
|
|
29
29
|
name: z.ZodString;
|
|
30
|
-
value: z.ZodString
|
|
30
|
+
value: z.ZodOptional<z.ZodString>;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
-
value: string;
|
|
33
32
|
name: string;
|
|
33
|
+
value?: string | undefined;
|
|
34
34
|
}, {
|
|
35
|
-
value: string;
|
|
36
35
|
name: string;
|
|
36
|
+
value?: string | undefined;
|
|
37
37
|
}>;
|
|
38
38
|
export declare const actionInsertSchema: z.ZodObject<{
|
|
39
39
|
name: z.ZodString;
|
|
@@ -61,13 +61,13 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
61
61
|
}>, "many">>;
|
|
62
62
|
secrets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
63
63
|
name: z.ZodString;
|
|
64
|
-
value: z.ZodString
|
|
64
|
+
value: z.ZodOptional<z.ZodString>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
-
value: string;
|
|
67
66
|
name: string;
|
|
67
|
+
value?: string | undefined;
|
|
68
68
|
}, {
|
|
69
|
-
value: string;
|
|
70
69
|
name: string;
|
|
70
|
+
value?: string | undefined;
|
|
71
71
|
}>, "many">>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
73
|
code: string;
|
|
@@ -82,8 +82,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
82
82
|
name: string;
|
|
83
83
|
}[] | undefined;
|
|
84
84
|
secrets?: {
|
|
85
|
-
value: string;
|
|
86
85
|
name: string;
|
|
86
|
+
value?: string | undefined;
|
|
87
87
|
}[] | undefined;
|
|
88
88
|
}, {
|
|
89
89
|
code: string;
|
|
@@ -98,8 +98,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
98
98
|
name: string;
|
|
99
99
|
}[] | undefined;
|
|
100
100
|
secrets?: {
|
|
101
|
-
value: string;
|
|
102
101
|
name: string;
|
|
102
|
+
value?: string | undefined;
|
|
103
103
|
}[] | undefined;
|
|
104
104
|
}>;
|
|
105
105
|
export type ActionInsert = z.infer<typeof actionInsertSchema>;
|
|
@@ -129,13 +129,13 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
129
129
|
}>, "many">>>;
|
|
130
130
|
secrets: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131
131
|
name: z.ZodString;
|
|
132
|
-
value: z.ZodString
|
|
132
|
+
value: z.ZodOptional<z.ZodString>;
|
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
|
134
|
-
value: string;
|
|
135
134
|
name: string;
|
|
135
|
+
value?: string | undefined;
|
|
136
136
|
}, {
|
|
137
|
-
value: string;
|
|
138
137
|
name: string;
|
|
138
|
+
value?: string | undefined;
|
|
139
139
|
}>, "many">>>;
|
|
140
140
|
} & {
|
|
141
141
|
status: z.ZodOptional<z.ZodEnum<[
|
|
@@ -157,8 +157,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
157
157
|
name: string;
|
|
158
158
|
}[] | undefined;
|
|
159
159
|
secrets?: {
|
|
160
|
-
value: string;
|
|
161
160
|
name: string;
|
|
161
|
+
value?: string | undefined;
|
|
162
162
|
}[] | undefined;
|
|
163
163
|
deployed_at?: string | undefined;
|
|
164
164
|
}, {
|
|
@@ -175,8 +175,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
175
175
|
name: string;
|
|
176
176
|
}[] | undefined;
|
|
177
177
|
secrets?: {
|
|
178
|
-
value: string;
|
|
179
178
|
name: string;
|
|
179
|
+
value?: string | undefined;
|
|
180
180
|
}[] | undefined;
|
|
181
181
|
deployed_at?: string | undefined;
|
|
182
182
|
}>;
|
|
@@ -43846,6 +43846,7 @@ export declare const LogTypes: {
|
|
|
43846
43846
|
readonly SUCCESSFULLY_ACCEPTED_USER_INVITE: "si";
|
|
43847
43847
|
readonly BREACHED_PASSWORD_ON_SIGNUP: "signup_pwd_leak";
|
|
43848
43848
|
readonly SUCCESS_LOGOUT: "slo";
|
|
43849
|
+
readonly SUCCESS_HOOK: "sh";
|
|
43849
43850
|
readonly SUCCESS_REVOCATION: "srrt";
|
|
43850
43851
|
readonly SUCCESS_SIGNUP: "ss";
|
|
43851
43852
|
readonly FAILED_SS_SSO_OPERATION: "ss_sso_failure";
|
|
@@ -43911,7 +43912,7 @@ export declare const LocationInfo: z.ZodObject<{
|
|
|
43911
43912
|
continent_code: string;
|
|
43912
43913
|
}>;
|
|
43913
43914
|
export declare const logInsertSchema: z.ZodObject<{
|
|
43914
|
-
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
43915
|
+
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
43915
43916
|
date: z.ZodString;
|
|
43916
43917
|
description: z.ZodOptional<z.ZodString>;
|
|
43917
43918
|
ip: z.ZodOptional<z.ZodString>;
|
|
@@ -43976,7 +43977,7 @@ export declare const logInsertSchema: z.ZodObject<{
|
|
|
43976
43977
|
continent_code: string;
|
|
43977
43978
|
}>>;
|
|
43978
43979
|
}, "strip", z.ZodTypeAny, {
|
|
43979
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
43980
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
43980
43981
|
date: string;
|
|
43981
43982
|
isMobile: boolean;
|
|
43982
43983
|
description?: string | undefined;
|
|
@@ -44049,7 +44050,7 @@ export declare const logInsertSchema: z.ZodObject<{
|
|
|
44049
44050
|
export type LogInsert = z.infer<typeof logInsertSchema>;
|
|
44050
44051
|
export declare const logSchema: z.ZodObject<{
|
|
44051
44052
|
log_id: z.ZodString;
|
|
44052
|
-
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
44053
|
+
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
44053
44054
|
date: z.ZodString;
|
|
44054
44055
|
description: z.ZodOptional<z.ZodString>;
|
|
44055
44056
|
ip: z.ZodOptional<z.ZodString>;
|
|
@@ -44113,7 +44114,7 @@ export declare const logSchema: z.ZodObject<{
|
|
|
44113
44114
|
continent_code: string;
|
|
44114
44115
|
}>>;
|
|
44115
44116
|
}, "strip", z.ZodTypeAny, {
|
|
44116
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
44117
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
44117
44118
|
date: string;
|
|
44118
44119
|
isMobile: boolean;
|
|
44119
44120
|
log_id: string;
|
|
@@ -44977,6 +44978,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
44977
44978
|
}>>;
|
|
44978
44979
|
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44979
44980
|
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
44981
|
+
default_client_id: z.ZodOptional<z.ZodString>;
|
|
44980
44982
|
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44981
44983
|
default_directory: z.ZodOptional<z.ZodString>;
|
|
44982
44984
|
error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -45567,6 +45569,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
45567
45569
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
45568
45570
|
} | undefined;
|
|
45569
45571
|
default_redirection_uri?: string | undefined;
|
|
45572
|
+
default_client_id?: string | undefined;
|
|
45570
45573
|
enabled_locales?: string[] | undefined;
|
|
45571
45574
|
default_directory?: string | undefined;
|
|
45572
45575
|
error_page?: {
|
|
@@ -45732,6 +45735,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
45732
45735
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
45733
45736
|
} | undefined;
|
|
45734
45737
|
default_redirection_uri?: string | undefined;
|
|
45738
|
+
default_client_id?: string | undefined;
|
|
45735
45739
|
enabled_locales?: string[] | undefined;
|
|
45736
45740
|
default_directory?: string | undefined;
|
|
45737
45741
|
error_page?: {
|
|
@@ -45901,6 +45905,7 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
45901
45905
|
}>>;
|
|
45902
45906
|
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
45903
45907
|
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
45908
|
+
default_client_id: z.ZodOptional<z.ZodString>;
|
|
45904
45909
|
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
45905
45910
|
default_directory: z.ZodOptional<z.ZodString>;
|
|
45906
45911
|
error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -46495,6 +46500,7 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
46495
46500
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
46496
46501
|
} | undefined;
|
|
46497
46502
|
default_redirection_uri?: string | undefined;
|
|
46503
|
+
default_client_id?: string | undefined;
|
|
46498
46504
|
enabled_locales?: string[] | undefined;
|
|
46499
46505
|
default_directory?: string | undefined;
|
|
46500
46506
|
error_page?: {
|
|
@@ -46662,6 +46668,7 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
46662
46668
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
46663
46669
|
} | undefined;
|
|
46664
46670
|
default_redirection_uri?: string | undefined;
|
|
46671
|
+
default_client_id?: string | undefined;
|
|
46665
46672
|
enabled_locales?: string[] | undefined;
|
|
46666
46673
|
default_directory?: string | undefined;
|
|
46667
46674
|
error_page?: {
|
|
@@ -47098,14 +47105,29 @@ export declare const pageBackgroundSchema: z.ZodObject<{
|
|
|
47098
47105
|
"left",
|
|
47099
47106
|
"right"
|
|
47100
47107
|
]>;
|
|
47108
|
+
/**
|
|
47109
|
+
* Where the tenant logo renders on the page.
|
|
47110
|
+
* - "widget" (default): inside the widget card via the widget's own header.
|
|
47111
|
+
* - "chip": as a floating pill in the top-left page corner. The widget's
|
|
47112
|
+
* internal logo is suppressed when this is selected.
|
|
47113
|
+
* - "none": no logo on the page or in the widget.
|
|
47114
|
+
* Optional for backwards compatibility; absent values mean "widget".
|
|
47115
|
+
*/
|
|
47116
|
+
logo_placement: z.ZodOptional<z.ZodEnum<[
|
|
47117
|
+
"widget",
|
|
47118
|
+
"chip",
|
|
47119
|
+
"none"
|
|
47120
|
+
]>>;
|
|
47101
47121
|
}, "strip", z.ZodTypeAny, {
|
|
47102
47122
|
background_color: string;
|
|
47103
47123
|
background_image_url: string;
|
|
47104
47124
|
page_layout: "center" | "left" | "right";
|
|
47125
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47105
47126
|
}, {
|
|
47106
47127
|
background_color: string;
|
|
47107
47128
|
background_image_url: string;
|
|
47108
47129
|
page_layout: "center" | "left" | "right";
|
|
47130
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47109
47131
|
}>;
|
|
47110
47132
|
export declare const widgetSchema: z.ZodObject<{
|
|
47111
47133
|
header_text_alignment: z.ZodEnum<[
|
|
@@ -47376,14 +47398,29 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47376
47398
|
"left",
|
|
47377
47399
|
"right"
|
|
47378
47400
|
]>;
|
|
47401
|
+
/**
|
|
47402
|
+
* Where the tenant logo renders on the page.
|
|
47403
|
+
* - "widget" (default): inside the widget card via the widget's own header.
|
|
47404
|
+
* - "chip": as a floating pill in the top-left page corner. The widget's
|
|
47405
|
+
* internal logo is suppressed when this is selected.
|
|
47406
|
+
* - "none": no logo on the page or in the widget.
|
|
47407
|
+
* Optional for backwards compatibility; absent values mean "widget".
|
|
47408
|
+
*/
|
|
47409
|
+
logo_placement: z.ZodOptional<z.ZodEnum<[
|
|
47410
|
+
"widget",
|
|
47411
|
+
"chip",
|
|
47412
|
+
"none"
|
|
47413
|
+
]>>;
|
|
47379
47414
|
}, "strip", z.ZodTypeAny, {
|
|
47380
47415
|
background_color: string;
|
|
47381
47416
|
background_image_url: string;
|
|
47382
47417
|
page_layout: "center" | "left" | "right";
|
|
47418
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47383
47419
|
}, {
|
|
47384
47420
|
background_color: string;
|
|
47385
47421
|
background_image_url: string;
|
|
47386
47422
|
page_layout: "center" | "left" | "right";
|
|
47423
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47387
47424
|
}>;
|
|
47388
47425
|
widget: z.ZodObject<{
|
|
47389
47426
|
header_text_alignment: z.ZodEnum<[
|
|
@@ -47421,6 +47458,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47421
47458
|
background_color: string;
|
|
47422
47459
|
background_image_url: string;
|
|
47423
47460
|
page_layout: "center" | "left" | "right";
|
|
47461
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47424
47462
|
};
|
|
47425
47463
|
colors: {
|
|
47426
47464
|
error: string;
|
|
@@ -47443,6 +47481,13 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47443
47481
|
widget_background: string;
|
|
47444
47482
|
widget_border: string;
|
|
47445
47483
|
};
|
|
47484
|
+
widget: {
|
|
47485
|
+
logo_url: string;
|
|
47486
|
+
header_text_alignment: "center" | "left" | "right";
|
|
47487
|
+
logo_height: number;
|
|
47488
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
47489
|
+
social_buttons_layout: "bottom" | "top";
|
|
47490
|
+
};
|
|
47446
47491
|
borders: {
|
|
47447
47492
|
button_border_radius: number;
|
|
47448
47493
|
button_border_weight: number;
|
|
@@ -47484,18 +47529,12 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47484
47529
|
bold: boolean;
|
|
47485
47530
|
};
|
|
47486
47531
|
};
|
|
47487
|
-
widget: {
|
|
47488
|
-
logo_url: string;
|
|
47489
|
-
header_text_alignment: "center" | "left" | "right";
|
|
47490
|
-
logo_height: number;
|
|
47491
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
47492
|
-
social_buttons_layout: "bottom" | "top";
|
|
47493
|
-
};
|
|
47494
47532
|
}, {
|
|
47495
47533
|
page_background: {
|
|
47496
47534
|
background_color: string;
|
|
47497
47535
|
background_image_url: string;
|
|
47498
47536
|
page_layout: "center" | "left" | "right";
|
|
47537
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47499
47538
|
};
|
|
47500
47539
|
colors: {
|
|
47501
47540
|
error: string;
|
|
@@ -47518,6 +47557,13 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47518
47557
|
widget_background: string;
|
|
47519
47558
|
widget_border: string;
|
|
47520
47559
|
};
|
|
47560
|
+
widget: {
|
|
47561
|
+
logo_url: string;
|
|
47562
|
+
header_text_alignment: "center" | "left" | "right";
|
|
47563
|
+
logo_height: number;
|
|
47564
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
47565
|
+
social_buttons_layout: "bottom" | "top";
|
|
47566
|
+
};
|
|
47521
47567
|
borders: {
|
|
47522
47568
|
button_border_radius: number;
|
|
47523
47569
|
button_border_weight: number;
|
|
@@ -47559,13 +47605,6 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
47559
47605
|
bold: boolean;
|
|
47560
47606
|
};
|
|
47561
47607
|
};
|
|
47562
|
-
widget: {
|
|
47563
|
-
logo_url: string;
|
|
47564
|
-
header_text_alignment: "center" | "left" | "right";
|
|
47565
|
-
logo_height: number;
|
|
47566
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
47567
|
-
social_buttons_layout: "bottom" | "top";
|
|
47568
|
-
};
|
|
47569
47608
|
}>;
|
|
47570
47609
|
export type ThemeInsert = z.input<typeof themeInsertSchema>;
|
|
47571
47610
|
export declare const themeSchema: z.ZodObject<{
|
|
@@ -47806,14 +47845,29 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47806
47845
|
"left",
|
|
47807
47846
|
"right"
|
|
47808
47847
|
]>;
|
|
47848
|
+
/**
|
|
47849
|
+
* Where the tenant logo renders on the page.
|
|
47850
|
+
* - "widget" (default): inside the widget card via the widget's own header.
|
|
47851
|
+
* - "chip": as a floating pill in the top-left page corner. The widget's
|
|
47852
|
+
* internal logo is suppressed when this is selected.
|
|
47853
|
+
* - "none": no logo on the page or in the widget.
|
|
47854
|
+
* Optional for backwards compatibility; absent values mean "widget".
|
|
47855
|
+
*/
|
|
47856
|
+
logo_placement: z.ZodOptional<z.ZodEnum<[
|
|
47857
|
+
"widget",
|
|
47858
|
+
"chip",
|
|
47859
|
+
"none"
|
|
47860
|
+
]>>;
|
|
47809
47861
|
}, "strip", z.ZodTypeAny, {
|
|
47810
47862
|
background_color: string;
|
|
47811
47863
|
background_image_url: string;
|
|
47812
47864
|
page_layout: "center" | "left" | "right";
|
|
47865
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47813
47866
|
}, {
|
|
47814
47867
|
background_color: string;
|
|
47815
47868
|
background_image_url: string;
|
|
47816
47869
|
page_layout: "center" | "left" | "right";
|
|
47870
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47817
47871
|
}>;
|
|
47818
47872
|
widget: z.ZodObject<{
|
|
47819
47873
|
header_text_alignment: z.ZodEnum<[
|
|
@@ -47853,6 +47907,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47853
47907
|
background_color: string;
|
|
47854
47908
|
background_image_url: string;
|
|
47855
47909
|
page_layout: "center" | "left" | "right";
|
|
47910
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47856
47911
|
};
|
|
47857
47912
|
colors: {
|
|
47858
47913
|
error: string;
|
|
@@ -47875,6 +47930,13 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47875
47930
|
widget_background: string;
|
|
47876
47931
|
widget_border: string;
|
|
47877
47932
|
};
|
|
47933
|
+
widget: {
|
|
47934
|
+
logo_url: string;
|
|
47935
|
+
header_text_alignment: "center" | "left" | "right";
|
|
47936
|
+
logo_height: number;
|
|
47937
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
47938
|
+
social_buttons_layout: "bottom" | "top";
|
|
47939
|
+
};
|
|
47878
47940
|
borders: {
|
|
47879
47941
|
button_border_radius: number;
|
|
47880
47942
|
button_border_weight: number;
|
|
@@ -47916,19 +47978,13 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47916
47978
|
bold: boolean;
|
|
47917
47979
|
};
|
|
47918
47980
|
};
|
|
47919
|
-
widget: {
|
|
47920
|
-
logo_url: string;
|
|
47921
|
-
header_text_alignment: "center" | "left" | "right";
|
|
47922
|
-
logo_height: number;
|
|
47923
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
47924
|
-
social_buttons_layout: "bottom" | "top";
|
|
47925
|
-
};
|
|
47926
47981
|
themeId: string;
|
|
47927
47982
|
}, {
|
|
47928
47983
|
page_background: {
|
|
47929
47984
|
background_color: string;
|
|
47930
47985
|
background_image_url: string;
|
|
47931
47986
|
page_layout: "center" | "left" | "right";
|
|
47987
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
47932
47988
|
};
|
|
47933
47989
|
colors: {
|
|
47934
47990
|
error: string;
|
|
@@ -47951,6 +48007,13 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47951
48007
|
widget_background: string;
|
|
47952
48008
|
widget_border: string;
|
|
47953
48009
|
};
|
|
48010
|
+
widget: {
|
|
48011
|
+
logo_url: string;
|
|
48012
|
+
header_text_alignment: "center" | "left" | "right";
|
|
48013
|
+
logo_height: number;
|
|
48014
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
48015
|
+
social_buttons_layout: "bottom" | "top";
|
|
48016
|
+
};
|
|
47954
48017
|
borders: {
|
|
47955
48018
|
button_border_radius: number;
|
|
47956
48019
|
button_border_weight: number;
|
|
@@ -47992,13 +48055,6 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
47992
48055
|
bold: boolean;
|
|
47993
48056
|
};
|
|
47994
48057
|
};
|
|
47995
|
-
widget: {
|
|
47996
|
-
logo_url: string;
|
|
47997
|
-
header_text_alignment: "center" | "left" | "right";
|
|
47998
|
-
logo_height: number;
|
|
47999
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
48000
|
-
social_buttons_layout: "bottom" | "top";
|
|
48001
|
-
};
|
|
48002
48058
|
themeId: string;
|
|
48003
48059
|
}>;
|
|
48004
48060
|
export type Theme = z.infer<typeof themeSchema>;
|
|
@@ -50846,6 +50902,37 @@ export interface OutboxAdapter {
|
|
|
50846
50902
|
/** Delete processed events older than the given ISO date. Returns count deleted. */
|
|
50847
50903
|
cleanup(olderThan: string): Promise<number>;
|
|
50848
50904
|
}
|
|
50905
|
+
/**
|
|
50906
|
+
* Logical buckets that consumers can rate-limit against. Backends decide
|
|
50907
|
+
* how each scope is enforced (e.g. mapping to a separate Cloudflare Workers
|
|
50908
|
+
* Rate Limiter binding with its own deploy-time limit/period).
|
|
50909
|
+
*/
|
|
50910
|
+
export type RateLimitScope = "pre-login" | "pre-user-registration" | "brute-force";
|
|
50911
|
+
export interface RateLimitDecision {
|
|
50912
|
+
/** True if the request is allowed; false if the limit was exceeded. */
|
|
50913
|
+
allowed: boolean;
|
|
50914
|
+
/** Optional retry-after hint in seconds (omitted if the backend can't tell). */
|
|
50915
|
+
retryAfterSeconds?: number;
|
|
50916
|
+
}
|
|
50917
|
+
export interface RateLimitAdapter {
|
|
50918
|
+
/**
|
|
50919
|
+
* Consume one unit of quota for the given scope and key.
|
|
50920
|
+
*
|
|
50921
|
+
* The numeric threshold and window are backend-specific; the
|
|
50922
|
+
* Cloudflare Workers Rate Limiter binding bakes them in at deploy
|
|
50923
|
+
* time and cannot honor a per-tenant override. Callers that need
|
|
50924
|
+
* per-tenant `max_attempts` should layer their own counter on top.
|
|
50925
|
+
*
|
|
50926
|
+
* Returns `{ allowed: true }` if the scope is not configured, so
|
|
50927
|
+
* callers can opt in by configuring backends without changing call
|
|
50928
|
+
* sites.
|
|
50929
|
+
*/
|
|
50930
|
+
consume(scope: RateLimitScope, key: string): Promise<RateLimitDecision>;
|
|
50931
|
+
}
|
|
50932
|
+
export interface CodeExecutionLog {
|
|
50933
|
+
level: "log" | "info" | "warn" | "error" | "debug";
|
|
50934
|
+
message: string;
|
|
50935
|
+
}
|
|
50849
50936
|
export interface CodeExecutionResult {
|
|
50850
50937
|
success: boolean;
|
|
50851
50938
|
error?: string;
|
|
@@ -50854,6 +50941,12 @@ export interface CodeExecutionResult {
|
|
|
50854
50941
|
method: string;
|
|
50855
50942
|
args: unknown[];
|
|
50856
50943
|
}>;
|
|
50944
|
+
/**
|
|
50945
|
+
* Console output captured from the user code during execution. Populated by
|
|
50946
|
+
* executors that shadow `console.*` inside the sandbox; absent on executors
|
|
50947
|
+
* that don't support capture.
|
|
50948
|
+
*/
|
|
50949
|
+
logs?: CodeExecutionLog[];
|
|
50857
50950
|
}
|
|
50858
50951
|
export interface CodeExecutor {
|
|
50859
50952
|
execute(params: {
|
|
@@ -50937,6 +51030,13 @@ export interface DataAdapters {
|
|
|
50937
51030
|
smsService?: SmsServiceAdapter;
|
|
50938
51031
|
/** Optional outbox adapter for transactional audit event capture */
|
|
50939
51032
|
outbox?: OutboxAdapter;
|
|
51033
|
+
/**
|
|
51034
|
+
* Optional rate-limit adapter for short-window abuse protection
|
|
51035
|
+
* (e.g. backed by the Cloudflare Workers Rate Limiter binding).
|
|
51036
|
+
* Auth flows treat this as opt-in: when undefined, no extra
|
|
51037
|
+
* throttling is applied.
|
|
51038
|
+
*/
|
|
51039
|
+
rateLimit?: RateLimitAdapter;
|
|
50940
51040
|
/**
|
|
50941
51041
|
* Execute a callback within a database transaction.
|
|
50942
51042
|
* The callback receives a set of adapters scoped to the transaction.
|
|
@@ -51058,6 +51158,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
51058
51158
|
}>>;
|
|
51059
51159
|
allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51060
51160
|
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
51161
|
+
default_client_id: z.ZodOptional<z.ZodString>;
|
|
51061
51162
|
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51062
51163
|
default_directory: z.ZodOptional<z.ZodString>;
|
|
51063
51164
|
error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -51652,6 +51753,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
51652
51753
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
51653
51754
|
} | undefined;
|
|
51654
51755
|
default_redirection_uri?: string | undefined;
|
|
51756
|
+
default_client_id?: string | undefined;
|
|
51655
51757
|
enabled_locales?: string[] | undefined;
|
|
51656
51758
|
default_directory?: string | undefined;
|
|
51657
51759
|
error_page?: {
|
|
@@ -51819,6 +51921,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
51819
51921
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
51820
51922
|
} | undefined;
|
|
51821
51923
|
default_redirection_uri?: string | undefined;
|
|
51924
|
+
default_client_id?: string | undefined;
|
|
51822
51925
|
enabled_locales?: string[] | undefined;
|
|
51823
51926
|
default_directory?: string | undefined;
|
|
51824
51927
|
error_page?: {
|
|
@@ -53002,6 +53105,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53002
53105
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
53003
53106
|
} | undefined;
|
|
53004
53107
|
default_redirection_uri?: string | undefined;
|
|
53108
|
+
default_client_id?: string | undefined;
|
|
53005
53109
|
enabled_locales?: string[] | undefined;
|
|
53006
53110
|
default_directory?: string | undefined;
|
|
53007
53111
|
error_page?: {
|
|
@@ -53351,6 +53455,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53351
53455
|
mode?: "persistent" | "non-persistent" | undefined;
|
|
53352
53456
|
} | undefined;
|
|
53353
53457
|
default_redirection_uri?: string | undefined;
|
|
53458
|
+
default_client_id?: string | undefined;
|
|
53354
53459
|
enabled_locales?: string[] | undefined;
|
|
53355
53460
|
default_directory?: string | undefined;
|
|
53356
53461
|
error_page?: {
|
|
@@ -54042,6 +54147,7 @@ export interface AuthHeroConfig {
|
|
|
54042
54147
|
* dataAdapter,
|
|
54043
54148
|
* poweredByLogo: {
|
|
54044
54149
|
* url: "https://example.com/logo.svg",
|
|
54150
|
+
* darkUrl: "https://example.com/logo-dark.svg", // optional dark-mode variant
|
|
54045
54151
|
* alt: "Powered by Example",
|
|
54046
54152
|
* href: "https://example.com", // optional link
|
|
54047
54153
|
* height: 24, // optional height in pixels (default: 20)
|
|
@@ -54050,8 +54156,10 @@ export interface AuthHeroConfig {
|
|
|
54050
54156
|
* ```
|
|
54051
54157
|
*/
|
|
54052
54158
|
poweredByLogo?: {
|
|
54053
|
-
/** URL of the logo image */
|
|
54159
|
+
/** URL of the logo image (used in light mode, and in dark mode if `darkUrl` is not provided) */
|
|
54054
54160
|
url: string;
|
|
54161
|
+
/** Optional dark-mode variant; falls back to `url` when omitted */
|
|
54162
|
+
darkUrl?: string;
|
|
54055
54163
|
/** Alt text for the logo */
|
|
54056
54164
|
alt: string;
|
|
54057
54165
|
/** Optional link URL - if provided, the logo will be clickable */
|
|
@@ -54184,6 +54292,7 @@ export type Bindings = {
|
|
|
54184
54292
|
samlSigner?: SamlSigner;
|
|
54185
54293
|
poweredByLogo?: {
|
|
54186
54294
|
url: string;
|
|
54295
|
+
darkUrl?: string;
|
|
54187
54296
|
alt: string;
|
|
54188
54297
|
href?: string;
|
|
54189
54298
|
height?: number;
|
|
@@ -63468,7 +63577,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63468
63577
|
};
|
|
63469
63578
|
};
|
|
63470
63579
|
output: {
|
|
63471
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63580
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63472
63581
|
date: string;
|
|
63473
63582
|
isMobile: boolean;
|
|
63474
63583
|
log_id: string;
|
|
@@ -63507,7 +63616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63507
63616
|
start: number;
|
|
63508
63617
|
limit: number;
|
|
63509
63618
|
logs: {
|
|
63510
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63619
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63511
63620
|
date: string;
|
|
63512
63621
|
isMobile: boolean;
|
|
63513
63622
|
log_id: string;
|
|
@@ -63561,7 +63670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63561
63670
|
};
|
|
63562
63671
|
};
|
|
63563
63672
|
output: {
|
|
63564
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63673
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
63565
63674
|
date: string;
|
|
63566
63675
|
isMobile: boolean;
|
|
63567
63676
|
log_id: string;
|
|
@@ -65599,7 +65708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65599
65708
|
};
|
|
65600
65709
|
};
|
|
65601
65710
|
output: {
|
|
65602
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
65711
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
65603
65712
|
date: string;
|
|
65604
65713
|
isMobile: boolean;
|
|
65605
65714
|
log_id: string;
|
|
@@ -65638,7 +65747,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65638
65747
|
start: number;
|
|
65639
65748
|
limit: number;
|
|
65640
65749
|
logs: {
|
|
65641
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
65750
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
65642
65751
|
date: string;
|
|
65643
65752
|
isMobile: boolean;
|
|
65644
65753
|
log_id: string;
|
|
@@ -66369,6 +66478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66369
66478
|
background_color: string;
|
|
66370
66479
|
background_image_url: string;
|
|
66371
66480
|
page_layout: "center" | "left" | "right";
|
|
66481
|
+
logo_placement?: "none" | "widget" | "chip" | undefined | undefined;
|
|
66372
66482
|
};
|
|
66373
66483
|
colors: {
|
|
66374
66484
|
error: string;
|
|
@@ -66391,6 +66501,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66391
66501
|
widget_background: string;
|
|
66392
66502
|
widget_border: string;
|
|
66393
66503
|
};
|
|
66504
|
+
widget: {
|
|
66505
|
+
logo_url: string;
|
|
66506
|
+
header_text_alignment: "center" | "left" | "right";
|
|
66507
|
+
logo_height: number;
|
|
66508
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
66509
|
+
social_buttons_layout: "bottom" | "top";
|
|
66510
|
+
};
|
|
66394
66511
|
borders: {
|
|
66395
66512
|
button_border_radius: number;
|
|
66396
66513
|
button_border_weight: number;
|
|
@@ -66432,13 +66549,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66432
66549
|
bold: boolean;
|
|
66433
66550
|
};
|
|
66434
66551
|
};
|
|
66435
|
-
widget: {
|
|
66436
|
-
logo_url: string;
|
|
66437
|
-
header_text_alignment: "center" | "left" | "right";
|
|
66438
|
-
logo_height: number;
|
|
66439
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
66440
|
-
social_buttons_layout: "bottom" | "top";
|
|
66441
|
-
};
|
|
66442
66552
|
themeId: string;
|
|
66443
66553
|
};
|
|
66444
66554
|
outputFormat: "json";
|
|
@@ -66458,6 +66568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66458
66568
|
background_color?: string | undefined;
|
|
66459
66569
|
background_image_url?: string | undefined;
|
|
66460
66570
|
page_layout?: "center" | "left" | "right" | undefined;
|
|
66571
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
66461
66572
|
} | undefined;
|
|
66462
66573
|
colors?: {
|
|
66463
66574
|
header?: string | undefined;
|
|
@@ -66480,6 +66591,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66480
66591
|
widget_background?: string | undefined;
|
|
66481
66592
|
widget_border?: string | undefined;
|
|
66482
66593
|
} | undefined;
|
|
66594
|
+
widget?: {
|
|
66595
|
+
header_text_alignment?: "center" | "left" | "right" | undefined;
|
|
66596
|
+
logo_height?: number | undefined;
|
|
66597
|
+
logo_position?: "none" | "center" | "left" | "right" | undefined;
|
|
66598
|
+
logo_url?: string | undefined;
|
|
66599
|
+
social_buttons_layout?: "bottom" | "top" | undefined;
|
|
66600
|
+
} | undefined;
|
|
66483
66601
|
borders?: {
|
|
66484
66602
|
button_border_radius?: number | undefined;
|
|
66485
66603
|
button_border_weight?: number | undefined;
|
|
@@ -66521,13 +66639,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66521
66639
|
size?: number | undefined;
|
|
66522
66640
|
} | undefined;
|
|
66523
66641
|
} | undefined;
|
|
66524
|
-
widget?: {
|
|
66525
|
-
header_text_alignment?: "center" | "left" | "right" | undefined;
|
|
66526
|
-
logo_height?: number | undefined;
|
|
66527
|
-
logo_position?: "none" | "center" | "left" | "right" | undefined;
|
|
66528
|
-
logo_url?: string | undefined;
|
|
66529
|
-
social_buttons_layout?: "bottom" | "top" | undefined;
|
|
66530
|
-
} | undefined;
|
|
66531
66642
|
themeId?: string | undefined;
|
|
66532
66643
|
};
|
|
66533
66644
|
};
|
|
@@ -66536,6 +66647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66536
66647
|
background_color: string;
|
|
66537
66648
|
background_image_url: string;
|
|
66538
66649
|
page_layout: "center" | "left" | "right";
|
|
66650
|
+
logo_placement?: "none" | "widget" | "chip" | undefined | undefined;
|
|
66539
66651
|
};
|
|
66540
66652
|
colors: {
|
|
66541
66653
|
error: string;
|
|
@@ -66558,6 +66670,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66558
66670
|
widget_background: string;
|
|
66559
66671
|
widget_border: string;
|
|
66560
66672
|
};
|
|
66673
|
+
widget: {
|
|
66674
|
+
logo_url: string;
|
|
66675
|
+
header_text_alignment: "center" | "left" | "right";
|
|
66676
|
+
logo_height: number;
|
|
66677
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
66678
|
+
social_buttons_layout: "bottom" | "top";
|
|
66679
|
+
};
|
|
66561
66680
|
borders: {
|
|
66562
66681
|
button_border_radius: number;
|
|
66563
66682
|
button_border_weight: number;
|
|
@@ -66599,13 +66718,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66599
66718
|
bold: boolean;
|
|
66600
66719
|
};
|
|
66601
66720
|
};
|
|
66602
|
-
widget: {
|
|
66603
|
-
logo_url: string;
|
|
66604
|
-
header_text_alignment: "center" | "left" | "right";
|
|
66605
|
-
logo_height: number;
|
|
66606
|
-
logo_position: "none" | "center" | "left" | "right";
|
|
66607
|
-
social_buttons_layout: "bottom" | "top";
|
|
66608
|
-
};
|
|
66609
66721
|
themeId: string;
|
|
66610
66722
|
};
|
|
66611
66723
|
outputFormat: "json";
|
|
@@ -66957,8 +67069,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66957
67069
|
name: string;
|
|
66958
67070
|
}[] | undefined;
|
|
66959
67071
|
secrets?: {
|
|
66960
|
-
value: string;
|
|
66961
67072
|
name: string;
|
|
67073
|
+
value?: string | undefined;
|
|
66962
67074
|
}[] | undefined;
|
|
66963
67075
|
};
|
|
66964
67076
|
};
|
|
@@ -67066,8 +67178,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67066
67178
|
name: string;
|
|
67067
67179
|
}[] | undefined;
|
|
67068
67180
|
secrets?: {
|
|
67069
|
-
value: string;
|
|
67070
67181
|
name: string;
|
|
67182
|
+
value?: string | undefined;
|
|
67071
67183
|
}[] | undefined;
|
|
67072
67184
|
};
|
|
67073
67185
|
};
|
|
@@ -67097,8 +67209,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67097
67209
|
name: string;
|
|
67098
67210
|
}[] | undefined;
|
|
67099
67211
|
secrets?: {
|
|
67100
|
-
value: string;
|
|
67101
67212
|
name: string;
|
|
67213
|
+
value?: string | undefined;
|
|
67102
67214
|
}[] | undefined;
|
|
67103
67215
|
};
|
|
67104
67216
|
};
|
|
@@ -67349,6 +67461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67349
67461
|
state: string;
|
|
67350
67462
|
return_to: string;
|
|
67351
67463
|
scope?: string | undefined;
|
|
67464
|
+
audience?: string | undefined;
|
|
67352
67465
|
integration_type?: string | undefined;
|
|
67353
67466
|
};
|
|
67354
67467
|
};
|
|
@@ -67362,6 +67475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67362
67475
|
state: string;
|
|
67363
67476
|
return_to: string;
|
|
67364
67477
|
scope?: string | undefined;
|
|
67478
|
+
audience?: string | undefined;
|
|
67365
67479
|
integration_type?: string | undefined;
|
|
67366
67480
|
};
|
|
67367
67481
|
};
|
|
@@ -67375,6 +67489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67375
67489
|
state: string;
|
|
67376
67490
|
return_to: string;
|
|
67377
67491
|
scope?: string | undefined;
|
|
67492
|
+
audience?: string | undefined;
|
|
67378
67493
|
integration_type?: string | undefined;
|
|
67379
67494
|
};
|
|
67380
67495
|
};
|
|
@@ -67394,6 +67509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67394
67509
|
grant_types?: string[] | undefined;
|
|
67395
67510
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
67396
67511
|
scope?: string | undefined;
|
|
67512
|
+
audience?: string | undefined;
|
|
67397
67513
|
client_name?: string | undefined;
|
|
67398
67514
|
jwks_uri?: string | undefined;
|
|
67399
67515
|
redirect_uris?: string[] | undefined;
|
|
@@ -67482,6 +67598,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
67482
67598
|
grant_types?: string[] | undefined;
|
|
67483
67599
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
67484
67600
|
scope?: string | undefined;
|
|
67601
|
+
audience?: string | undefined;
|
|
67485
67602
|
client_name?: string | undefined;
|
|
67486
67603
|
jwks_uri?: string | undefined;
|
|
67487
67604
|
redirect_uris?: string[] | undefined;
|