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/types/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
79
79
|
};
|
|
80
80
|
} & {
|
|
81
81
|
json: {
|
|
82
|
-
type: "
|
|
82
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
83
83
|
phone_number?: string | undefined;
|
|
84
84
|
totp_secret?: string | undefined;
|
|
85
85
|
credential_id?: string | undefined;
|
|
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
219
219
|
};
|
|
220
220
|
};
|
|
221
221
|
output: {
|
|
222
|
-
name: "
|
|
222
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
223
223
|
enabled: boolean;
|
|
224
224
|
trial_expired?: boolean | undefined;
|
|
225
225
|
}[];
|
|
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
374
374
|
$get: {
|
|
375
375
|
input: {
|
|
376
376
|
param: {
|
|
377
|
-
factor_name: "
|
|
377
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
378
378
|
};
|
|
379
379
|
} & {
|
|
380
380
|
header: {
|
|
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
382
|
};
|
|
383
383
|
};
|
|
384
384
|
output: {
|
|
385
|
-
name: "
|
|
385
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
386
386
|
enabled: boolean;
|
|
387
387
|
trial_expired?: boolean | undefined;
|
|
388
388
|
};
|
|
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
395
395
|
$put: {
|
|
396
396
|
input: {
|
|
397
397
|
param: {
|
|
398
|
-
factor_name: "
|
|
398
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
399
399
|
};
|
|
400
400
|
} & {
|
|
401
401
|
header: {
|
|
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
output: {
|
|
410
|
-
name: "
|
|
410
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
411
411
|
enabled: boolean;
|
|
412
412
|
trial_expired?: boolean | undefined;
|
|
413
413
|
};
|
|
@@ -2007,7 +2007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2007
2007
|
type: "REDIRECT";
|
|
2008
2008
|
action: "REDIRECT_USER";
|
|
2009
2009
|
params: {
|
|
2010
|
-
target: "custom" | "
|
|
2010
|
+
target: "custom" | "account" | "change-email";
|
|
2011
2011
|
custom_url?: string | undefined;
|
|
2012
2012
|
};
|
|
2013
2013
|
alias?: string | undefined;
|
|
@@ -2060,7 +2060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2060
2060
|
type: "REDIRECT";
|
|
2061
2061
|
action: "REDIRECT_USER";
|
|
2062
2062
|
params: {
|
|
2063
|
-
target: "custom" | "
|
|
2063
|
+
target: "custom" | "account" | "change-email";
|
|
2064
2064
|
custom_url?: string | undefined;
|
|
2065
2065
|
};
|
|
2066
2066
|
alias?: string | undefined;
|
|
@@ -2128,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2128
2128
|
type: "REDIRECT";
|
|
2129
2129
|
action: "REDIRECT_USER";
|
|
2130
2130
|
params: {
|
|
2131
|
-
target: "custom" | "
|
|
2131
|
+
target: "custom" | "account" | "change-email";
|
|
2132
2132
|
custom_url?: string | undefined;
|
|
2133
2133
|
};
|
|
2134
2134
|
alias?: string | undefined;
|
|
@@ -2209,7 +2209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2209
2209
|
type: "REDIRECT";
|
|
2210
2210
|
action: "REDIRECT_USER";
|
|
2211
2211
|
params: {
|
|
2212
|
-
target: "custom" | "
|
|
2212
|
+
target: "custom" | "account" | "change-email";
|
|
2213
2213
|
custom_url?: string | undefined;
|
|
2214
2214
|
};
|
|
2215
2215
|
alias?: string | undefined;
|
|
@@ -2257,7 +2257,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2257
2257
|
type: "REDIRECT";
|
|
2258
2258
|
action: "REDIRECT_USER";
|
|
2259
2259
|
params: {
|
|
2260
|
-
target: "custom" | "
|
|
2260
|
+
target: "custom" | "account" | "change-email";
|
|
2261
2261
|
custom_url?: string | undefined;
|
|
2262
2262
|
};
|
|
2263
2263
|
alias?: string | undefined;
|
|
@@ -2317,7 +2317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2317
2317
|
type: "REDIRECT";
|
|
2318
2318
|
action: "REDIRECT_USER";
|
|
2319
2319
|
params: {
|
|
2320
|
-
target: "custom" | "
|
|
2320
|
+
target: "custom" | "account" | "change-email";
|
|
2321
2321
|
custom_url?: string | undefined;
|
|
2322
2322
|
};
|
|
2323
2323
|
alias?: string | undefined;
|
|
@@ -2365,7 +2365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2365
2365
|
type: "REDIRECT";
|
|
2366
2366
|
action: "REDIRECT_USER";
|
|
2367
2367
|
params: {
|
|
2368
|
-
target: "custom" | "
|
|
2368
|
+
target: "custom" | "account" | "change-email";
|
|
2369
2369
|
custom_url?: string | undefined;
|
|
2370
2370
|
};
|
|
2371
2371
|
alias?: string | undefined;
|
|
@@ -6643,7 +6643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6643
6643
|
};
|
|
6644
6644
|
};
|
|
6645
6645
|
output: {
|
|
6646
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
6646
|
+
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";
|
|
6647
6647
|
language: string;
|
|
6648
6648
|
}[];
|
|
6649
6649
|
outputFormat: "json";
|
|
@@ -6681,7 +6681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6681
6681
|
$get: {
|
|
6682
6682
|
input: {
|
|
6683
6683
|
param: {
|
|
6684
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
6684
|
+
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";
|
|
6685
6685
|
language: string;
|
|
6686
6686
|
};
|
|
6687
6687
|
} & {
|
|
@@ -6703,7 +6703,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6703
6703
|
$put: {
|
|
6704
6704
|
input: {
|
|
6705
6705
|
param: {
|
|
6706
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
6706
|
+
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";
|
|
6707
6707
|
language: string;
|
|
6708
6708
|
};
|
|
6709
6709
|
} & {
|
|
@@ -6727,7 +6727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6727
6727
|
$delete: {
|
|
6728
6728
|
input: {
|
|
6729
6729
|
param: {
|
|
6730
|
-
prompt: "status" | "mfa" | "organizations" | "
|
|
6730
|
+
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";
|
|
6731
6731
|
language: string;
|
|
6732
6732
|
};
|
|
6733
6733
|
} & {
|
|
@@ -7763,7 +7763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7763
7763
|
};
|
|
7764
7764
|
};
|
|
7765
7765
|
output: ({
|
|
7766
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7766
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7767
7767
|
enabled: boolean;
|
|
7768
7768
|
synchronous: boolean;
|
|
7769
7769
|
created_at: string;
|
|
@@ -7775,7 +7775,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7775
7775
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7776
7776
|
} | undefined;
|
|
7777
7777
|
} | {
|
|
7778
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7778
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7779
7779
|
enabled: boolean;
|
|
7780
7780
|
synchronous: boolean;
|
|
7781
7781
|
created_at: string;
|
|
@@ -7787,7 +7787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7787
7787
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7788
7788
|
} | undefined;
|
|
7789
7789
|
} | {
|
|
7790
|
-
trigger_id: "post-user-
|
|
7790
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
7791
7791
|
enabled: boolean;
|
|
7792
7792
|
synchronous: boolean;
|
|
7793
7793
|
created_at: string;
|
|
@@ -7799,7 +7799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7799
7799
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7800
7800
|
} | undefined;
|
|
7801
7801
|
} | {
|
|
7802
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7802
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
7803
7803
|
enabled: boolean;
|
|
7804
7804
|
synchronous: boolean;
|
|
7805
7805
|
created_at: string;
|
|
@@ -7815,7 +7815,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7815
7815
|
limit: number;
|
|
7816
7816
|
length: number;
|
|
7817
7817
|
hooks: ({
|
|
7818
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7818
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7819
7819
|
enabled: boolean;
|
|
7820
7820
|
synchronous: boolean;
|
|
7821
7821
|
created_at: string;
|
|
@@ -7827,7 +7827,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7827
7827
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7828
7828
|
} | undefined;
|
|
7829
7829
|
} | {
|
|
7830
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7830
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7831
7831
|
enabled: boolean;
|
|
7832
7832
|
synchronous: boolean;
|
|
7833
7833
|
created_at: string;
|
|
@@ -7839,7 +7839,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7839
7839
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7840
7840
|
} | undefined;
|
|
7841
7841
|
} | {
|
|
7842
|
-
trigger_id: "post-user-
|
|
7842
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
7843
7843
|
enabled: boolean;
|
|
7844
7844
|
synchronous: boolean;
|
|
7845
7845
|
created_at: string;
|
|
@@ -7851,7 +7851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7851
7851
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7852
7852
|
} | undefined;
|
|
7853
7853
|
} | {
|
|
7854
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7854
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
7855
7855
|
enabled: boolean;
|
|
7856
7856
|
synchronous: boolean;
|
|
7857
7857
|
created_at: string;
|
|
@@ -7878,7 +7878,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7878
7878
|
};
|
|
7879
7879
|
} & {
|
|
7880
7880
|
json: {
|
|
7881
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7881
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7882
7882
|
url: string;
|
|
7883
7883
|
enabled?: boolean | undefined;
|
|
7884
7884
|
synchronous?: boolean | undefined;
|
|
@@ -7886,7 +7886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7886
7886
|
hook_id?: string | undefined;
|
|
7887
7887
|
metadata?: Record<string, unknown> | undefined;
|
|
7888
7888
|
} | {
|
|
7889
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7889
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7890
7890
|
form_id: string;
|
|
7891
7891
|
enabled?: boolean | undefined;
|
|
7892
7892
|
synchronous?: boolean | undefined;
|
|
@@ -7894,7 +7894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7894
7894
|
hook_id?: string | undefined;
|
|
7895
7895
|
metadata?: Record<string, unknown> | undefined;
|
|
7896
7896
|
} | {
|
|
7897
|
-
trigger_id: "post-user-
|
|
7897
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
7898
7898
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
7899
7899
|
enabled?: boolean | undefined;
|
|
7900
7900
|
synchronous?: boolean | undefined;
|
|
@@ -7902,7 +7902,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7902
7902
|
hook_id?: string | undefined;
|
|
7903
7903
|
metadata?: Record<string, unknown> | undefined;
|
|
7904
7904
|
} | {
|
|
7905
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7905
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
7906
7906
|
code_id: string;
|
|
7907
7907
|
enabled?: boolean | undefined;
|
|
7908
7908
|
synchronous?: boolean | undefined;
|
|
@@ -7912,7 +7912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7912
7912
|
};
|
|
7913
7913
|
};
|
|
7914
7914
|
output: {
|
|
7915
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7915
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7916
7916
|
enabled: boolean;
|
|
7917
7917
|
synchronous: boolean;
|
|
7918
7918
|
created_at: string;
|
|
@@ -7924,7 +7924,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7924
7924
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7925
7925
|
} | undefined;
|
|
7926
7926
|
} | {
|
|
7927
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7927
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7928
7928
|
enabled: boolean;
|
|
7929
7929
|
synchronous: boolean;
|
|
7930
7930
|
created_at: string;
|
|
@@ -7936,7 +7936,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7936
7936
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7937
7937
|
} | undefined;
|
|
7938
7938
|
} | {
|
|
7939
|
-
trigger_id: "post-user-
|
|
7939
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
7940
7940
|
enabled: boolean;
|
|
7941
7941
|
synchronous: boolean;
|
|
7942
7942
|
created_at: string;
|
|
@@ -7948,7 +7948,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7948
7948
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7949
7949
|
} | undefined;
|
|
7950
7950
|
} | {
|
|
7951
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7951
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
7952
7952
|
enabled: boolean;
|
|
7953
7953
|
synchronous: boolean;
|
|
7954
7954
|
created_at: string;
|
|
@@ -7994,7 +7994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7994
7994
|
json: unknown;
|
|
7995
7995
|
};
|
|
7996
7996
|
output: {
|
|
7997
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7997
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7998
7998
|
enabled: boolean;
|
|
7999
7999
|
synchronous: boolean;
|
|
8000
8000
|
created_at: string;
|
|
@@ -8006,7 +8006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8006
8006
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8007
8007
|
} | undefined;
|
|
8008
8008
|
} | {
|
|
8009
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8009
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8010
8010
|
enabled: boolean;
|
|
8011
8011
|
synchronous: boolean;
|
|
8012
8012
|
created_at: string;
|
|
@@ -8018,7 +8018,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8018
8018
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8019
8019
|
} | undefined;
|
|
8020
8020
|
} | {
|
|
8021
|
-
trigger_id: "post-user-
|
|
8021
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8022
8022
|
enabled: boolean;
|
|
8023
8023
|
synchronous: boolean;
|
|
8024
8024
|
created_at: string;
|
|
@@ -8030,7 +8030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8030
8030
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8031
8031
|
} | undefined;
|
|
8032
8032
|
} | {
|
|
8033
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8033
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8034
8034
|
enabled: boolean;
|
|
8035
8035
|
synchronous: boolean;
|
|
8036
8036
|
created_at: string;
|
|
@@ -8072,7 +8072,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8072
8072
|
};
|
|
8073
8073
|
};
|
|
8074
8074
|
output: {
|
|
8075
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8075
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8076
8076
|
enabled: boolean;
|
|
8077
8077
|
synchronous: boolean;
|
|
8078
8078
|
created_at: string;
|
|
@@ -8084,7 +8084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8084
8084
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8085
8085
|
} | undefined;
|
|
8086
8086
|
} | {
|
|
8087
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8087
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8088
8088
|
enabled: boolean;
|
|
8089
8089
|
synchronous: boolean;
|
|
8090
8090
|
created_at: string;
|
|
@@ -8096,7 +8096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8096
8096
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8097
8097
|
} | undefined;
|
|
8098
8098
|
} | {
|
|
8099
|
-
trigger_id: "post-user-
|
|
8099
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8100
8100
|
enabled: boolean;
|
|
8101
8101
|
synchronous: boolean;
|
|
8102
8102
|
created_at: string;
|
|
@@ -8108,7 +8108,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8108
8108
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8109
8109
|
} | undefined;
|
|
8110
8110
|
} | {
|
|
8111
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8111
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8112
8112
|
enabled: boolean;
|
|
8113
8113
|
synchronous: boolean;
|
|
8114
8114
|
created_at: string;
|
|
@@ -8168,7 +8168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8168
8168
|
log_type: string;
|
|
8169
8169
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8170
8170
|
actor: {
|
|
8171
|
-
type: "
|
|
8171
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
8172
8172
|
id?: string | undefined;
|
|
8173
8173
|
email?: string | undefined;
|
|
8174
8174
|
org_id?: string | undefined;
|
|
@@ -8476,7 +8476,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8476
8476
|
created_at: string;
|
|
8477
8477
|
updated_at: string;
|
|
8478
8478
|
name: string;
|
|
8479
|
-
provider: "auth0" | "
|
|
8479
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8480
8480
|
connection: string;
|
|
8481
8481
|
enabled: boolean;
|
|
8482
8482
|
credentials: {
|
|
@@ -8508,7 +8508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8508
8508
|
created_at: string;
|
|
8509
8509
|
updated_at: string;
|
|
8510
8510
|
name: string;
|
|
8511
|
-
provider: "auth0" | "
|
|
8511
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8512
8512
|
connection: string;
|
|
8513
8513
|
enabled: boolean;
|
|
8514
8514
|
credentials: {
|
|
@@ -8534,7 +8534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8534
8534
|
} & {
|
|
8535
8535
|
json: {
|
|
8536
8536
|
name: string;
|
|
8537
|
-
provider: "auth0" | "
|
|
8537
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8538
8538
|
connection: string;
|
|
8539
8539
|
credentials: {
|
|
8540
8540
|
domain: string;
|
|
@@ -8551,7 +8551,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8551
8551
|
created_at: string;
|
|
8552
8552
|
updated_at: string;
|
|
8553
8553
|
name: string;
|
|
8554
|
-
provider: "auth0" | "
|
|
8554
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8555
8555
|
connection: string;
|
|
8556
8556
|
enabled: boolean;
|
|
8557
8557
|
credentials: {
|
|
@@ -8582,7 +8582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8582
8582
|
json: {
|
|
8583
8583
|
id?: string | undefined;
|
|
8584
8584
|
name?: string | undefined;
|
|
8585
|
-
provider?: "auth0" | "
|
|
8585
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
8586
8586
|
connection?: string | undefined;
|
|
8587
8587
|
enabled?: boolean | undefined;
|
|
8588
8588
|
credentials?: {
|
|
@@ -8598,7 +8598,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8598
8598
|
created_at: string;
|
|
8599
8599
|
updated_at: string;
|
|
8600
8600
|
name: string;
|
|
8601
|
-
provider: "auth0" | "
|
|
8601
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8602
8602
|
connection: string;
|
|
8603
8603
|
enabled: boolean;
|
|
8604
8604
|
credentials: {
|
|
@@ -8816,7 +8816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8816
8816
|
};
|
|
8817
8817
|
};
|
|
8818
8818
|
output: {
|
|
8819
|
-
type: "
|
|
8819
|
+
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";
|
|
8820
8820
|
date: string;
|
|
8821
8821
|
isMobile: boolean;
|
|
8822
8822
|
log_id: string;
|
|
@@ -8855,7 +8855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8855
8855
|
limit: number;
|
|
8856
8856
|
length: number;
|
|
8857
8857
|
logs: {
|
|
8858
|
-
type: "
|
|
8858
|
+
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";
|
|
8859
8859
|
date: string;
|
|
8860
8860
|
isMobile: boolean;
|
|
8861
8861
|
log_id: string;
|
|
@@ -8909,7 +8909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8909
8909
|
};
|
|
8910
8910
|
};
|
|
8911
8911
|
output: {
|
|
8912
|
-
type: "
|
|
8912
|
+
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";
|
|
8913
8913
|
date: string;
|
|
8914
8914
|
isMobile: boolean;
|
|
8915
8915
|
log_id: string;
|
|
@@ -9223,7 +9223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9223
9223
|
addons?: {
|
|
9224
9224
|
[x: string]: any;
|
|
9225
9225
|
} | undefined;
|
|
9226
|
-
token_endpoint_auth_method?: "none" | "
|
|
9226
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9227
9227
|
client_metadata?: {
|
|
9228
9228
|
[x: string]: string;
|
|
9229
9229
|
} | undefined;
|
|
@@ -9319,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9319
9319
|
addons?: {
|
|
9320
9320
|
[x: string]: any;
|
|
9321
9321
|
} | undefined;
|
|
9322
|
-
token_endpoint_auth_method?: "none" | "
|
|
9322
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9323
9323
|
client_metadata?: {
|
|
9324
9324
|
[x: string]: string;
|
|
9325
9325
|
} | undefined;
|
|
@@ -9430,7 +9430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9430
9430
|
addons?: {
|
|
9431
9431
|
[x: string]: any;
|
|
9432
9432
|
} | undefined;
|
|
9433
|
-
token_endpoint_auth_method?: "none" | "
|
|
9433
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9434
9434
|
client_metadata?: {
|
|
9435
9435
|
[x: string]: string;
|
|
9436
9436
|
} | undefined;
|
|
@@ -9540,7 +9540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9540
9540
|
custom_login_page_preview?: string | undefined;
|
|
9541
9541
|
form_template?: string | undefined;
|
|
9542
9542
|
addons?: Record<string, any> | undefined;
|
|
9543
|
-
token_endpoint_auth_method?: "none" | "
|
|
9543
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9544
9544
|
client_metadata?: Record<string, string> | undefined;
|
|
9545
9545
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9546
9546
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9620,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9620
9620
|
addons?: {
|
|
9621
9621
|
[x: string]: any;
|
|
9622
9622
|
} | undefined;
|
|
9623
|
-
token_endpoint_auth_method?: "none" | "
|
|
9623
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9624
9624
|
client_metadata?: {
|
|
9625
9625
|
[x: string]: string;
|
|
9626
9626
|
} | undefined;
|
|
@@ -9709,7 +9709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9709
9709
|
custom_login_page_preview?: string | undefined;
|
|
9710
9710
|
form_template?: string | undefined;
|
|
9711
9711
|
addons?: Record<string, any> | undefined;
|
|
9712
|
-
token_endpoint_auth_method?: "none" | "
|
|
9712
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9713
9713
|
client_metadata?: Record<string, string> | undefined;
|
|
9714
9714
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9715
9715
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9789,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9789
9789
|
addons?: {
|
|
9790
9790
|
[x: string]: any;
|
|
9791
9791
|
} | undefined;
|
|
9792
|
-
token_endpoint_auth_method?: "none" | "
|
|
9792
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9793
9793
|
client_metadata?: {
|
|
9794
9794
|
[x: string]: string;
|
|
9795
9795
|
} | undefined;
|
|
@@ -11053,7 +11053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11053
11053
|
};
|
|
11054
11054
|
};
|
|
11055
11055
|
output: {
|
|
11056
|
-
type: "
|
|
11056
|
+
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";
|
|
11057
11057
|
date: string;
|
|
11058
11058
|
isMobile: boolean;
|
|
11059
11059
|
log_id: string;
|
|
@@ -11092,7 +11092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11092
11092
|
limit: number;
|
|
11093
11093
|
length: number;
|
|
11094
11094
|
logs: {
|
|
11095
|
-
type: "
|
|
11095
|
+
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";
|
|
11096
11096
|
date: string;
|
|
11097
11097
|
isMobile: boolean;
|
|
11098
11098
|
log_id: string;
|
|
@@ -11860,7 +11860,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11860
11860
|
primary: boolean;
|
|
11861
11861
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11862
11862
|
verification_method?: "txt" | undefined;
|
|
11863
|
-
custom_client_ip_header?: "null" | "
|
|
11863
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11864
11864
|
domain_metadata?: {
|
|
11865
11865
|
[x: string]: string;
|
|
11866
11866
|
} | undefined;
|
|
@@ -11901,7 +11901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11901
11901
|
primary: boolean;
|
|
11902
11902
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11903
11903
|
verification_method?: "txt" | undefined;
|
|
11904
|
-
custom_client_ip_header?: "null" | "
|
|
11904
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11905
11905
|
domain_metadata?: {
|
|
11906
11906
|
[x: string]: string;
|
|
11907
11907
|
} | undefined;
|
|
@@ -11956,7 +11956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11956
11956
|
domain?: string | undefined;
|
|
11957
11957
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
11958
11958
|
verification_method?: "txt" | undefined;
|
|
11959
|
-
custom_client_ip_header?: "null" | "
|
|
11959
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11960
11960
|
domain_metadata?: Record<string, string> | undefined;
|
|
11961
11961
|
custom_domain_id?: string | undefined;
|
|
11962
11962
|
primary?: boolean | undefined;
|
|
@@ -11983,7 +11983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11983
11983
|
primary: boolean;
|
|
11984
11984
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11985
11985
|
verification_method?: "txt" | undefined;
|
|
11986
|
-
custom_client_ip_header?: "null" | "
|
|
11986
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11987
11987
|
domain_metadata?: {
|
|
11988
11988
|
[x: string]: string;
|
|
11989
11989
|
} | undefined;
|
|
@@ -12019,7 +12019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12019
12019
|
custom_domain_id?: string | undefined;
|
|
12020
12020
|
verification_method?: "txt" | undefined;
|
|
12021
12021
|
tls_policy?: "recommended" | undefined;
|
|
12022
|
-
custom_client_ip_header?: "null" | "
|
|
12022
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12023
12023
|
domain_metadata?: Record<string, string> | undefined;
|
|
12024
12024
|
};
|
|
12025
12025
|
};
|
|
@@ -12030,7 +12030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12030
12030
|
primary: boolean;
|
|
12031
12031
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12032
12032
|
verification_method?: "txt" | undefined;
|
|
12033
|
-
custom_client_ip_header?: "null" | "
|
|
12033
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12034
12034
|
domain_metadata?: {
|
|
12035
12035
|
[x: string]: string;
|
|
12036
12036
|
} | undefined;
|
|
@@ -12071,7 +12071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12071
|
primary: boolean;
|
|
12072
12072
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12073
12073
|
verification_method?: "txt" | undefined;
|
|
12074
|
-
custom_client_ip_header?: "null" | "
|
|
12074
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12075
12075
|
domain_metadata?: {
|
|
12076
12076
|
[x: string]: string;
|
|
12077
12077
|
} | undefined;
|
|
@@ -12676,7 +12676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12676
12676
|
logs: {
|
|
12677
12677
|
action_name: string;
|
|
12678
12678
|
lines: {
|
|
12679
|
-
level: "
|
|
12679
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12680
12680
|
message: string;
|
|
12681
12681
|
}[];
|
|
12682
12682
|
}[];
|
|
@@ -13343,7 +13343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13343
13343
|
args: import("hono/utils/types").JSONValue[];
|
|
13344
13344
|
}[];
|
|
13345
13345
|
logs: {
|
|
13346
|
-
level: "
|
|
13346
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13347
13347
|
message: string;
|
|
13348
13348
|
}[];
|
|
13349
13349
|
error?: string | undefined;
|
|
@@ -13641,7 +13641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13641
13641
|
scope?: string | undefined;
|
|
13642
13642
|
grant_types?: string[] | undefined;
|
|
13643
13643
|
response_types?: string[] | undefined;
|
|
13644
|
-
token_endpoint_auth_method?: "none" | "
|
|
13644
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13645
13645
|
jwks_uri?: string | undefined;
|
|
13646
13646
|
jwks?: Record<string, unknown> | undefined;
|
|
13647
13647
|
software_id?: string | undefined;
|
|
@@ -13730,7 +13730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13730
13730
|
scope?: string | undefined;
|
|
13731
13731
|
grant_types?: string[] | undefined;
|
|
13732
13732
|
response_types?: string[] | undefined;
|
|
13733
|
-
token_endpoint_auth_method?: "none" | "
|
|
13733
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13734
13734
|
jwks_uri?: string | undefined;
|
|
13735
13735
|
jwks?: Record<string, unknown> | undefined;
|
|
13736
13736
|
software_id?: string | undefined;
|
|
@@ -13787,7 +13787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13787
13787
|
client_id: string;
|
|
13788
13788
|
redirect_url?: string | undefined;
|
|
13789
13789
|
login_hint?: string | undefined;
|
|
13790
|
-
screen_hint?: "
|
|
13790
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13791
13791
|
};
|
|
13792
13792
|
};
|
|
13793
13793
|
output: {};
|
|
@@ -13799,7 +13799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13799
13799
|
client_id: string;
|
|
13800
13800
|
redirect_url?: string | undefined;
|
|
13801
13801
|
login_hint?: string | undefined;
|
|
13802
|
-
screen_hint?: "
|
|
13802
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13803
13803
|
};
|
|
13804
13804
|
};
|
|
13805
13805
|
output: {
|
|
@@ -14076,12 +14076,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14076
14076
|
email: string;
|
|
14077
14077
|
send: "code" | "link";
|
|
14078
14078
|
authParams: {
|
|
14079
|
-
|
|
14079
|
+
state?: string | undefined;
|
|
14080
|
+
username?: string | undefined;
|
|
14080
14081
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14081
14082
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14082
14083
|
scope?: string | undefined;
|
|
14083
|
-
|
|
14084
|
-
state?: string | undefined;
|
|
14084
|
+
audience?: string | undefined;
|
|
14085
14085
|
act_as?: string | undefined;
|
|
14086
14086
|
redirect_uri?: string | undefined;
|
|
14087
14087
|
organization?: string | undefined;
|
|
@@ -14112,12 +14112,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14112
14112
|
phone_number: string;
|
|
14113
14113
|
send: "code" | "link";
|
|
14114
14114
|
authParams: {
|
|
14115
|
-
|
|
14115
|
+
state?: string | undefined;
|
|
14116
|
+
username?: string | undefined;
|
|
14116
14117
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14117
14118
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14118
14119
|
scope?: string | undefined;
|
|
14119
|
-
|
|
14120
|
-
state?: string | undefined;
|
|
14120
|
+
audience?: string | undefined;
|
|
14121
14121
|
act_as?: string | undefined;
|
|
14122
14122
|
redirect_uri?: string | undefined;
|
|
14123
14123
|
organization?: string | undefined;
|
|
@@ -14354,7 +14354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14354
14354
|
client_id: string;
|
|
14355
14355
|
username: string;
|
|
14356
14356
|
otp: string;
|
|
14357
|
-
realm: "
|
|
14357
|
+
realm: "email" | "sms";
|
|
14358
14358
|
};
|
|
14359
14359
|
} & {
|
|
14360
14360
|
json: {
|
|
@@ -14390,7 +14390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14390
14390
|
client_id: string;
|
|
14391
14391
|
username: string;
|
|
14392
14392
|
otp: string;
|
|
14393
|
-
realm: "
|
|
14393
|
+
realm: "email" | "sms";
|
|
14394
14394
|
};
|
|
14395
14395
|
};
|
|
14396
14396
|
output: {};
|
|
@@ -14431,7 +14431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14431
14431
|
client_id: string;
|
|
14432
14432
|
username: string;
|
|
14433
14433
|
otp: string;
|
|
14434
|
-
realm: "
|
|
14434
|
+
realm: "email" | "sms";
|
|
14435
14435
|
};
|
|
14436
14436
|
} & {
|
|
14437
14437
|
json: {
|
|
@@ -14467,7 +14467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14467
14467
|
client_id: string;
|
|
14468
14468
|
username: string;
|
|
14469
14469
|
otp: string;
|
|
14470
|
-
realm: "
|
|
14470
|
+
realm: "email" | "sms";
|
|
14471
14471
|
};
|
|
14472
14472
|
};
|
|
14473
14473
|
output: {
|
|
@@ -14516,7 +14516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14516
14516
|
client_id: string;
|
|
14517
14517
|
username: string;
|
|
14518
14518
|
otp: string;
|
|
14519
|
-
realm: "
|
|
14519
|
+
realm: "email" | "sms";
|
|
14520
14520
|
};
|
|
14521
14521
|
} & {
|
|
14522
14522
|
json: {
|
|
@@ -14552,7 +14552,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14552
14552
|
client_id: string;
|
|
14553
14553
|
username: string;
|
|
14554
14554
|
otp: string;
|
|
14555
|
-
realm: "
|
|
14555
|
+
realm: "email" | "sms";
|
|
14556
14556
|
};
|
|
14557
14557
|
};
|
|
14558
14558
|
output: {
|
|
@@ -14596,7 +14596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14596
14596
|
client_id: string;
|
|
14597
14597
|
username: string;
|
|
14598
14598
|
otp: string;
|
|
14599
|
-
realm: "
|
|
14599
|
+
realm: "email" | "sms";
|
|
14600
14600
|
};
|
|
14601
14601
|
} & {
|
|
14602
14602
|
json: {
|
|
@@ -14632,7 +14632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14632
14632
|
client_id: string;
|
|
14633
14633
|
username: string;
|
|
14634
14634
|
otp: string;
|
|
14635
|
-
realm: "
|
|
14635
|
+
realm: "email" | "sms";
|
|
14636
14636
|
};
|
|
14637
14637
|
};
|
|
14638
14638
|
output: {
|
|
@@ -14676,7 +14676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14676
14676
|
client_id: string;
|
|
14677
14677
|
username: string;
|
|
14678
14678
|
otp: string;
|
|
14679
|
-
realm: "
|
|
14679
|
+
realm: "email" | "sms";
|
|
14680
14680
|
};
|
|
14681
14681
|
} & {
|
|
14682
14682
|
json: {
|
|
@@ -14712,7 +14712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14712
14712
|
client_id: string;
|
|
14713
14713
|
username: string;
|
|
14714
14714
|
otp: string;
|
|
14715
|
-
realm: "
|
|
14715
|
+
realm: "email" | "sms";
|
|
14716
14716
|
};
|
|
14717
14717
|
};
|
|
14718
14718
|
output: {
|
|
@@ -14919,7 +14919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14919
14919
|
};
|
|
14920
14920
|
output: {};
|
|
14921
14921
|
outputFormat: string;
|
|
14922
|
-
status:
|
|
14922
|
+
status: 302;
|
|
14923
14923
|
} | {
|
|
14924
14924
|
input: {
|
|
14925
14925
|
query: {
|
|
@@ -14933,7 +14933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14933
14933
|
};
|
|
14934
14934
|
output: {};
|
|
14935
14935
|
outputFormat: string;
|
|
14936
|
-
status:
|
|
14936
|
+
status: 200;
|
|
14937
14937
|
} | {
|
|
14938
14938
|
input: {
|
|
14939
14939
|
query: {
|
|
@@ -15777,6 +15777,22 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15777
15777
|
Bindings: Bindings;
|
|
15778
15778
|
Variables: Variables;
|
|
15779
15779
|
}, import("hono/types").MergeSchemaPath<{
|
|
15780
|
+
"/info": {
|
|
15781
|
+
$get: {
|
|
15782
|
+
input: {
|
|
15783
|
+
query: {
|
|
15784
|
+
state?: string | undefined;
|
|
15785
|
+
code?: string | undefined;
|
|
15786
|
+
error?: string | undefined;
|
|
15787
|
+
error_description?: string | undefined;
|
|
15788
|
+
};
|
|
15789
|
+
};
|
|
15790
|
+
output: Response;
|
|
15791
|
+
outputFormat: "json";
|
|
15792
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
15793
|
+
};
|
|
15794
|
+
};
|
|
15795
|
+
} & {
|
|
15780
15796
|
"/guardian/enroll": {
|
|
15781
15797
|
$get: {
|
|
15782
15798
|
input: {
|
|
@@ -15905,7 +15921,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15905
15921
|
$get: {
|
|
15906
15922
|
input: {
|
|
15907
15923
|
param: {
|
|
15908
|
-
screen: "signup" | "
|
|
15924
|
+
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";
|
|
15909
15925
|
};
|
|
15910
15926
|
} & {
|
|
15911
15927
|
query: {
|
|
@@ -15921,7 +15937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15921
15937
|
} | {
|
|
15922
15938
|
input: {
|
|
15923
15939
|
param: {
|
|
15924
|
-
screen: "signup" | "
|
|
15940
|
+
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";
|
|
15925
15941
|
};
|
|
15926
15942
|
} & {
|
|
15927
15943
|
query: {
|
|
@@ -15937,7 +15953,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15937
15953
|
} | {
|
|
15938
15954
|
input: {
|
|
15939
15955
|
param: {
|
|
15940
|
-
screen: "signup" | "
|
|
15956
|
+
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";
|
|
15941
15957
|
};
|
|
15942
15958
|
} & {
|
|
15943
15959
|
query: {
|
|
@@ -15957,7 +15973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15957
15973
|
$post: {
|
|
15958
15974
|
input: {
|
|
15959
15975
|
param: {
|
|
15960
|
-
screen: "signup" | "
|
|
15976
|
+
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";
|
|
15961
15977
|
};
|
|
15962
15978
|
} & {
|
|
15963
15979
|
query: {
|
|
@@ -15975,7 +15991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15975
15991
|
} | {
|
|
15976
15992
|
input: {
|
|
15977
15993
|
param: {
|
|
15978
|
-
screen: "signup" | "
|
|
15994
|
+
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";
|
|
15979
15995
|
};
|
|
15980
15996
|
} & {
|
|
15981
15997
|
query: {
|
|
@@ -15993,7 +16009,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15993
16009
|
} | {
|
|
15994
16010
|
input: {
|
|
15995
16011
|
param: {
|
|
15996
|
-
screen: "signup" | "
|
|
16012
|
+
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";
|
|
15997
16013
|
};
|
|
15998
16014
|
} & {
|
|
15999
16015
|
query: {
|