authhero 8.17.2 → 8.17.3
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 +23 -23
- package/dist/authhero.d.ts +120 -120
- package/dist/authhero.mjs +52 -49
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +120 -120
- package/dist/types/routes/management-api/index.d.ts +85 -85
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -59,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
59
59
|
$get: {
|
|
60
60
|
input: {
|
|
61
61
|
query: {
|
|
62
|
-
include_password_hashes?: "
|
|
63
|
-
gzip?: "
|
|
62
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
63
|
+
gzip?: "false" | "true" | undefined;
|
|
64
64
|
};
|
|
65
65
|
} & {
|
|
66
66
|
header: {
|
|
@@ -73,8 +73,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
73
73
|
} | {
|
|
74
74
|
input: {
|
|
75
75
|
query: {
|
|
76
|
-
include_password_hashes?: "
|
|
77
|
-
gzip?: "
|
|
76
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
77
|
+
gzip?: "false" | "true" | undefined;
|
|
78
78
|
};
|
|
79
79
|
} & {
|
|
80
80
|
header: {
|
|
@@ -93,7 +93,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
93
93
|
$post: {
|
|
94
94
|
input: {
|
|
95
95
|
query: {
|
|
96
|
-
include_password_hashes?: "
|
|
96
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
97
97
|
};
|
|
98
98
|
} & {
|
|
99
99
|
header: {
|
|
@@ -147,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
147
147
|
};
|
|
148
148
|
} & {
|
|
149
149
|
json: {
|
|
150
|
-
type: "push" | "email" | "passkey" | "
|
|
150
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
151
151
|
phone_number?: string | undefined;
|
|
152
152
|
totp_secret?: string | undefined;
|
|
153
153
|
credential_id?: string | undefined;
|
|
@@ -287,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
287
287
|
};
|
|
288
288
|
};
|
|
289
289
|
output: {
|
|
290
|
-
name: "
|
|
290
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
291
291
|
enabled: boolean;
|
|
292
292
|
trial_expired?: boolean | undefined;
|
|
293
293
|
}[];
|
|
@@ -442,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
442
442
|
$get: {
|
|
443
443
|
input: {
|
|
444
444
|
param: {
|
|
445
|
-
factor_name: "
|
|
445
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
446
446
|
};
|
|
447
447
|
} & {
|
|
448
448
|
header: {
|
|
@@ -450,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
450
450
|
};
|
|
451
451
|
};
|
|
452
452
|
output: {
|
|
453
|
-
name: "
|
|
453
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
454
454
|
enabled: boolean;
|
|
455
455
|
trial_expired?: boolean | undefined;
|
|
456
456
|
};
|
|
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
463
463
|
$put: {
|
|
464
464
|
input: {
|
|
465
465
|
param: {
|
|
466
|
-
factor_name: "
|
|
466
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
467
467
|
};
|
|
468
468
|
} & {
|
|
469
469
|
header: {
|
|
@@ -475,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
475
475
|
};
|
|
476
476
|
};
|
|
477
477
|
output: {
|
|
478
|
-
name: "
|
|
478
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
479
479
|
enabled: boolean;
|
|
480
480
|
trial_expired?: boolean | undefined;
|
|
481
481
|
};
|
|
@@ -1408,8 +1408,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1408
1408
|
};
|
|
1409
1409
|
} & {
|
|
1410
1410
|
json: {
|
|
1411
|
-
show_as_button?: boolean | undefined;
|
|
1412
1411
|
assign_membership_on_login?: boolean | undefined;
|
|
1412
|
+
show_as_button?: boolean | undefined;
|
|
1413
1413
|
is_signup_enabled?: boolean | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
};
|
|
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6879
6879
|
};
|
|
6880
6880
|
};
|
|
6881
6881
|
output: {
|
|
6882
|
-
prompt: "status" | "
|
|
6882
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6883
6883
|
language: string;
|
|
6884
6884
|
}[];
|
|
6885
6885
|
outputFormat: "json";
|
|
@@ -6917,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6917
6917
|
$get: {
|
|
6918
6918
|
input: {
|
|
6919
6919
|
param: {
|
|
6920
|
-
prompt: "status" | "
|
|
6920
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
};
|
|
6923
6923
|
} & {
|
|
@@ -6939,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6939
6939
|
$put: {
|
|
6940
6940
|
input: {
|
|
6941
6941
|
param: {
|
|
6942
|
-
prompt: "status" | "
|
|
6942
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6943
6943
|
language: string;
|
|
6944
6944
|
};
|
|
6945
6945
|
} & {
|
|
@@ -6963,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6963
6963
|
$delete: {
|
|
6964
6964
|
input: {
|
|
6965
6965
|
param: {
|
|
6966
|
-
prompt: "status" | "
|
|
6966
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6967
6967
|
language: string;
|
|
6968
6968
|
};
|
|
6969
6969
|
} & {
|
|
@@ -7055,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7055
7055
|
active?: boolean | undefined;
|
|
7056
7056
|
} | undefined;
|
|
7057
7057
|
signup?: {
|
|
7058
|
-
status?: "
|
|
7058
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7059
7059
|
verification?: {
|
|
7060
7060
|
active?: boolean | undefined;
|
|
7061
7061
|
} | undefined;
|
|
@@ -7072,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7072
7072
|
active?: boolean | undefined;
|
|
7073
7073
|
} | undefined;
|
|
7074
7074
|
signup?: {
|
|
7075
|
-
status?: "
|
|
7075
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7076
7076
|
} | undefined;
|
|
7077
7077
|
validation?: {
|
|
7078
7078
|
max_length?: number | undefined;
|
|
@@ -7089,7 +7089,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7089
7089
|
active?: boolean | undefined;
|
|
7090
7090
|
} | undefined;
|
|
7091
7091
|
signup?: {
|
|
7092
|
-
status?: "
|
|
7092
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7093
7093
|
} | undefined;
|
|
7094
7094
|
} | undefined;
|
|
7095
7095
|
} | undefined;
|
|
@@ -7189,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7189
7189
|
active?: boolean | undefined;
|
|
7190
7190
|
} | undefined;
|
|
7191
7191
|
signup?: {
|
|
7192
|
-
status?: "
|
|
7192
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7193
7193
|
verification?: {
|
|
7194
7194
|
active?: boolean | undefined;
|
|
7195
7195
|
} | undefined;
|
|
@@ -7206,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7206
7206
|
active?: boolean | undefined;
|
|
7207
7207
|
} | undefined;
|
|
7208
7208
|
signup?: {
|
|
7209
|
-
status?: "
|
|
7209
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7210
7210
|
} | undefined;
|
|
7211
7211
|
validation?: {
|
|
7212
7212
|
max_length?: number | undefined;
|
|
@@ -7223,7 +7223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7223
7223
|
active?: boolean | undefined;
|
|
7224
7224
|
} | undefined;
|
|
7225
7225
|
signup?: {
|
|
7226
|
-
status?: "
|
|
7226
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7227
7227
|
} | undefined;
|
|
7228
7228
|
} | undefined;
|
|
7229
7229
|
} | undefined;
|
|
@@ -7338,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7338
7338
|
active?: boolean | undefined;
|
|
7339
7339
|
} | undefined;
|
|
7340
7340
|
signup?: {
|
|
7341
|
-
status?: "
|
|
7341
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7342
7342
|
verification?: {
|
|
7343
7343
|
active?: boolean | undefined;
|
|
7344
7344
|
} | undefined;
|
|
@@ -7355,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7355
7355
|
active?: boolean | undefined;
|
|
7356
7356
|
} | undefined;
|
|
7357
7357
|
signup?: {
|
|
7358
|
-
status?: "
|
|
7358
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7359
7359
|
} | undefined;
|
|
7360
7360
|
validation?: {
|
|
7361
7361
|
max_length?: number | undefined;
|
|
@@ -7372,7 +7372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7372
7372
|
active?: boolean | undefined;
|
|
7373
7373
|
} | undefined;
|
|
7374
7374
|
signup?: {
|
|
7375
|
-
status?: "
|
|
7375
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7376
7376
|
} | undefined;
|
|
7377
7377
|
} | undefined;
|
|
7378
7378
|
} | undefined;
|
|
@@ -7517,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7517
7517
|
active?: boolean | undefined;
|
|
7518
7518
|
} | undefined;
|
|
7519
7519
|
signup?: {
|
|
7520
|
-
status?: "
|
|
7520
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7521
7521
|
verification?: {
|
|
7522
7522
|
active?: boolean | undefined;
|
|
7523
7523
|
} | undefined;
|
|
@@ -7534,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7534
7534
|
active?: boolean | undefined;
|
|
7535
7535
|
} | undefined;
|
|
7536
7536
|
signup?: {
|
|
7537
|
-
status?: "
|
|
7537
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7538
7538
|
} | undefined;
|
|
7539
7539
|
validation?: {
|
|
7540
7540
|
max_length?: number | undefined;
|
|
@@ -7551,7 +7551,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7551
7551
|
active?: boolean | undefined;
|
|
7552
7552
|
} | undefined;
|
|
7553
7553
|
signup?: {
|
|
7554
|
-
status?: "
|
|
7554
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7555
7555
|
} | undefined;
|
|
7556
7556
|
} | undefined;
|
|
7557
7557
|
} | undefined;
|
|
@@ -7675,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7675
7675
|
active?: boolean | undefined;
|
|
7676
7676
|
} | undefined;
|
|
7677
7677
|
signup?: {
|
|
7678
|
-
status?: "
|
|
7678
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7679
7679
|
verification?: {
|
|
7680
7680
|
active?: boolean | undefined;
|
|
7681
7681
|
} | undefined;
|
|
@@ -7692,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7692
7692
|
active?: boolean | undefined;
|
|
7693
7693
|
} | undefined;
|
|
7694
7694
|
signup?: {
|
|
7695
|
-
status?: "
|
|
7695
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7696
7696
|
} | undefined;
|
|
7697
7697
|
validation?: {
|
|
7698
7698
|
max_length?: number | undefined;
|
|
@@ -7709,7 +7709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7709
7709
|
active?: boolean | undefined;
|
|
7710
7710
|
} | undefined;
|
|
7711
7711
|
signup?: {
|
|
7712
|
-
status?: "
|
|
7712
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7713
7713
|
} | undefined;
|
|
7714
7714
|
} | undefined;
|
|
7715
7715
|
} | undefined;
|
|
@@ -7861,7 +7861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7861
7861
|
tenant_id: string;
|
|
7862
7862
|
created_at: string;
|
|
7863
7863
|
updated_at: string;
|
|
7864
|
-
deploymentStatus: "
|
|
7864
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7865
7865
|
secrets?: {
|
|
7866
7866
|
[x: string]: string;
|
|
7867
7867
|
} | undefined;
|
|
@@ -7951,7 +7951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7951
7951
|
tenant_id: string;
|
|
7952
7952
|
created_at: string;
|
|
7953
7953
|
updated_at: string;
|
|
7954
|
-
deploymentStatus: "
|
|
7954
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7955
7955
|
secrets?: {
|
|
7956
7956
|
[x: string]: string;
|
|
7957
7957
|
} | undefined;
|
|
@@ -8774,7 +8774,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8774
8774
|
created_at: string;
|
|
8775
8775
|
updated_at: string;
|
|
8776
8776
|
name: string;
|
|
8777
|
-
provider: "auth0" | "
|
|
8777
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8778
8778
|
connection: string;
|
|
8779
8779
|
enabled: boolean;
|
|
8780
8780
|
credentials: {
|
|
@@ -8806,7 +8806,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8806
8806
|
created_at: string;
|
|
8807
8807
|
updated_at: string;
|
|
8808
8808
|
name: string;
|
|
8809
|
-
provider: "auth0" | "
|
|
8809
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8810
8810
|
connection: string;
|
|
8811
8811
|
enabled: boolean;
|
|
8812
8812
|
credentials: {
|
|
@@ -8832,7 +8832,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8832
8832
|
} & {
|
|
8833
8833
|
json: {
|
|
8834
8834
|
name: string;
|
|
8835
|
-
provider: "auth0" | "
|
|
8835
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8836
8836
|
connection: string;
|
|
8837
8837
|
credentials: {
|
|
8838
8838
|
domain: string;
|
|
@@ -8849,7 +8849,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8849
8849
|
created_at: string;
|
|
8850
8850
|
updated_at: string;
|
|
8851
8851
|
name: string;
|
|
8852
|
-
provider: "auth0" | "
|
|
8852
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8853
8853
|
connection: string;
|
|
8854
8854
|
enabled: boolean;
|
|
8855
8855
|
credentials: {
|
|
@@ -8880,7 +8880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8880
8880
|
json: {
|
|
8881
8881
|
id?: string | undefined;
|
|
8882
8882
|
name?: string | undefined;
|
|
8883
|
-
provider?: "auth0" | "
|
|
8883
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8884
8884
|
connection?: string | undefined;
|
|
8885
8885
|
enabled?: boolean | undefined;
|
|
8886
8886
|
credentials?: {
|
|
@@ -8896,7 +8896,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8896
8896
|
created_at: string;
|
|
8897
8897
|
updated_at: string;
|
|
8898
8898
|
name: string;
|
|
8899
|
-
provider: "auth0" | "
|
|
8899
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8900
8900
|
connection: string;
|
|
8901
8901
|
enabled: boolean;
|
|
8902
8902
|
credentials: {
|
|
@@ -9114,7 +9114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9114
9114
|
};
|
|
9115
9115
|
};
|
|
9116
9116
|
output: {
|
|
9117
|
-
type: "
|
|
9117
|
+
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" | "festft" | "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" | "sestft" | "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";
|
|
9118
9118
|
date: string;
|
|
9119
9119
|
isMobile: boolean;
|
|
9120
9120
|
log_id: string;
|
|
@@ -9153,7 +9153,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9153
9153
|
limit: number;
|
|
9154
9154
|
length: number;
|
|
9155
9155
|
logs: {
|
|
9156
|
-
type: "
|
|
9156
|
+
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" | "festft" | "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" | "sestft" | "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";
|
|
9157
9157
|
date: string;
|
|
9158
9158
|
isMobile: boolean;
|
|
9159
9159
|
log_id: string;
|
|
@@ -9207,7 +9207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9207
9207
|
};
|
|
9208
9208
|
};
|
|
9209
9209
|
output: {
|
|
9210
|
-
type: "
|
|
9210
|
+
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" | "festft" | "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" | "sestft" | "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";
|
|
9211
9211
|
date: string;
|
|
9212
9212
|
isMobile: boolean;
|
|
9213
9213
|
log_id: string;
|
|
@@ -9595,7 +9595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9595
9595
|
addons?: {
|
|
9596
9596
|
[x: string]: any;
|
|
9597
9597
|
} | undefined;
|
|
9598
|
-
token_endpoint_auth_method?: "none" | "
|
|
9598
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9599
9599
|
client_metadata?: {
|
|
9600
9600
|
[x: string]: string;
|
|
9601
9601
|
} | undefined;
|
|
@@ -9691,7 +9691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9691
9691
|
addons?: {
|
|
9692
9692
|
[x: string]: any;
|
|
9693
9693
|
} | undefined;
|
|
9694
|
-
token_endpoint_auth_method?: "none" | "
|
|
9694
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9695
9695
|
client_metadata?: {
|
|
9696
9696
|
[x: string]: string;
|
|
9697
9697
|
} | undefined;
|
|
@@ -9802,7 +9802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9802
9802
|
addons?: {
|
|
9803
9803
|
[x: string]: any;
|
|
9804
9804
|
} | undefined;
|
|
9805
|
-
token_endpoint_auth_method?: "none" | "
|
|
9805
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9806
9806
|
client_metadata?: {
|
|
9807
9807
|
[x: string]: string;
|
|
9808
9808
|
} | undefined;
|
|
@@ -9912,7 +9912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9912
9912
|
custom_login_page_preview?: string | undefined;
|
|
9913
9913
|
form_template?: string | undefined;
|
|
9914
9914
|
addons?: Record<string, any> | undefined;
|
|
9915
|
-
token_endpoint_auth_method?: "none" | "
|
|
9915
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9916
9916
|
client_metadata?: Record<string, string> | undefined;
|
|
9917
9917
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9918
9918
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9992,7 +9992,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9992
9992
|
addons?: {
|
|
9993
9993
|
[x: string]: any;
|
|
9994
9994
|
} | undefined;
|
|
9995
|
-
token_endpoint_auth_method?: "none" | "
|
|
9995
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9996
9996
|
client_metadata?: {
|
|
9997
9997
|
[x: string]: string;
|
|
9998
9998
|
} | undefined;
|
|
@@ -10081,7 +10081,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10081
10081
|
custom_login_page_preview?: string | undefined;
|
|
10082
10082
|
form_template?: string | undefined;
|
|
10083
10083
|
addons?: Record<string, any> | undefined;
|
|
10084
|
-
token_endpoint_auth_method?: "none" | "
|
|
10084
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10085
10085
|
client_metadata?: Record<string, string> | undefined;
|
|
10086
10086
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10087
10087
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10161,7 +10161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10161
10161
|
addons?: {
|
|
10162
10162
|
[x: string]: any;
|
|
10163
10163
|
} | undefined;
|
|
10164
|
-
token_endpoint_auth_method?: "none" | "
|
|
10164
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10165
10165
|
client_metadata?: {
|
|
10166
10166
|
[x: string]: string;
|
|
10167
10167
|
} | undefined;
|
|
@@ -10283,7 +10283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10283
10283
|
active?: boolean | undefined;
|
|
10284
10284
|
} | undefined;
|
|
10285
10285
|
signup?: {
|
|
10286
|
-
status?: "
|
|
10286
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10287
10287
|
verification?: {
|
|
10288
10288
|
active?: boolean | undefined;
|
|
10289
10289
|
} | undefined;
|
|
@@ -10300,7 +10300,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10300
10300
|
active?: boolean | undefined;
|
|
10301
10301
|
} | undefined;
|
|
10302
10302
|
signup?: {
|
|
10303
|
-
status?: "
|
|
10303
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10304
10304
|
} | undefined;
|
|
10305
10305
|
validation?: {
|
|
10306
10306
|
max_length?: number | undefined;
|
|
@@ -10317,7 +10317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10317
10317
|
active?: boolean | undefined;
|
|
10318
10318
|
} | undefined;
|
|
10319
10319
|
signup?: {
|
|
10320
|
-
status?: "
|
|
10320
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10321
10321
|
} | undefined;
|
|
10322
10322
|
} | undefined;
|
|
10323
10323
|
} | undefined;
|
|
@@ -10437,7 +10437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10437
10437
|
active?: boolean | undefined;
|
|
10438
10438
|
} | undefined;
|
|
10439
10439
|
signup?: {
|
|
10440
|
-
status?: "
|
|
10440
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10441
10441
|
verification?: {
|
|
10442
10442
|
active?: boolean | undefined;
|
|
10443
10443
|
} | undefined;
|
|
@@ -10454,7 +10454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10454
10454
|
active?: boolean | undefined;
|
|
10455
10455
|
} | undefined;
|
|
10456
10456
|
signup?: {
|
|
10457
|
-
status?: "
|
|
10457
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10458
10458
|
} | undefined;
|
|
10459
10459
|
validation?: {
|
|
10460
10460
|
max_length?: number | undefined;
|
|
@@ -10471,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10471
10471
|
active?: boolean | undefined;
|
|
10472
10472
|
} | undefined;
|
|
10473
10473
|
signup?: {
|
|
10474
|
-
status?: "
|
|
10474
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10475
10475
|
} | undefined;
|
|
10476
10476
|
} | undefined;
|
|
10477
10477
|
} | undefined;
|
|
@@ -11425,7 +11425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11425
11425
|
};
|
|
11426
11426
|
};
|
|
11427
11427
|
output: {
|
|
11428
|
-
type: "
|
|
11428
|
+
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" | "festft" | "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" | "sestft" | "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";
|
|
11429
11429
|
date: string;
|
|
11430
11430
|
isMobile: boolean;
|
|
11431
11431
|
log_id: string;
|
|
@@ -11464,7 +11464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11464
11464
|
limit: number;
|
|
11465
11465
|
length: number;
|
|
11466
11466
|
logs: {
|
|
11467
|
-
type: "
|
|
11467
|
+
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" | "festft" | "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" | "sestft" | "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";
|
|
11468
11468
|
date: string;
|
|
11469
11469
|
isMobile: boolean;
|
|
11470
11470
|
log_id: string;
|
|
@@ -11779,7 +11779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11779
11779
|
};
|
|
11780
11780
|
} & {
|
|
11781
11781
|
json: {
|
|
11782
|
-
template: "
|
|
11782
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11783
11783
|
body: string;
|
|
11784
11784
|
from: string;
|
|
11785
11785
|
subject: string;
|
|
@@ -11800,7 +11800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11800
11800
|
};
|
|
11801
11801
|
} & {
|
|
11802
11802
|
json: {
|
|
11803
|
-
template: "
|
|
11803
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11804
11804
|
body: string;
|
|
11805
11805
|
from: string;
|
|
11806
11806
|
subject: string;
|
|
@@ -11812,7 +11812,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11812
11812
|
};
|
|
11813
11813
|
};
|
|
11814
11814
|
output: {
|
|
11815
|
-
template: "
|
|
11815
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11816
11816
|
body: string;
|
|
11817
11817
|
from: string;
|
|
11818
11818
|
subject: string;
|
|
@@ -11835,7 +11835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11835
11835
|
};
|
|
11836
11836
|
};
|
|
11837
11837
|
output: {
|
|
11838
|
-
name: "
|
|
11838
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11839
11839
|
body: string;
|
|
11840
11840
|
subject: string;
|
|
11841
11841
|
}[];
|
|
@@ -11848,7 +11848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11848
11848
|
$get: {
|
|
11849
11849
|
input: {
|
|
11850
11850
|
param: {
|
|
11851
|
-
templateName: "
|
|
11851
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11852
11852
|
};
|
|
11853
11853
|
} & {
|
|
11854
11854
|
header: {
|
|
@@ -11861,7 +11861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11861
11861
|
} | {
|
|
11862
11862
|
input: {
|
|
11863
11863
|
param: {
|
|
11864
|
-
templateName: "
|
|
11864
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11865
11865
|
};
|
|
11866
11866
|
} & {
|
|
11867
11867
|
header: {
|
|
@@ -11869,7 +11869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11869
11869
|
};
|
|
11870
11870
|
};
|
|
11871
11871
|
output: {
|
|
11872
|
-
template: "
|
|
11872
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11873
11873
|
body: string;
|
|
11874
11874
|
from: string;
|
|
11875
11875
|
subject: string;
|
|
@@ -11888,7 +11888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11888
11888
|
$put: {
|
|
11889
11889
|
input: {
|
|
11890
11890
|
param: {
|
|
11891
|
-
templateName: "
|
|
11891
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11892
11892
|
};
|
|
11893
11893
|
} & {
|
|
11894
11894
|
header: {
|
|
@@ -11896,7 +11896,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11896
11896
|
};
|
|
11897
11897
|
} & {
|
|
11898
11898
|
json: {
|
|
11899
|
-
template: "
|
|
11899
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11900
11900
|
body: string;
|
|
11901
11901
|
subject: string;
|
|
11902
11902
|
syntax?: "liquid" | undefined;
|
|
@@ -11908,7 +11908,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11908
11908
|
};
|
|
11909
11909
|
};
|
|
11910
11910
|
output: {
|
|
11911
|
-
template: "
|
|
11911
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11912
11912
|
body: string;
|
|
11913
11913
|
from: string;
|
|
11914
11914
|
subject: string;
|
|
@@ -11927,7 +11927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11927
11927
|
$patch: {
|
|
11928
11928
|
input: {
|
|
11929
11929
|
param: {
|
|
11930
|
-
templateName: "
|
|
11930
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11931
11931
|
};
|
|
11932
11932
|
} & {
|
|
11933
11933
|
header: {
|
|
@@ -11935,7 +11935,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11935
11935
|
};
|
|
11936
11936
|
} & {
|
|
11937
11937
|
json: {
|
|
11938
|
-
template?: "
|
|
11938
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11939
11939
|
body?: string | undefined;
|
|
11940
11940
|
from?: string | undefined;
|
|
11941
11941
|
subject?: string | undefined;
|
|
@@ -11952,7 +11952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11952
11952
|
} | {
|
|
11953
11953
|
input: {
|
|
11954
11954
|
param: {
|
|
11955
|
-
templateName: "
|
|
11955
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11956
11956
|
};
|
|
11957
11957
|
} & {
|
|
11958
11958
|
header: {
|
|
@@ -11960,7 +11960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11960
11960
|
};
|
|
11961
11961
|
} & {
|
|
11962
11962
|
json: {
|
|
11963
|
-
template?: "
|
|
11963
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11964
11964
|
body?: string | undefined;
|
|
11965
11965
|
from?: string | undefined;
|
|
11966
11966
|
subject?: string | undefined;
|
|
@@ -11972,7 +11972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11972
11972
|
};
|
|
11973
11973
|
};
|
|
11974
11974
|
output: {
|
|
11975
|
-
template: "
|
|
11975
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11976
11976
|
body: string;
|
|
11977
11977
|
from: string;
|
|
11978
11978
|
subject: string;
|
|
@@ -11991,7 +11991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11991
11991
|
$delete: {
|
|
11992
11992
|
input: {
|
|
11993
11993
|
param: {
|
|
11994
|
-
templateName: "
|
|
11994
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11995
11995
|
};
|
|
11996
11996
|
} & {
|
|
11997
11997
|
header: {
|
|
@@ -12004,7 +12004,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12004
12004
|
} | {
|
|
12005
12005
|
input: {
|
|
12006
12006
|
param: {
|
|
12007
|
-
templateName: "
|
|
12007
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12008
12008
|
};
|
|
12009
12009
|
} & {
|
|
12010
12010
|
header: {
|
|
@@ -12021,7 +12021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12021
12021
|
$post: {
|
|
12022
12022
|
input: {
|
|
12023
12023
|
param: {
|
|
12024
|
-
templateName: "
|
|
12024
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12025
12025
|
};
|
|
12026
12026
|
} & {
|
|
12027
12027
|
header: {
|
|
@@ -12304,7 +12304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12304
12304
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12305
12305
|
custom_domain_id: string;
|
|
12306
12306
|
primary: boolean;
|
|
12307
|
-
status: "
|
|
12307
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12308
12308
|
verification_method?: "txt" | undefined;
|
|
12309
12309
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12310
12310
|
domain_metadata?: {
|
|
@@ -12345,7 +12345,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12345
12345
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12346
12346
|
custom_domain_id: string;
|
|
12347
12347
|
primary: boolean;
|
|
12348
|
-
status: "
|
|
12348
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12349
12349
|
verification_method?: "txt" | undefined;
|
|
12350
12350
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12351
12351
|
domain_metadata?: {
|
|
@@ -12409,7 +12409,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12409
12409
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12410
12410
|
custom_domain_id: string;
|
|
12411
12411
|
primary: boolean;
|
|
12412
|
-
status: "
|
|
12412
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12413
12413
|
verification_method?: "txt" | undefined;
|
|
12414
12414
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12415
12415
|
domain_metadata?: {
|
|
@@ -12456,7 +12456,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12456
12456
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12457
12457
|
custom_domain_id: string;
|
|
12458
12458
|
primary: boolean;
|
|
12459
|
-
status: "
|
|
12459
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12460
12460
|
verification_method?: "txt" | undefined;
|
|
12461
12461
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12462
12462
|
domain_metadata?: {
|
|
@@ -12502,7 +12502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12502
12502
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12503
12503
|
custom_domain_id: string;
|
|
12504
12504
|
primary: boolean;
|
|
12505
|
-
status: "
|
|
12505
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12506
12506
|
verification_method?: "txt" | undefined;
|
|
12507
12507
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12508
12508
|
domain_metadata?: {
|
|
@@ -12543,7 +12543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12543
12543
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12544
12544
|
custom_domain_id: string;
|
|
12545
12545
|
primary: boolean;
|
|
12546
|
-
status: "
|
|
12546
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12547
12547
|
verification_method?: "txt" | undefined;
|
|
12548
12548
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12549
12549
|
domain_metadata?: {
|
|
@@ -12973,7 +12973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12973
12973
|
} & {
|
|
12974
12974
|
json: {
|
|
12975
12975
|
body?: string | undefined;
|
|
12976
|
-
screen?: "
|
|
12976
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12977
12977
|
branding?: {
|
|
12978
12978
|
colors?: {
|
|
12979
12979
|
primary: string;
|
|
@@ -13217,7 +13217,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13217
13217
|
output: {
|
|
13218
13218
|
id: string;
|
|
13219
13219
|
trigger_id: string;
|
|
13220
|
-
status: "
|
|
13220
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13221
13221
|
results: {
|
|
13222
13222
|
action_name: string;
|
|
13223
13223
|
error: {
|
|
@@ -13264,7 +13264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13264
13264
|
logs: {
|
|
13265
13265
|
action_name: string;
|
|
13266
13266
|
lines: {
|
|
13267
|
-
level: "
|
|
13267
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13268
13268
|
message: string;
|
|
13269
13269
|
}[];
|
|
13270
13270
|
}[];
|
|
@@ -13931,7 +13931,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13931
13931
|
args: import("hono/utils/types").JSONValue[];
|
|
13932
13932
|
}[];
|
|
13933
13933
|
logs: {
|
|
13934
|
-
level: "
|
|
13934
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13935
13935
|
message: string;
|
|
13936
13936
|
}[];
|
|
13937
13937
|
error?: string | undefined;
|
|
@@ -14242,7 +14242,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14242
14242
|
scope?: string | undefined;
|
|
14243
14243
|
grant_types?: string[] | undefined;
|
|
14244
14244
|
response_types?: string[] | undefined;
|
|
14245
|
-
token_endpoint_auth_method?: "none" | "
|
|
14245
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14246
14246
|
jwks_uri?: string | undefined;
|
|
14247
14247
|
jwks?: Record<string, unknown> | undefined;
|
|
14248
14248
|
software_id?: string | undefined;
|
|
@@ -14331,7 +14331,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14331
14331
|
scope?: string | undefined;
|
|
14332
14332
|
grant_types?: string[] | undefined;
|
|
14333
14333
|
response_types?: string[] | undefined;
|
|
14334
|
-
token_endpoint_auth_method?: "none" | "
|
|
14334
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14335
14335
|
jwks_uri?: string | undefined;
|
|
14336
14336
|
jwks?: Record<string, unknown> | undefined;
|
|
14337
14337
|
software_id?: string | undefined;
|
|
@@ -14678,16 +14678,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14678
14678
|
send: "code" | "link";
|
|
14679
14679
|
authParams: {
|
|
14680
14680
|
username?: string | undefined;
|
|
14681
|
-
state?: string | undefined;
|
|
14682
14681
|
audience?: string | undefined;
|
|
14682
|
+
scope?: string | undefined;
|
|
14683
|
+
state?: string | undefined;
|
|
14683
14684
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14684
14685
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14685
|
-
|
|
14686
|
+
prompt?: string | undefined;
|
|
14687
|
+
act_as?: string | undefined;
|
|
14688
|
+
redirect_uri?: string | undefined;
|
|
14686
14689
|
organization?: string | undefined;
|
|
14687
14690
|
nonce?: string | undefined;
|
|
14688
|
-
redirect_uri?: string | undefined;
|
|
14689
|
-
act_as?: string | undefined;
|
|
14690
|
-
prompt?: string | undefined;
|
|
14691
14691
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14692
14692
|
code_challenge?: string | undefined;
|
|
14693
14693
|
ui_locales?: string | undefined;
|
|
@@ -14714,16 +14714,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14714
14714
|
send: "code" | "link";
|
|
14715
14715
|
authParams: {
|
|
14716
14716
|
username?: string | undefined;
|
|
14717
|
-
state?: string | undefined;
|
|
14718
14717
|
audience?: string | undefined;
|
|
14718
|
+
scope?: string | undefined;
|
|
14719
|
+
state?: string | undefined;
|
|
14719
14720
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14720
14721
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14721
|
-
|
|
14722
|
+
prompt?: string | undefined;
|
|
14723
|
+
act_as?: string | undefined;
|
|
14724
|
+
redirect_uri?: string | undefined;
|
|
14722
14725
|
organization?: string | undefined;
|
|
14723
14726
|
nonce?: string | undefined;
|
|
14724
|
-
redirect_uri?: string | undefined;
|
|
14725
|
-
act_as?: string | undefined;
|
|
14726
|
-
prompt?: string | undefined;
|
|
14727
14727
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14728
14728
|
code_challenge?: string | undefined;
|
|
14729
14729
|
ui_locales?: string | undefined;
|
|
@@ -14857,14 +14857,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14857
14857
|
input: {
|
|
14858
14858
|
form: {
|
|
14859
14859
|
token: string;
|
|
14860
|
-
token_type_hint?: "
|
|
14860
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14861
14861
|
client_id?: string | undefined;
|
|
14862
14862
|
client_secret?: string | undefined;
|
|
14863
14863
|
};
|
|
14864
14864
|
} & {
|
|
14865
14865
|
json: {
|
|
14866
14866
|
token: string;
|
|
14867
|
-
token_type_hint?: "
|
|
14867
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14868
14868
|
client_id?: string | undefined;
|
|
14869
14869
|
client_secret?: string | undefined;
|
|
14870
14870
|
};
|
|
@@ -14876,14 +14876,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14876
14876
|
input: {
|
|
14877
14877
|
form: {
|
|
14878
14878
|
token: string;
|
|
14879
|
-
token_type_hint?: "
|
|
14879
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14880
14880
|
client_id?: string | undefined;
|
|
14881
14881
|
client_secret?: string | undefined;
|
|
14882
14882
|
};
|
|
14883
14883
|
} & {
|
|
14884
14884
|
json: {
|
|
14885
14885
|
token: string;
|
|
14886
|
-
token_type_hint?: "
|
|
14886
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14887
14887
|
client_id?: string | undefined;
|
|
14888
14888
|
client_secret?: string | undefined;
|
|
14889
14889
|
};
|
|
@@ -14898,14 +14898,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14898
14898
|
input: {
|
|
14899
14899
|
form: {
|
|
14900
14900
|
token: string;
|
|
14901
|
-
token_type_hint?: "
|
|
14901
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14902
14902
|
client_id?: string | undefined;
|
|
14903
14903
|
client_secret?: string | undefined;
|
|
14904
14904
|
};
|
|
14905
14905
|
} & {
|
|
14906
14906
|
json: {
|
|
14907
14907
|
token: string;
|
|
14908
|
-
token_type_hint?: "
|
|
14908
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14909
14909
|
client_id?: string | undefined;
|
|
14910
14910
|
client_secret?: string | undefined;
|
|
14911
14911
|
};
|
|
@@ -14955,7 +14955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14955
14955
|
client_id: string;
|
|
14956
14956
|
username: string;
|
|
14957
14957
|
otp: string;
|
|
14958
|
-
realm: "
|
|
14958
|
+
realm: "email" | "sms";
|
|
14959
14959
|
} | {
|
|
14960
14960
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14961
14961
|
subject_token: string;
|
|
@@ -15002,7 +15002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15002
15002
|
client_id: string;
|
|
15003
15003
|
username: string;
|
|
15004
15004
|
otp: string;
|
|
15005
|
-
realm: "
|
|
15005
|
+
realm: "email" | "sms";
|
|
15006
15006
|
} | {
|
|
15007
15007
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15008
15008
|
subject_token: string;
|
|
@@ -15054,7 +15054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15054
15054
|
client_id: string;
|
|
15055
15055
|
username: string;
|
|
15056
15056
|
otp: string;
|
|
15057
|
-
realm: "
|
|
15057
|
+
realm: "email" | "sms";
|
|
15058
15058
|
} | {
|
|
15059
15059
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15060
15060
|
subject_token: string;
|
|
@@ -15101,7 +15101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15101
15101
|
client_id: string;
|
|
15102
15102
|
username: string;
|
|
15103
15103
|
otp: string;
|
|
15104
|
-
realm: "
|
|
15104
|
+
realm: "email" | "sms";
|
|
15105
15105
|
} | {
|
|
15106
15106
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15107
15107
|
subject_token: string;
|
|
@@ -15161,7 +15161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15161
15161
|
client_id: string;
|
|
15162
15162
|
username: string;
|
|
15163
15163
|
otp: string;
|
|
15164
|
-
realm: "
|
|
15164
|
+
realm: "email" | "sms";
|
|
15165
15165
|
} | {
|
|
15166
15166
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15167
15167
|
subject_token: string;
|
|
@@ -15208,7 +15208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15208
15208
|
client_id: string;
|
|
15209
15209
|
username: string;
|
|
15210
15210
|
otp: string;
|
|
15211
|
-
realm: "
|
|
15211
|
+
realm: "email" | "sms";
|
|
15212
15212
|
} | {
|
|
15213
15213
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15214
15214
|
subject_token: string;
|
|
@@ -15263,7 +15263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15263
15263
|
client_id: string;
|
|
15264
15264
|
username: string;
|
|
15265
15265
|
otp: string;
|
|
15266
|
-
realm: "
|
|
15266
|
+
realm: "email" | "sms";
|
|
15267
15267
|
} | {
|
|
15268
15268
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15269
15269
|
subject_token: string;
|
|
@@ -15310,7 +15310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15310
15310
|
client_id: string;
|
|
15311
15311
|
username: string;
|
|
15312
15312
|
otp: string;
|
|
15313
|
-
realm: "
|
|
15313
|
+
realm: "email" | "sms";
|
|
15314
15314
|
} | {
|
|
15315
15315
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15316
15316
|
subject_token: string;
|
|
@@ -15365,7 +15365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15365
15365
|
client_id: string;
|
|
15366
15366
|
username: string;
|
|
15367
15367
|
otp: string;
|
|
15368
|
-
realm: "
|
|
15368
|
+
realm: "email" | "sms";
|
|
15369
15369
|
} | {
|
|
15370
15370
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15371
15371
|
subject_token: string;
|
|
@@ -15412,7 +15412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15412
15412
|
client_id: string;
|
|
15413
15413
|
username: string;
|
|
15414
15414
|
otp: string;
|
|
15415
|
-
realm: "
|
|
15415
|
+
realm: "email" | "sms";
|
|
15416
15416
|
} | {
|
|
15417
15417
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15418
15418
|
subject_token: string;
|
|
@@ -16253,7 +16253,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16253
16253
|
} & {
|
|
16254
16254
|
form: {
|
|
16255
16255
|
username: string;
|
|
16256
|
-
login_selection?: "
|
|
16256
|
+
login_selection?: "password" | "code" | undefined;
|
|
16257
16257
|
};
|
|
16258
16258
|
};
|
|
16259
16259
|
output: {};
|
|
@@ -16267,7 +16267,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16267
16267
|
} & {
|
|
16268
16268
|
form: {
|
|
16269
16269
|
username: string;
|
|
16270
|
-
login_selection?: "
|
|
16270
|
+
login_selection?: "password" | "code" | undefined;
|
|
16271
16271
|
};
|
|
16272
16272
|
};
|
|
16273
16273
|
output: {};
|
|
@@ -16632,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16632
16632
|
$get: {
|
|
16633
16633
|
input: {
|
|
16634
16634
|
param: {
|
|
16635
|
-
screen: "signup" | "
|
|
16635
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "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";
|
|
16636
16636
|
};
|
|
16637
16637
|
} & {
|
|
16638
16638
|
query: {
|
|
@@ -16648,7 +16648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16648
16648
|
} | {
|
|
16649
16649
|
input: {
|
|
16650
16650
|
param: {
|
|
16651
|
-
screen: "signup" | "
|
|
16651
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "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";
|
|
16652
16652
|
};
|
|
16653
16653
|
} & {
|
|
16654
16654
|
query: {
|
|
@@ -16664,7 +16664,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16664
16664
|
} | {
|
|
16665
16665
|
input: {
|
|
16666
16666
|
param: {
|
|
16667
|
-
screen: "signup" | "
|
|
16667
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "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";
|
|
16668
16668
|
};
|
|
16669
16669
|
} & {
|
|
16670
16670
|
query: {
|
|
@@ -16684,7 +16684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16684
16684
|
$post: {
|
|
16685
16685
|
input: {
|
|
16686
16686
|
param: {
|
|
16687
|
-
screen: "signup" | "
|
|
16687
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
16688
16688
|
};
|
|
16689
16689
|
} & {
|
|
16690
16690
|
query: {
|
|
@@ -16702,7 +16702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16702
16702
|
} | {
|
|
16703
16703
|
input: {
|
|
16704
16704
|
param: {
|
|
16705
|
-
screen: "signup" | "
|
|
16705
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
16706
16706
|
};
|
|
16707
16707
|
} & {
|
|
16708
16708
|
query: {
|