@authhero/adapter-interfaces 0.155.0 → 1.1.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/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +144 -4
- package/dist/adapter-interfaces.mjs +517 -490
- package/package.json +1 -1
|
@@ -42050,6 +42050,33 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
42050
42050
|
synchronous?: boolean | undefined;
|
|
42051
42051
|
priority?: number | undefined;
|
|
42052
42052
|
hook_id?: string | undefined;
|
|
42053
|
+
}>,
|
|
42054
|
+
z.ZodObject<{
|
|
42055
|
+
trigger_id: z.ZodEnum<[
|
|
42056
|
+
"post-user-login",
|
|
42057
|
+
"credentials-exchange",
|
|
42058
|
+
"pre-user-registration",
|
|
42059
|
+
"post-user-registration"
|
|
42060
|
+
]>;
|
|
42061
|
+
code_id: z.ZodString;
|
|
42062
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
42063
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
42064
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
42065
|
+
hook_id: z.ZodOptional<z.ZodString>;
|
|
42066
|
+
}, "strip", z.ZodTypeAny, {
|
|
42067
|
+
code_id: string;
|
|
42068
|
+
enabled: boolean;
|
|
42069
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
42070
|
+
synchronous: boolean;
|
|
42071
|
+
priority?: number | undefined;
|
|
42072
|
+
hook_id?: string | undefined;
|
|
42073
|
+
}, {
|
|
42074
|
+
code_id: string;
|
|
42075
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
42076
|
+
enabled?: boolean | undefined;
|
|
42077
|
+
synchronous?: boolean | undefined;
|
|
42078
|
+
priority?: number | undefined;
|
|
42079
|
+
hook_id?: string | undefined;
|
|
42053
42080
|
}>
|
|
42054
42081
|
]>;
|
|
42055
42082
|
export type HookInsert = z.infer<typeof hookInsertSchema>;
|
|
@@ -42157,9 +42184,77 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
42157
42184
|
enabled?: boolean | undefined;
|
|
42158
42185
|
synchronous?: boolean | undefined;
|
|
42159
42186
|
priority?: number | undefined;
|
|
42187
|
+
}>,
|
|
42188
|
+
z.ZodObject<{
|
|
42189
|
+
hook_id: z.ZodString;
|
|
42190
|
+
code_id: z.ZodString;
|
|
42191
|
+
created_at: z.ZodString;
|
|
42192
|
+
updated_at: z.ZodString;
|
|
42193
|
+
trigger_id: z.ZodEnum<[
|
|
42194
|
+
"post-user-login",
|
|
42195
|
+
"credentials-exchange",
|
|
42196
|
+
"pre-user-registration",
|
|
42197
|
+
"post-user-registration"
|
|
42198
|
+
]>;
|
|
42199
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
42200
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
42201
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
42202
|
+
}, "strip", z.ZodTypeAny, {
|
|
42203
|
+
created_at: string;
|
|
42204
|
+
updated_at: string;
|
|
42205
|
+
code_id: string;
|
|
42206
|
+
enabled: boolean;
|
|
42207
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
42208
|
+
synchronous: boolean;
|
|
42209
|
+
hook_id: string;
|
|
42210
|
+
priority?: number | undefined;
|
|
42211
|
+
}, {
|
|
42212
|
+
created_at: string;
|
|
42213
|
+
updated_at: string;
|
|
42214
|
+
code_id: string;
|
|
42215
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
42216
|
+
hook_id: string;
|
|
42217
|
+
enabled?: boolean | undefined;
|
|
42218
|
+
synchronous?: boolean | undefined;
|
|
42219
|
+
priority?: number | undefined;
|
|
42160
42220
|
}>
|
|
42161
42221
|
]>;
|
|
42162
42222
|
export type Hook = z.infer<typeof hookSchema>;
|
|
42223
|
+
export declare const hookCodeInsertSchema: z.ZodObject<{
|
|
42224
|
+
code: z.ZodString;
|
|
42225
|
+
secrets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
42226
|
+
}, "strip", z.ZodTypeAny, {
|
|
42227
|
+
code: string;
|
|
42228
|
+
secrets?: Record<string, string> | undefined;
|
|
42229
|
+
}, {
|
|
42230
|
+
code: string;
|
|
42231
|
+
secrets?: Record<string, string> | undefined;
|
|
42232
|
+
}>;
|
|
42233
|
+
export type HookCodeInsert = z.infer<typeof hookCodeInsertSchema>;
|
|
42234
|
+
export declare const hookCodeSchema: z.ZodObject<{
|
|
42235
|
+
code: z.ZodString;
|
|
42236
|
+
secrets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
42237
|
+
} & {
|
|
42238
|
+
created_at: z.ZodString;
|
|
42239
|
+
updated_at: z.ZodString;
|
|
42240
|
+
id: z.ZodString;
|
|
42241
|
+
tenant_id: z.ZodString;
|
|
42242
|
+
}, "strip", z.ZodTypeAny, {
|
|
42243
|
+
code: string;
|
|
42244
|
+
id: string;
|
|
42245
|
+
tenant_id: string;
|
|
42246
|
+
created_at: string;
|
|
42247
|
+
updated_at: string;
|
|
42248
|
+
secrets?: Record<string, string> | undefined;
|
|
42249
|
+
}, {
|
|
42250
|
+
code: string;
|
|
42251
|
+
id: string;
|
|
42252
|
+
tenant_id: string;
|
|
42253
|
+
created_at: string;
|
|
42254
|
+
updated_at: string;
|
|
42255
|
+
secrets?: Record<string, string> | undefined;
|
|
42256
|
+
}>;
|
|
42257
|
+
export type HookCode = z.infer<typeof hookCodeSchema>;
|
|
42163
42258
|
export declare const profileDataSchema: z.ZodObject<{
|
|
42164
42259
|
email: z.ZodOptional<z.ZodString>;
|
|
42165
42260
|
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43038,6 +43133,7 @@ export declare const LogTypes: {
|
|
|
43038
43133
|
readonly RICH_CONSENTS_ACCESS_ERROR: "rich_consents_access_error";
|
|
43039
43134
|
readonly SUCCESS_LOGIN: "s";
|
|
43040
43135
|
readonly SUCCESS_API_OPERATION: "sapi";
|
|
43136
|
+
readonly FAILED_API_OPERATION: "fapi";
|
|
43041
43137
|
readonly SUCCESS_CHANGE_EMAIL: "sce";
|
|
43042
43138
|
readonly SUCCESS_CROSS_ORIGIN_AUTHENTICATION: "scoa";
|
|
43043
43139
|
readonly SUCCESS_CHANGE_PASSWORD: "scp";
|
|
@@ -43129,7 +43225,7 @@ export declare const LocationInfo: z.ZodObject<{
|
|
|
43129
43225
|
continent_code: string;
|
|
43130
43226
|
}>;
|
|
43131
43227
|
export declare const logInsertSchema: z.ZodObject<{
|
|
43132
|
-
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" | "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>;
|
|
43228
|
+
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>;
|
|
43133
43229
|
date: z.ZodString;
|
|
43134
43230
|
description: z.ZodOptional<z.ZodString>;
|
|
43135
43231
|
ip: z.ZodOptional<z.ZodString>;
|
|
@@ -43194,7 +43290,7 @@ export declare const logInsertSchema: z.ZodObject<{
|
|
|
43194
43290
|
continent_code: string;
|
|
43195
43291
|
}>>;
|
|
43196
43292
|
}, "strip", z.ZodTypeAny, {
|
|
43197
|
-
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" | "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";
|
|
43293
|
+
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";
|
|
43198
43294
|
date: string;
|
|
43199
43295
|
isMobile: boolean;
|
|
43200
43296
|
description?: string | undefined;
|
|
@@ -43267,7 +43363,7 @@ export declare const logInsertSchema: z.ZodObject<{
|
|
|
43267
43363
|
export type LogInsert = z.infer<typeof logInsertSchema>;
|
|
43268
43364
|
export declare const logSchema: z.ZodObject<{
|
|
43269
43365
|
log_id: z.ZodString;
|
|
43270
|
-
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" | "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>;
|
|
43366
|
+
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>;
|
|
43271
43367
|
date: z.ZodString;
|
|
43272
43368
|
description: z.ZodOptional<z.ZodString>;
|
|
43273
43369
|
ip: z.ZodOptional<z.ZodString>;
|
|
@@ -43331,7 +43427,7 @@ export declare const logSchema: z.ZodObject<{
|
|
|
43331
43427
|
continent_code: string;
|
|
43332
43428
|
}>>;
|
|
43333
43429
|
}, "strip", z.ZodTypeAny, {
|
|
43334
|
-
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" | "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";
|
|
43430
|
+
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";
|
|
43335
43431
|
date: string;
|
|
43336
43432
|
isMobile: boolean;
|
|
43337
43433
|
log_id: string;
|
|
@@ -48518,6 +48614,12 @@ export interface HooksAdapter {
|
|
|
48518
48614
|
update: (tenant_id: string, hook_id: string, hook: Partial<HookInsert>) => Promise<boolean>;
|
|
48519
48615
|
list: (tenant_id: string, params?: ListParams) => Promise<ListHooksResponse>;
|
|
48520
48616
|
}
|
|
48617
|
+
export interface HookCodeAdapter {
|
|
48618
|
+
create: (tenant_id: string, hookCode: HookCodeInsert) => Promise<HookCode>;
|
|
48619
|
+
get: (tenant_id: string, id: string) => Promise<HookCode | null>;
|
|
48620
|
+
update: (tenant_id: string, id: string, hookCode: Partial<HookCodeInsert>) => Promise<boolean>;
|
|
48621
|
+
remove: (tenant_id: string, id: string) => Promise<boolean>;
|
|
48622
|
+
}
|
|
48521
48623
|
export interface ThemesAdapter {
|
|
48522
48624
|
create: (tenant_id: string, theme: ThemeInsert, themeId?: string) => Promise<Theme>;
|
|
48523
48625
|
remove: (tenant_id: string, themeId: string) => Promise<boolean>;
|
|
@@ -48763,6 +48865,43 @@ export interface OutboxAdapter {
|
|
|
48763
48865
|
/** Delete processed events older than the given ISO date. Returns count deleted. */
|
|
48764
48866
|
cleanup(olderThan: string): Promise<number>;
|
|
48765
48867
|
}
|
|
48868
|
+
export interface CodeExecutionResult {
|
|
48869
|
+
success: boolean;
|
|
48870
|
+
error?: string;
|
|
48871
|
+
durationMs: number;
|
|
48872
|
+
apiCalls: Array<{
|
|
48873
|
+
method: string;
|
|
48874
|
+
args: unknown[];
|
|
48875
|
+
}>;
|
|
48876
|
+
}
|
|
48877
|
+
export interface CodeExecutor {
|
|
48878
|
+
execute(params: {
|
|
48879
|
+
code: string;
|
|
48880
|
+
hookCodeId?: string;
|
|
48881
|
+
triggerId: string;
|
|
48882
|
+
event: Record<string, unknown>;
|
|
48883
|
+
/** Wall-clock timeout for the entire execution (ms). */
|
|
48884
|
+
timeoutMs?: number;
|
|
48885
|
+
/**
|
|
48886
|
+
* CPU-time limit (ms) for runtimes that distinguish CPU time from
|
|
48887
|
+
* wall-clock time (e.g. Cloudflare Workers for Platforms).
|
|
48888
|
+
* Ignored by executors that do not support CPU-time limits.
|
|
48889
|
+
*/
|
|
48890
|
+
cpuLimitMs?: number;
|
|
48891
|
+
}): Promise<CodeExecutionResult>;
|
|
48892
|
+
/**
|
|
48893
|
+
* Deploy user code to the execution environment.
|
|
48894
|
+
* Called when hook code is created or updated.
|
|
48895
|
+
* Optional — LocalCodeExecutor does not need this.
|
|
48896
|
+
*/
|
|
48897
|
+
deploy?(hookCodeId: string, code: string): Promise<void>;
|
|
48898
|
+
/**
|
|
48899
|
+
* Remove user code from the execution environment.
|
|
48900
|
+
* Called when hook code is deleted.
|
|
48901
|
+
* Optional — LocalCodeExecutor does not need this.
|
|
48902
|
+
*/
|
|
48903
|
+
remove?(hookCodeId: string): Promise<void>;
|
|
48904
|
+
}
|
|
48766
48905
|
/**
|
|
48767
48906
|
* Parameters for cleaning up expired sessions
|
|
48768
48907
|
*/
|
|
@@ -48785,6 +48924,7 @@ export interface DataAdapters {
|
|
|
48785
48924
|
flows: FlowsAdapter;
|
|
48786
48925
|
forms: FormsAdapter;
|
|
48787
48926
|
geo?: GeoAdapter;
|
|
48927
|
+
hookCode: HookCodeAdapter;
|
|
48788
48928
|
hooks: HooksAdapter;
|
|
48789
48929
|
invites: InvitesAdapter;
|
|
48790
48930
|
keys: KeysAdapter;
|