authhero 5.14.0 → 5.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +132 -132
- package/dist/authhero.d.ts +113 -97
- package/dist/authhero.mjs +6358 -6282
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/password.d.ts +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/emails/index.d.ts +1 -1
- package/dist/types/index.d.ts +113 -97
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +69 -69
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/error-page.d.ts +2 -1
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/u2-index.d.ts +22 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +22 -6
- package/dist/types/variables.d.ts +1 -1
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -2460,7 +2460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2460
2460
|
};
|
|
2461
2461
|
} & {
|
|
2462
2462
|
json: {
|
|
2463
|
-
type: "
|
|
2463
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2464
2464
|
phone_number?: string | undefined;
|
|
2465
2465
|
totp_secret?: string | undefined;
|
|
2466
2466
|
credential_id?: string | undefined;
|
|
@@ -2600,7 +2600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2600
2600
|
};
|
|
2601
2601
|
};
|
|
2602
2602
|
output: {
|
|
2603
|
-
name: "
|
|
2603
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2604
2604
|
enabled: boolean;
|
|
2605
2605
|
trial_expired?: boolean | undefined;
|
|
2606
2606
|
}[];
|
|
@@ -2755,7 +2755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2755
2755
|
$get: {
|
|
2756
2756
|
input: {
|
|
2757
2757
|
param: {
|
|
2758
|
-
factor_name: "
|
|
2758
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2759
2759
|
};
|
|
2760
2760
|
} & {
|
|
2761
2761
|
header: {
|
|
@@ -2763,7 +2763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2763
2763
|
};
|
|
2764
2764
|
};
|
|
2765
2765
|
output: {
|
|
2766
|
-
name: "
|
|
2766
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2767
2767
|
enabled: boolean;
|
|
2768
2768
|
trial_expired?: boolean | undefined;
|
|
2769
2769
|
};
|
|
@@ -2776,7 +2776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2776
2776
|
$put: {
|
|
2777
2777
|
input: {
|
|
2778
2778
|
param: {
|
|
2779
|
-
factor_name: "
|
|
2779
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2780
2780
|
};
|
|
2781
2781
|
} & {
|
|
2782
2782
|
header: {
|
|
@@ -2788,7 +2788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2788
2788
|
};
|
|
2789
2789
|
};
|
|
2790
2790
|
output: {
|
|
2791
|
-
name: "
|
|
2791
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2792
2792
|
enabled: boolean;
|
|
2793
2793
|
trial_expired?: boolean | undefined;
|
|
2794
2794
|
};
|
|
@@ -4388,7 +4388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4388
4388
|
type: "REDIRECT";
|
|
4389
4389
|
action: "REDIRECT_USER";
|
|
4390
4390
|
params: {
|
|
4391
|
-
target: "custom" | "
|
|
4391
|
+
target: "custom" | "account" | "change-email";
|
|
4392
4392
|
custom_url?: string | undefined;
|
|
4393
4393
|
};
|
|
4394
4394
|
alias?: string | undefined;
|
|
@@ -4441,7 +4441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4441
4441
|
type: "REDIRECT";
|
|
4442
4442
|
action: "REDIRECT_USER";
|
|
4443
4443
|
params: {
|
|
4444
|
-
target: "custom" | "
|
|
4444
|
+
target: "custom" | "account" | "change-email";
|
|
4445
4445
|
custom_url?: string | undefined;
|
|
4446
4446
|
};
|
|
4447
4447
|
alias?: string | undefined;
|
|
@@ -4509,7 +4509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4509
4509
|
type: "REDIRECT";
|
|
4510
4510
|
action: "REDIRECT_USER";
|
|
4511
4511
|
params: {
|
|
4512
|
-
target: "custom" | "
|
|
4512
|
+
target: "custom" | "account" | "change-email";
|
|
4513
4513
|
custom_url?: string | undefined;
|
|
4514
4514
|
};
|
|
4515
4515
|
alias?: string | undefined;
|
|
@@ -4590,7 +4590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4590
4590
|
type: "REDIRECT";
|
|
4591
4591
|
action: "REDIRECT_USER";
|
|
4592
4592
|
params: {
|
|
4593
|
-
target: "custom" | "
|
|
4593
|
+
target: "custom" | "account" | "change-email";
|
|
4594
4594
|
custom_url?: string | undefined;
|
|
4595
4595
|
};
|
|
4596
4596
|
alias?: string | undefined;
|
|
@@ -4638,7 +4638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4638
4638
|
type: "REDIRECT";
|
|
4639
4639
|
action: "REDIRECT_USER";
|
|
4640
4640
|
params: {
|
|
4641
|
-
target: "custom" | "
|
|
4641
|
+
target: "custom" | "account" | "change-email";
|
|
4642
4642
|
custom_url?: string | undefined;
|
|
4643
4643
|
};
|
|
4644
4644
|
alias?: string | undefined;
|
|
@@ -4698,7 +4698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4698
4698
|
type: "REDIRECT";
|
|
4699
4699
|
action: "REDIRECT_USER";
|
|
4700
4700
|
params: {
|
|
4701
|
-
target: "custom" | "
|
|
4701
|
+
target: "custom" | "account" | "change-email";
|
|
4702
4702
|
custom_url?: string | undefined;
|
|
4703
4703
|
};
|
|
4704
4704
|
alias?: string | undefined;
|
|
@@ -4746,7 +4746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4746
4746
|
type: "REDIRECT";
|
|
4747
4747
|
action: "REDIRECT_USER";
|
|
4748
4748
|
params: {
|
|
4749
|
-
target: "custom" | "
|
|
4749
|
+
target: "custom" | "account" | "change-email";
|
|
4750
4750
|
custom_url?: string | undefined;
|
|
4751
4751
|
};
|
|
4752
4752
|
alias?: string | undefined;
|
|
@@ -9024,7 +9024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9024
9024
|
};
|
|
9025
9025
|
};
|
|
9026
9026
|
output: {
|
|
9027
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
9027
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9028
9028
|
language: string;
|
|
9029
9029
|
}[];
|
|
9030
9030
|
outputFormat: "json";
|
|
@@ -9062,7 +9062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9062
9062
|
$get: {
|
|
9063
9063
|
input: {
|
|
9064
9064
|
param: {
|
|
9065
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
9065
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9066
9066
|
language: string;
|
|
9067
9067
|
};
|
|
9068
9068
|
} & {
|
|
@@ -9084,7 +9084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9084
9084
|
$put: {
|
|
9085
9085
|
input: {
|
|
9086
9086
|
param: {
|
|
9087
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
9087
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9088
9088
|
language: string;
|
|
9089
9089
|
};
|
|
9090
9090
|
} & {
|
|
@@ -9108,7 +9108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9108
9108
|
$delete: {
|
|
9109
9109
|
input: {
|
|
9110
9110
|
param: {
|
|
9111
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
9111
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9112
9112
|
language: string;
|
|
9113
9113
|
};
|
|
9114
9114
|
} & {
|
|
@@ -10144,7 +10144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10144
10144
|
};
|
|
10145
10145
|
};
|
|
10146
10146
|
output: ({
|
|
10147
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10147
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10148
10148
|
enabled: boolean;
|
|
10149
10149
|
synchronous: boolean;
|
|
10150
10150
|
created_at: string;
|
|
@@ -10156,7 +10156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10156
10156
|
[x: string]: hono_utils_types.JSONValue;
|
|
10157
10157
|
} | undefined;
|
|
10158
10158
|
} | {
|
|
10159
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10159
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10160
10160
|
enabled: boolean;
|
|
10161
10161
|
synchronous: boolean;
|
|
10162
10162
|
created_at: string;
|
|
@@ -10168,7 +10168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10168
10168
|
[x: string]: hono_utils_types.JSONValue;
|
|
10169
10169
|
} | undefined;
|
|
10170
10170
|
} | {
|
|
10171
|
-
trigger_id: "post-user-
|
|
10171
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10172
10172
|
enabled: boolean;
|
|
10173
10173
|
synchronous: boolean;
|
|
10174
10174
|
created_at: string;
|
|
@@ -10180,7 +10180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10180
10180
|
[x: string]: hono_utils_types.JSONValue;
|
|
10181
10181
|
} | undefined;
|
|
10182
10182
|
} | {
|
|
10183
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10183
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10184
10184
|
enabled: boolean;
|
|
10185
10185
|
synchronous: boolean;
|
|
10186
10186
|
created_at: string;
|
|
@@ -10196,7 +10196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10196
10196
|
limit: number;
|
|
10197
10197
|
length: number;
|
|
10198
10198
|
hooks: ({
|
|
10199
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10199
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10200
10200
|
enabled: boolean;
|
|
10201
10201
|
synchronous: boolean;
|
|
10202
10202
|
created_at: string;
|
|
@@ -10208,7 +10208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10208
10208
|
[x: string]: hono_utils_types.JSONValue;
|
|
10209
10209
|
} | undefined;
|
|
10210
10210
|
} | {
|
|
10211
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10211
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10212
10212
|
enabled: boolean;
|
|
10213
10213
|
synchronous: boolean;
|
|
10214
10214
|
created_at: string;
|
|
@@ -10220,7 +10220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10220
10220
|
[x: string]: hono_utils_types.JSONValue;
|
|
10221
10221
|
} | undefined;
|
|
10222
10222
|
} | {
|
|
10223
|
-
trigger_id: "post-user-
|
|
10223
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10224
10224
|
enabled: boolean;
|
|
10225
10225
|
synchronous: boolean;
|
|
10226
10226
|
created_at: string;
|
|
@@ -10232,7 +10232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10232
10232
|
[x: string]: hono_utils_types.JSONValue;
|
|
10233
10233
|
} | undefined;
|
|
10234
10234
|
} | {
|
|
10235
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10235
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10236
10236
|
enabled: boolean;
|
|
10237
10237
|
synchronous: boolean;
|
|
10238
10238
|
created_at: string;
|
|
@@ -10259,7 +10259,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10259
10259
|
};
|
|
10260
10260
|
} & {
|
|
10261
10261
|
json: {
|
|
10262
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10262
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10263
10263
|
url: string;
|
|
10264
10264
|
enabled?: boolean | undefined;
|
|
10265
10265
|
synchronous?: boolean | undefined;
|
|
@@ -10267,7 +10267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10267
10267
|
hook_id?: string | undefined;
|
|
10268
10268
|
metadata?: Record<string, unknown> | undefined;
|
|
10269
10269
|
} | {
|
|
10270
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10270
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10271
10271
|
form_id: string;
|
|
10272
10272
|
enabled?: boolean | undefined;
|
|
10273
10273
|
synchronous?: boolean | undefined;
|
|
@@ -10275,7 +10275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10275
10275
|
hook_id?: string | undefined;
|
|
10276
10276
|
metadata?: Record<string, unknown> | undefined;
|
|
10277
10277
|
} | {
|
|
10278
|
-
trigger_id: "post-user-
|
|
10278
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10279
10279
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
10280
10280
|
enabled?: boolean | undefined;
|
|
10281
10281
|
synchronous?: boolean | undefined;
|
|
@@ -10283,7 +10283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10283
10283
|
hook_id?: string | undefined;
|
|
10284
10284
|
metadata?: Record<string, unknown> | undefined;
|
|
10285
10285
|
} | {
|
|
10286
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10286
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10287
10287
|
code_id: string;
|
|
10288
10288
|
enabled?: boolean | undefined;
|
|
10289
10289
|
synchronous?: boolean | undefined;
|
|
@@ -10293,7 +10293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10293
10293
|
};
|
|
10294
10294
|
};
|
|
10295
10295
|
output: {
|
|
10296
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10296
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10297
10297
|
enabled: boolean;
|
|
10298
10298
|
synchronous: boolean;
|
|
10299
10299
|
created_at: string;
|
|
@@ -10305,7 +10305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10305
10305
|
[x: string]: hono_utils_types.JSONValue;
|
|
10306
10306
|
} | undefined;
|
|
10307
10307
|
} | {
|
|
10308
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10308
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10309
10309
|
enabled: boolean;
|
|
10310
10310
|
synchronous: boolean;
|
|
10311
10311
|
created_at: string;
|
|
@@ -10317,7 +10317,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10317
10317
|
[x: string]: hono_utils_types.JSONValue;
|
|
10318
10318
|
} | undefined;
|
|
10319
10319
|
} | {
|
|
10320
|
-
trigger_id: "post-user-
|
|
10320
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10321
10321
|
enabled: boolean;
|
|
10322
10322
|
synchronous: boolean;
|
|
10323
10323
|
created_at: string;
|
|
@@ -10329,7 +10329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10329
10329
|
[x: string]: hono_utils_types.JSONValue;
|
|
10330
10330
|
} | undefined;
|
|
10331
10331
|
} | {
|
|
10332
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10332
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10333
10333
|
enabled: boolean;
|
|
10334
10334
|
synchronous: boolean;
|
|
10335
10335
|
created_at: string;
|
|
@@ -10375,7 +10375,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10375
10375
|
json: unknown;
|
|
10376
10376
|
};
|
|
10377
10377
|
output: {
|
|
10378
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10378
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10379
10379
|
enabled: boolean;
|
|
10380
10380
|
synchronous: boolean;
|
|
10381
10381
|
created_at: string;
|
|
@@ -10387,7 +10387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10387
10387
|
[x: string]: hono_utils_types.JSONValue;
|
|
10388
10388
|
} | undefined;
|
|
10389
10389
|
} | {
|
|
10390
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10390
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10391
10391
|
enabled: boolean;
|
|
10392
10392
|
synchronous: boolean;
|
|
10393
10393
|
created_at: string;
|
|
@@ -10399,7 +10399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10399
10399
|
[x: string]: hono_utils_types.JSONValue;
|
|
10400
10400
|
} | undefined;
|
|
10401
10401
|
} | {
|
|
10402
|
-
trigger_id: "post-user-
|
|
10402
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10403
10403
|
enabled: boolean;
|
|
10404
10404
|
synchronous: boolean;
|
|
10405
10405
|
created_at: string;
|
|
@@ -10411,7 +10411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10411
10411
|
[x: string]: hono_utils_types.JSONValue;
|
|
10412
10412
|
} | undefined;
|
|
10413
10413
|
} | {
|
|
10414
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10414
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10415
10415
|
enabled: boolean;
|
|
10416
10416
|
synchronous: boolean;
|
|
10417
10417
|
created_at: string;
|
|
@@ -10453,7 +10453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10453
10453
|
};
|
|
10454
10454
|
};
|
|
10455
10455
|
output: {
|
|
10456
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10456
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10457
10457
|
enabled: boolean;
|
|
10458
10458
|
synchronous: boolean;
|
|
10459
10459
|
created_at: string;
|
|
@@ -10465,7 +10465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10465
10465
|
[x: string]: hono_utils_types.JSONValue;
|
|
10466
10466
|
} | undefined;
|
|
10467
10467
|
} | {
|
|
10468
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10468
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10469
10469
|
enabled: boolean;
|
|
10470
10470
|
synchronous: boolean;
|
|
10471
10471
|
created_at: string;
|
|
@@ -10477,7 +10477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10477
10477
|
[x: string]: hono_utils_types.JSONValue;
|
|
10478
10478
|
} | undefined;
|
|
10479
10479
|
} | {
|
|
10480
|
-
trigger_id: "post-user-
|
|
10480
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
10481
10481
|
enabled: boolean;
|
|
10482
10482
|
synchronous: boolean;
|
|
10483
10483
|
created_at: string;
|
|
@@ -10489,7 +10489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10489
10489
|
[x: string]: hono_utils_types.JSONValue;
|
|
10490
10490
|
} | undefined;
|
|
10491
10491
|
} | {
|
|
10492
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10492
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
10493
10493
|
enabled: boolean;
|
|
10494
10494
|
synchronous: boolean;
|
|
10495
10495
|
created_at: string;
|
|
@@ -10549,7 +10549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10549
10549
|
log_type: string;
|
|
10550
10550
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10551
10551
|
actor: {
|
|
10552
|
-
type: "
|
|
10552
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
10553
10553
|
id?: string | undefined;
|
|
10554
10554
|
email?: string | undefined;
|
|
10555
10555
|
org_id?: string | undefined;
|
|
@@ -10857,7 +10857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10857
10857
|
created_at: string;
|
|
10858
10858
|
updated_at: string;
|
|
10859
10859
|
name: string;
|
|
10860
|
-
provider: "auth0" | "
|
|
10860
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10861
10861
|
connection: string;
|
|
10862
10862
|
enabled: boolean;
|
|
10863
10863
|
credentials: {
|
|
@@ -10889,7 +10889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10889
10889
|
created_at: string;
|
|
10890
10890
|
updated_at: string;
|
|
10891
10891
|
name: string;
|
|
10892
|
-
provider: "auth0" | "
|
|
10892
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10893
10893
|
connection: string;
|
|
10894
10894
|
enabled: boolean;
|
|
10895
10895
|
credentials: {
|
|
@@ -10915,7 +10915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10915
10915
|
} & {
|
|
10916
10916
|
json: {
|
|
10917
10917
|
name: string;
|
|
10918
|
-
provider: "auth0" | "
|
|
10918
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10919
10919
|
connection: string;
|
|
10920
10920
|
credentials: {
|
|
10921
10921
|
domain: string;
|
|
@@ -10932,7 +10932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10932
10932
|
created_at: string;
|
|
10933
10933
|
updated_at: string;
|
|
10934
10934
|
name: string;
|
|
10935
|
-
provider: "auth0" | "
|
|
10935
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10936
10936
|
connection: string;
|
|
10937
10937
|
enabled: boolean;
|
|
10938
10938
|
credentials: {
|
|
@@ -10963,7 +10963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10963
10963
|
json: {
|
|
10964
10964
|
id?: string | undefined;
|
|
10965
10965
|
name?: string | undefined;
|
|
10966
|
-
provider?: "auth0" | "
|
|
10966
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
10967
10967
|
connection?: string | undefined;
|
|
10968
10968
|
enabled?: boolean | undefined;
|
|
10969
10969
|
credentials?: {
|
|
@@ -10979,7 +10979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10979
10979
|
created_at: string;
|
|
10980
10980
|
updated_at: string;
|
|
10981
10981
|
name: string;
|
|
10982
|
-
provider: "auth0" | "
|
|
10982
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10983
10983
|
connection: string;
|
|
10984
10984
|
enabled: boolean;
|
|
10985
10985
|
credentials: {
|
|
@@ -11197,7 +11197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11197
11197
|
};
|
|
11198
11198
|
};
|
|
11199
11199
|
output: {
|
|
11200
|
-
type: "
|
|
11200
|
+
type: "fn" | "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" | "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" | "i" | "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" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
11201
11201
|
date: string;
|
|
11202
11202
|
isMobile: boolean;
|
|
11203
11203
|
log_id: string;
|
|
@@ -11236,7 +11236,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11236
11236
|
limit: number;
|
|
11237
11237
|
length: number;
|
|
11238
11238
|
logs: {
|
|
11239
|
-
type: "
|
|
11239
|
+
type: "fn" | "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" | "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" | "i" | "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" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
11240
11240
|
date: string;
|
|
11241
11241
|
isMobile: boolean;
|
|
11242
11242
|
log_id: string;
|
|
@@ -11290,7 +11290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11290
11290
|
};
|
|
11291
11291
|
};
|
|
11292
11292
|
output: {
|
|
11293
|
-
type: "
|
|
11293
|
+
type: "fn" | "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" | "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" | "i" | "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" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
11294
11294
|
date: string;
|
|
11295
11295
|
isMobile: boolean;
|
|
11296
11296
|
log_id: string;
|
|
@@ -11604,7 +11604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11604
11604
|
addons?: {
|
|
11605
11605
|
[x: string]: any;
|
|
11606
11606
|
} | undefined;
|
|
11607
|
-
token_endpoint_auth_method?: "none" | "
|
|
11607
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11608
11608
|
client_metadata?: {
|
|
11609
11609
|
[x: string]: string;
|
|
11610
11610
|
} | undefined;
|
|
@@ -11700,7 +11700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11700
11700
|
addons?: {
|
|
11701
11701
|
[x: string]: any;
|
|
11702
11702
|
} | undefined;
|
|
11703
|
-
token_endpoint_auth_method?: "none" | "
|
|
11703
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11704
11704
|
client_metadata?: {
|
|
11705
11705
|
[x: string]: string;
|
|
11706
11706
|
} | undefined;
|
|
@@ -11811,7 +11811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11811
11811
|
addons?: {
|
|
11812
11812
|
[x: string]: any;
|
|
11813
11813
|
} | undefined;
|
|
11814
|
-
token_endpoint_auth_method?: "none" | "
|
|
11814
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11815
11815
|
client_metadata?: {
|
|
11816
11816
|
[x: string]: string;
|
|
11817
11817
|
} | undefined;
|
|
@@ -11921,7 +11921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11921
11921
|
custom_login_page_preview?: string | undefined;
|
|
11922
11922
|
form_template?: string | undefined;
|
|
11923
11923
|
addons?: Record<string, any> | undefined;
|
|
11924
|
-
token_endpoint_auth_method?: "none" | "
|
|
11924
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11925
11925
|
client_metadata?: Record<string, string> | undefined;
|
|
11926
11926
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11927
11927
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12001,7 +12001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12001
12001
|
addons?: {
|
|
12002
12002
|
[x: string]: any;
|
|
12003
12003
|
} | undefined;
|
|
12004
|
-
token_endpoint_auth_method?: "none" | "
|
|
12004
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12005
12005
|
client_metadata?: {
|
|
12006
12006
|
[x: string]: string;
|
|
12007
12007
|
} | undefined;
|
|
@@ -12090,7 +12090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12090
12090
|
custom_login_page_preview?: string | undefined;
|
|
12091
12091
|
form_template?: string | undefined;
|
|
12092
12092
|
addons?: Record<string, any> | undefined;
|
|
12093
|
-
token_endpoint_auth_method?: "none" | "
|
|
12093
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12094
12094
|
client_metadata?: Record<string, string> | undefined;
|
|
12095
12095
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12096
12096
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12170,7 +12170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12170
12170
|
addons?: {
|
|
12171
12171
|
[x: string]: any;
|
|
12172
12172
|
} | undefined;
|
|
12173
|
-
token_endpoint_auth_method?: "none" | "
|
|
12173
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12174
12174
|
client_metadata?: {
|
|
12175
12175
|
[x: string]: string;
|
|
12176
12176
|
} | undefined;
|
|
@@ -13434,7 +13434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13434
13434
|
};
|
|
13435
13435
|
};
|
|
13436
13436
|
output: {
|
|
13437
|
-
type: "
|
|
13437
|
+
type: "fn" | "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" | "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" | "i" | "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" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13438
13438
|
date: string;
|
|
13439
13439
|
isMobile: boolean;
|
|
13440
13440
|
log_id: string;
|
|
@@ -13473,7 +13473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13473
13473
|
limit: number;
|
|
13474
13474
|
length: number;
|
|
13475
13475
|
logs: {
|
|
13476
|
-
type: "
|
|
13476
|
+
type: "fn" | "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" | "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" | "i" | "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" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13477
13477
|
date: string;
|
|
13478
13478
|
isMobile: boolean;
|
|
13479
13479
|
log_id: string;
|
|
@@ -14241,7 +14241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14241
14241
|
primary: boolean;
|
|
14242
14242
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14243
14243
|
verification_method?: "txt" | undefined;
|
|
14244
|
-
custom_client_ip_header?: "null" | "
|
|
14244
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14245
14245
|
domain_metadata?: {
|
|
14246
14246
|
[x: string]: string;
|
|
14247
14247
|
} | undefined;
|
|
@@ -14282,7 +14282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14282
14282
|
primary: boolean;
|
|
14283
14283
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14284
14284
|
verification_method?: "txt" | undefined;
|
|
14285
|
-
custom_client_ip_header?: "null" | "
|
|
14285
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14286
14286
|
domain_metadata?: {
|
|
14287
14287
|
[x: string]: string;
|
|
14288
14288
|
} | undefined;
|
|
@@ -14337,7 +14337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14337
14337
|
domain?: string | undefined;
|
|
14338
14338
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14339
14339
|
verification_method?: "txt" | undefined;
|
|
14340
|
-
custom_client_ip_header?: "null" | "
|
|
14340
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14341
14341
|
domain_metadata?: Record<string, string> | undefined;
|
|
14342
14342
|
custom_domain_id?: string | undefined;
|
|
14343
14343
|
primary?: boolean | undefined;
|
|
@@ -14364,7 +14364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14364
14364
|
primary: boolean;
|
|
14365
14365
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14366
14366
|
verification_method?: "txt" | undefined;
|
|
14367
|
-
custom_client_ip_header?: "null" | "
|
|
14367
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14368
14368
|
domain_metadata?: {
|
|
14369
14369
|
[x: string]: string;
|
|
14370
14370
|
} | undefined;
|
|
@@ -14400,7 +14400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14400
14400
|
custom_domain_id?: string | undefined;
|
|
14401
14401
|
verification_method?: "txt" | undefined;
|
|
14402
14402
|
tls_policy?: "recommended" | undefined;
|
|
14403
|
-
custom_client_ip_header?: "null" | "
|
|
14403
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14404
14404
|
domain_metadata?: Record<string, string> | undefined;
|
|
14405
14405
|
};
|
|
14406
14406
|
};
|
|
@@ -14411,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14411
|
primary: boolean;
|
|
14412
14412
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14413
14413
|
verification_method?: "txt" | undefined;
|
|
14414
|
-
custom_client_ip_header?: "null" | "
|
|
14414
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14415
14415
|
domain_metadata?: {
|
|
14416
14416
|
[x: string]: string;
|
|
14417
14417
|
} | undefined;
|
|
@@ -14452,7 +14452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14452
14452
|
primary: boolean;
|
|
14453
14453
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14454
14454
|
verification_method?: "txt" | undefined;
|
|
14455
|
-
custom_client_ip_header?: "null" | "
|
|
14455
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14456
14456
|
domain_metadata?: {
|
|
14457
14457
|
[x: string]: string;
|
|
14458
14458
|
} | undefined;
|
|
@@ -15057,7 +15057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15057
15057
|
logs: {
|
|
15058
15058
|
action_name: string;
|
|
15059
15059
|
lines: {
|
|
15060
|
-
level: "
|
|
15060
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15061
15061
|
message: string;
|
|
15062
15062
|
}[];
|
|
15063
15063
|
}[];
|
|
@@ -15724,7 +15724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15724
15724
|
args: hono_utils_types.JSONValue[];
|
|
15725
15725
|
}[];
|
|
15726
15726
|
logs: {
|
|
15727
|
-
level: "
|
|
15727
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15728
15728
|
message: string;
|
|
15729
15729
|
}[];
|
|
15730
15730
|
error?: string | undefined;
|
|
@@ -16022,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16022
16022
|
scope?: string | undefined;
|
|
16023
16023
|
grant_types?: string[] | undefined;
|
|
16024
16024
|
response_types?: string[] | undefined;
|
|
16025
|
-
token_endpoint_auth_method?: "none" | "
|
|
16025
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16026
16026
|
jwks_uri?: string | undefined;
|
|
16027
16027
|
jwks?: Record<string, unknown> | undefined;
|
|
16028
16028
|
software_id?: string | undefined;
|
|
@@ -16111,7 +16111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16111
16111
|
scope?: string | undefined;
|
|
16112
16112
|
grant_types?: string[] | undefined;
|
|
16113
16113
|
response_types?: string[] | undefined;
|
|
16114
|
-
token_endpoint_auth_method?: "none" | "
|
|
16114
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16115
16115
|
jwks_uri?: string | undefined;
|
|
16116
16116
|
jwks?: Record<string, unknown> | undefined;
|
|
16117
16117
|
software_id?: string | undefined;
|
|
@@ -16168,7 +16168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16168
16168
|
client_id: string;
|
|
16169
16169
|
redirect_url?: string | undefined;
|
|
16170
16170
|
login_hint?: string | undefined;
|
|
16171
|
-
screen_hint?: "
|
|
16171
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16172
16172
|
};
|
|
16173
16173
|
};
|
|
16174
16174
|
output: {};
|
|
@@ -16180,7 +16180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16180
16180
|
client_id: string;
|
|
16181
16181
|
redirect_url?: string | undefined;
|
|
16182
16182
|
login_hint?: string | undefined;
|
|
16183
|
-
screen_hint?: "
|
|
16183
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16184
16184
|
};
|
|
16185
16185
|
};
|
|
16186
16186
|
output: {
|
|
@@ -16457,12 +16457,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16457
16457
|
email: string;
|
|
16458
16458
|
send: "code" | "link";
|
|
16459
16459
|
authParams: {
|
|
16460
|
-
|
|
16460
|
+
state?: string | undefined;
|
|
16461
|
+
username?: string | undefined;
|
|
16461
16462
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16462
16463
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16463
16464
|
scope?: string | undefined;
|
|
16464
|
-
|
|
16465
|
-
state?: string | undefined;
|
|
16465
|
+
audience?: string | undefined;
|
|
16466
16466
|
act_as?: string | undefined;
|
|
16467
16467
|
redirect_uri?: string | undefined;
|
|
16468
16468
|
organization?: string | undefined;
|
|
@@ -16493,12 +16493,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16493
16493
|
phone_number: string;
|
|
16494
16494
|
send: "code" | "link";
|
|
16495
16495
|
authParams: {
|
|
16496
|
-
|
|
16496
|
+
state?: string | undefined;
|
|
16497
|
+
username?: string | undefined;
|
|
16497
16498
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16498
16499
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16499
16500
|
scope?: string | undefined;
|
|
16500
|
-
|
|
16501
|
-
state?: string | undefined;
|
|
16501
|
+
audience?: string | undefined;
|
|
16502
16502
|
act_as?: string | undefined;
|
|
16503
16503
|
redirect_uri?: string | undefined;
|
|
16504
16504
|
organization?: string | undefined;
|
|
@@ -16735,7 +16735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16735
16735
|
client_id: string;
|
|
16736
16736
|
username: string;
|
|
16737
16737
|
otp: string;
|
|
16738
|
-
realm: "
|
|
16738
|
+
realm: "email" | "sms";
|
|
16739
16739
|
};
|
|
16740
16740
|
} & {
|
|
16741
16741
|
json: {
|
|
@@ -16771,7 +16771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16771
16771
|
client_id: string;
|
|
16772
16772
|
username: string;
|
|
16773
16773
|
otp: string;
|
|
16774
|
-
realm: "
|
|
16774
|
+
realm: "email" | "sms";
|
|
16775
16775
|
};
|
|
16776
16776
|
};
|
|
16777
16777
|
output: {};
|
|
@@ -16812,7 +16812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16812
16812
|
client_id: string;
|
|
16813
16813
|
username: string;
|
|
16814
16814
|
otp: string;
|
|
16815
|
-
realm: "
|
|
16815
|
+
realm: "email" | "sms";
|
|
16816
16816
|
};
|
|
16817
16817
|
} & {
|
|
16818
16818
|
json: {
|
|
@@ -16848,7 +16848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16848
16848
|
client_id: string;
|
|
16849
16849
|
username: string;
|
|
16850
16850
|
otp: string;
|
|
16851
|
-
realm: "
|
|
16851
|
+
realm: "email" | "sms";
|
|
16852
16852
|
};
|
|
16853
16853
|
};
|
|
16854
16854
|
output: {
|
|
@@ -16897,7 +16897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16897
16897
|
client_id: string;
|
|
16898
16898
|
username: string;
|
|
16899
16899
|
otp: string;
|
|
16900
|
-
realm: "
|
|
16900
|
+
realm: "email" | "sms";
|
|
16901
16901
|
};
|
|
16902
16902
|
} & {
|
|
16903
16903
|
json: {
|
|
@@ -16933,7 +16933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16933
16933
|
client_id: string;
|
|
16934
16934
|
username: string;
|
|
16935
16935
|
otp: string;
|
|
16936
|
-
realm: "
|
|
16936
|
+
realm: "email" | "sms";
|
|
16937
16937
|
};
|
|
16938
16938
|
};
|
|
16939
16939
|
output: {
|
|
@@ -16977,7 +16977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16977
16977
|
client_id: string;
|
|
16978
16978
|
username: string;
|
|
16979
16979
|
otp: string;
|
|
16980
|
-
realm: "
|
|
16980
|
+
realm: "email" | "sms";
|
|
16981
16981
|
};
|
|
16982
16982
|
} & {
|
|
16983
16983
|
json: {
|
|
@@ -17013,7 +17013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17013
17013
|
client_id: string;
|
|
17014
17014
|
username: string;
|
|
17015
17015
|
otp: string;
|
|
17016
|
-
realm: "
|
|
17016
|
+
realm: "email" | "sms";
|
|
17017
17017
|
};
|
|
17018
17018
|
};
|
|
17019
17019
|
output: {
|
|
@@ -17057,7 +17057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17057
17057
|
client_id: string;
|
|
17058
17058
|
username: string;
|
|
17059
17059
|
otp: string;
|
|
17060
|
-
realm: "
|
|
17060
|
+
realm: "email" | "sms";
|
|
17061
17061
|
};
|
|
17062
17062
|
} & {
|
|
17063
17063
|
json: {
|
|
@@ -17093,7 +17093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17093
17093
|
client_id: string;
|
|
17094
17094
|
username: string;
|
|
17095
17095
|
otp: string;
|
|
17096
|
-
realm: "
|
|
17096
|
+
realm: "email" | "sms";
|
|
17097
17097
|
};
|
|
17098
17098
|
};
|
|
17099
17099
|
output: {
|
|
@@ -17300,7 +17300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17300
17300
|
};
|
|
17301
17301
|
output: {};
|
|
17302
17302
|
outputFormat: string;
|
|
17303
|
-
status:
|
|
17303
|
+
status: 302;
|
|
17304
17304
|
} | {
|
|
17305
17305
|
input: {
|
|
17306
17306
|
query: {
|
|
@@ -17314,7 +17314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17314
17314
|
};
|
|
17315
17315
|
output: {};
|
|
17316
17316
|
outputFormat: string;
|
|
17317
|
-
status:
|
|
17317
|
+
status: 200;
|
|
17318
17318
|
} | {
|
|
17319
17319
|
input: {
|
|
17320
17320
|
query: {
|
|
@@ -18158,6 +18158,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18158
18158
|
Bindings: Bindings;
|
|
18159
18159
|
Variables: Variables;
|
|
18160
18160
|
}, hono_types.MergeSchemaPath<{
|
|
18161
|
+
"/info": {
|
|
18162
|
+
$get: {
|
|
18163
|
+
input: {
|
|
18164
|
+
query: {
|
|
18165
|
+
state?: string | undefined;
|
|
18166
|
+
code?: string | undefined;
|
|
18167
|
+
error?: string | undefined;
|
|
18168
|
+
error_description?: string | undefined;
|
|
18169
|
+
};
|
|
18170
|
+
};
|
|
18171
|
+
output: Response;
|
|
18172
|
+
outputFormat: "json";
|
|
18173
|
+
status: hono_utils_http_status.StatusCode;
|
|
18174
|
+
};
|
|
18175
|
+
};
|
|
18176
|
+
} & {
|
|
18161
18177
|
"/guardian/enroll": {
|
|
18162
18178
|
$get: {
|
|
18163
18179
|
input: {
|
|
@@ -18286,7 +18302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18286
18302
|
$get: {
|
|
18287
18303
|
input: {
|
|
18288
18304
|
param: {
|
|
18289
|
-
screen: "signup" | "
|
|
18305
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18290
18306
|
};
|
|
18291
18307
|
} & {
|
|
18292
18308
|
query: {
|
|
@@ -18302,7 +18318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18302
18318
|
} | {
|
|
18303
18319
|
input: {
|
|
18304
18320
|
param: {
|
|
18305
|
-
screen: "signup" | "
|
|
18321
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18306
18322
|
};
|
|
18307
18323
|
} & {
|
|
18308
18324
|
query: {
|
|
@@ -18318,7 +18334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18318
18334
|
} | {
|
|
18319
18335
|
input: {
|
|
18320
18336
|
param: {
|
|
18321
|
-
screen: "signup" | "
|
|
18337
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18322
18338
|
};
|
|
18323
18339
|
} & {
|
|
18324
18340
|
query: {
|
|
@@ -18338,7 +18354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18338
18354
|
$post: {
|
|
18339
18355
|
input: {
|
|
18340
18356
|
param: {
|
|
18341
|
-
screen: "signup" | "
|
|
18357
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18342
18358
|
};
|
|
18343
18359
|
} & {
|
|
18344
18360
|
query: {
|
|
@@ -18356,7 +18372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18356
18372
|
} | {
|
|
18357
18373
|
input: {
|
|
18358
18374
|
param: {
|
|
18359
|
-
screen: "signup" | "
|
|
18375
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18360
18376
|
};
|
|
18361
18377
|
} & {
|
|
18362
18378
|
query: {
|
|
@@ -18374,7 +18390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18374
18390
|
} | {
|
|
18375
18391
|
input: {
|
|
18376
18392
|
param: {
|
|
18377
|
-
screen: "signup" | "
|
|
18393
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18378
18394
|
};
|
|
18379
18395
|
} & {
|
|
18380
18396
|
query: {
|