authhero 8.18.0 → 8.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +106 -106
- package/dist/authhero.d.ts +197 -119
- package/dist/authhero.mjs +8376 -8234
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/audit-target-types.d.ts +6 -0
- package/dist/types/helpers/default-destinations.d.ts +14 -4
- package/dist/types/helpers/hook-events.d.ts +35 -15
- package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
- package/dist/types/helpers/password-connection.d.ts +16 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
- package/dist/types/hooks/codehooks.d.ts +78 -9
- package/dist/types/hooks/link-users.d.ts +9 -1
- package/dist/types/hooks/user-registration.d.ts +8 -5
- package/dist/types/index.d.ts +116 -115
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/management-api/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +82 -82
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- 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/types/IdToken.d.ts +1 -1
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export { runOutboxRelay } from "./helpers/run-outbox-relay";
|
|
|
24
24
|
export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
|
|
25
25
|
export { LogsDestination } from "./helpers/outbox-destinations/logs";
|
|
26
26
|
export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
|
|
27
|
+
export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
|
|
27
28
|
export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
|
|
28
29
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
29
30
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
@@ -61,8 +62,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
61
62
|
$get: {
|
|
62
63
|
input: {
|
|
63
64
|
query: {
|
|
64
|
-
include_password_hashes?: "
|
|
65
|
-
gzip?: "
|
|
65
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
66
|
+
gzip?: "true" | "false" | undefined;
|
|
66
67
|
};
|
|
67
68
|
} & {
|
|
68
69
|
header: {
|
|
@@ -75,8 +76,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
75
76
|
} | {
|
|
76
77
|
input: {
|
|
77
78
|
query: {
|
|
78
|
-
include_password_hashes?: "
|
|
79
|
-
gzip?: "
|
|
79
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
80
|
+
gzip?: "true" | "false" | undefined;
|
|
80
81
|
};
|
|
81
82
|
} & {
|
|
82
83
|
header: {
|
|
@@ -95,7 +96,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
95
96
|
$post: {
|
|
96
97
|
input: {
|
|
97
98
|
query: {
|
|
98
|
-
include_password_hashes?: "
|
|
99
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
99
100
|
};
|
|
100
101
|
} & {
|
|
101
102
|
header: {
|
|
@@ -149,7 +150,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
149
150
|
};
|
|
150
151
|
} & {
|
|
151
152
|
json: {
|
|
152
|
-
type: "push" | "email" | "passkey" | "
|
|
153
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
153
154
|
phone_number?: string | undefined;
|
|
154
155
|
totp_secret?: string | undefined;
|
|
155
156
|
credential_id?: string | undefined;
|
|
@@ -289,7 +290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
289
290
|
};
|
|
290
291
|
};
|
|
291
292
|
output: {
|
|
292
|
-
name: "
|
|
293
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
293
294
|
enabled: boolean;
|
|
294
295
|
trial_expired?: boolean | undefined;
|
|
295
296
|
}[];
|
|
@@ -444,7 +445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
444
445
|
$get: {
|
|
445
446
|
input: {
|
|
446
447
|
param: {
|
|
447
|
-
factor_name: "
|
|
448
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
448
449
|
};
|
|
449
450
|
} & {
|
|
450
451
|
header: {
|
|
@@ -452,7 +453,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
452
453
|
};
|
|
453
454
|
};
|
|
454
455
|
output: {
|
|
455
|
-
name: "
|
|
456
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
456
457
|
enabled: boolean;
|
|
457
458
|
trial_expired?: boolean | undefined;
|
|
458
459
|
};
|
|
@@ -465,7 +466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
465
466
|
$put: {
|
|
466
467
|
input: {
|
|
467
468
|
param: {
|
|
468
|
-
factor_name: "
|
|
469
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
469
470
|
};
|
|
470
471
|
} & {
|
|
471
472
|
header: {
|
|
@@ -477,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
477
478
|
};
|
|
478
479
|
};
|
|
479
480
|
output: {
|
|
480
|
-
name: "
|
|
481
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
481
482
|
enabled: boolean;
|
|
482
483
|
trial_expired?: boolean | undefined;
|
|
483
484
|
};
|
|
@@ -1410,8 +1411,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1410
1411
|
};
|
|
1411
1412
|
} & {
|
|
1412
1413
|
json: {
|
|
1413
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1414
1414
|
show_as_button?: boolean | undefined;
|
|
1415
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1415
1416
|
is_signup_enabled?: boolean | undefined;
|
|
1416
1417
|
};
|
|
1417
1418
|
};
|
|
@@ -6881,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6881
6882
|
};
|
|
6882
6883
|
};
|
|
6883
6884
|
output: {
|
|
6884
|
-
prompt: "status" | "
|
|
6885
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6885
6886
|
language: string;
|
|
6886
6887
|
}[];
|
|
6887
6888
|
outputFormat: "json";
|
|
@@ -6919,7 +6920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6919
6920
|
$get: {
|
|
6920
6921
|
input: {
|
|
6921
6922
|
param: {
|
|
6922
|
-
prompt: "status" | "
|
|
6923
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6923
6924
|
language: string;
|
|
6924
6925
|
};
|
|
6925
6926
|
} & {
|
|
@@ -6941,7 +6942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6941
6942
|
$put: {
|
|
6942
6943
|
input: {
|
|
6943
6944
|
param: {
|
|
6944
|
-
prompt: "status" | "
|
|
6945
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6945
6946
|
language: string;
|
|
6946
6947
|
};
|
|
6947
6948
|
} & {
|
|
@@ -6965,7 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6965
6966
|
$delete: {
|
|
6966
6967
|
input: {
|
|
6967
6968
|
param: {
|
|
6968
|
-
prompt: "status" | "
|
|
6969
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6969
6970
|
language: string;
|
|
6970
6971
|
};
|
|
6971
6972
|
} & {
|
|
@@ -7057,7 +7058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7057
7058
|
active?: boolean | undefined;
|
|
7058
7059
|
} | undefined;
|
|
7059
7060
|
signup?: {
|
|
7060
|
-
status?: "
|
|
7061
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7061
7062
|
verification?: {
|
|
7062
7063
|
active?: boolean | undefined;
|
|
7063
7064
|
} | undefined;
|
|
@@ -7074,7 +7075,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7074
7075
|
active?: boolean | undefined;
|
|
7075
7076
|
} | undefined;
|
|
7076
7077
|
signup?: {
|
|
7077
|
-
status?: "
|
|
7078
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7078
7079
|
} | undefined;
|
|
7079
7080
|
validation?: {
|
|
7080
7081
|
max_length?: number | undefined;
|
|
@@ -7091,7 +7092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7091
7092
|
active?: boolean | undefined;
|
|
7092
7093
|
} | undefined;
|
|
7093
7094
|
signup?: {
|
|
7094
|
-
status?: "
|
|
7095
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7095
7096
|
} | undefined;
|
|
7096
7097
|
} | undefined;
|
|
7097
7098
|
} | undefined;
|
|
@@ -7191,7 +7192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7191
7192
|
active?: boolean | undefined;
|
|
7192
7193
|
} | undefined;
|
|
7193
7194
|
signup?: {
|
|
7194
|
-
status?: "
|
|
7195
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7195
7196
|
verification?: {
|
|
7196
7197
|
active?: boolean | undefined;
|
|
7197
7198
|
} | undefined;
|
|
@@ -7208,7 +7209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7208
7209
|
active?: boolean | undefined;
|
|
7209
7210
|
} | undefined;
|
|
7210
7211
|
signup?: {
|
|
7211
|
-
status?: "
|
|
7212
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7212
7213
|
} | undefined;
|
|
7213
7214
|
validation?: {
|
|
7214
7215
|
max_length?: number | undefined;
|
|
@@ -7225,7 +7226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7225
7226
|
active?: boolean | undefined;
|
|
7226
7227
|
} | undefined;
|
|
7227
7228
|
signup?: {
|
|
7228
|
-
status?: "
|
|
7229
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7229
7230
|
} | undefined;
|
|
7230
7231
|
} | undefined;
|
|
7231
7232
|
} | undefined;
|
|
@@ -7340,7 +7341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7340
7341
|
active?: boolean | undefined;
|
|
7341
7342
|
} | undefined;
|
|
7342
7343
|
signup?: {
|
|
7343
|
-
status?: "
|
|
7344
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7344
7345
|
verification?: {
|
|
7345
7346
|
active?: boolean | undefined;
|
|
7346
7347
|
} | undefined;
|
|
@@ -7357,7 +7358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7357
7358
|
active?: boolean | undefined;
|
|
7358
7359
|
} | undefined;
|
|
7359
7360
|
signup?: {
|
|
7360
|
-
status?: "
|
|
7361
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7361
7362
|
} | undefined;
|
|
7362
7363
|
validation?: {
|
|
7363
7364
|
max_length?: number | undefined;
|
|
@@ -7374,7 +7375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7374
7375
|
active?: boolean | undefined;
|
|
7375
7376
|
} | undefined;
|
|
7376
7377
|
signup?: {
|
|
7377
|
-
status?: "
|
|
7378
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7378
7379
|
} | undefined;
|
|
7379
7380
|
} | undefined;
|
|
7380
7381
|
} | undefined;
|
|
@@ -7519,7 +7520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7519
7520
|
active?: boolean | undefined;
|
|
7520
7521
|
} | undefined;
|
|
7521
7522
|
signup?: {
|
|
7522
|
-
status?: "
|
|
7523
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7523
7524
|
verification?: {
|
|
7524
7525
|
active?: boolean | undefined;
|
|
7525
7526
|
} | undefined;
|
|
@@ -7536,7 +7537,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7536
7537
|
active?: boolean | undefined;
|
|
7537
7538
|
} | undefined;
|
|
7538
7539
|
signup?: {
|
|
7539
|
-
status?: "
|
|
7540
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7540
7541
|
} | undefined;
|
|
7541
7542
|
validation?: {
|
|
7542
7543
|
max_length?: number | undefined;
|
|
@@ -7553,7 +7554,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7553
7554
|
active?: boolean | undefined;
|
|
7554
7555
|
} | undefined;
|
|
7555
7556
|
signup?: {
|
|
7556
|
-
status?: "
|
|
7557
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7557
7558
|
} | undefined;
|
|
7558
7559
|
} | undefined;
|
|
7559
7560
|
} | undefined;
|
|
@@ -7677,7 +7678,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7677
7678
|
active?: boolean | undefined;
|
|
7678
7679
|
} | undefined;
|
|
7679
7680
|
signup?: {
|
|
7680
|
-
status?: "
|
|
7681
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7681
7682
|
verification?: {
|
|
7682
7683
|
active?: boolean | undefined;
|
|
7683
7684
|
} | undefined;
|
|
@@ -7694,7 +7695,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7694
7695
|
active?: boolean | undefined;
|
|
7695
7696
|
} | undefined;
|
|
7696
7697
|
signup?: {
|
|
7697
|
-
status?: "
|
|
7698
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7698
7699
|
} | undefined;
|
|
7699
7700
|
validation?: {
|
|
7700
7701
|
max_length?: number | undefined;
|
|
@@ -7711,7 +7712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7711
7712
|
active?: boolean | undefined;
|
|
7712
7713
|
} | undefined;
|
|
7713
7714
|
signup?: {
|
|
7714
|
-
status?: "
|
|
7715
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7715
7716
|
} | undefined;
|
|
7716
7717
|
} | undefined;
|
|
7717
7718
|
} | undefined;
|
|
@@ -8776,7 +8777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8776
8777
|
created_at: string;
|
|
8777
8778
|
updated_at: string;
|
|
8778
8779
|
name: string;
|
|
8779
|
-
provider: "auth0" | "
|
|
8780
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8780
8781
|
connection: string;
|
|
8781
8782
|
enabled: boolean;
|
|
8782
8783
|
credentials: {
|
|
@@ -8808,7 +8809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8808
8809
|
created_at: string;
|
|
8809
8810
|
updated_at: string;
|
|
8810
8811
|
name: string;
|
|
8811
|
-
provider: "auth0" | "
|
|
8812
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8812
8813
|
connection: string;
|
|
8813
8814
|
enabled: boolean;
|
|
8814
8815
|
credentials: {
|
|
@@ -8834,7 +8835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8834
8835
|
} & {
|
|
8835
8836
|
json: {
|
|
8836
8837
|
name: string;
|
|
8837
|
-
provider: "auth0" | "
|
|
8838
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8838
8839
|
connection: string;
|
|
8839
8840
|
credentials: {
|
|
8840
8841
|
domain: string;
|
|
@@ -8851,7 +8852,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8851
8852
|
created_at: string;
|
|
8852
8853
|
updated_at: string;
|
|
8853
8854
|
name: string;
|
|
8854
|
-
provider: "auth0" | "
|
|
8855
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8855
8856
|
connection: string;
|
|
8856
8857
|
enabled: boolean;
|
|
8857
8858
|
credentials: {
|
|
@@ -8882,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8882
8883
|
json: {
|
|
8883
8884
|
id?: string | undefined;
|
|
8884
8885
|
name?: string | undefined;
|
|
8885
|
-
provider?: "auth0" | "
|
|
8886
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8886
8887
|
connection?: string | undefined;
|
|
8887
8888
|
enabled?: boolean | undefined;
|
|
8888
8889
|
credentials?: {
|
|
@@ -8898,7 +8899,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8898
8899
|
created_at: string;
|
|
8899
8900
|
updated_at: string;
|
|
8900
8901
|
name: string;
|
|
8901
|
-
provider: "auth0" | "
|
|
8902
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8902
8903
|
connection: string;
|
|
8903
8904
|
enabled: boolean;
|
|
8904
8905
|
credentials: {
|
|
@@ -9116,7 +9117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9116
9117
|
};
|
|
9117
9118
|
};
|
|
9118
9119
|
output: {
|
|
9119
|
-
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" | "
|
|
9120
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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" | "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";
|
|
9120
9121
|
date: string;
|
|
9121
9122
|
isMobile: boolean;
|
|
9122
9123
|
log_id: string;
|
|
@@ -9155,7 +9156,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9155
9156
|
limit: number;
|
|
9156
9157
|
length: number;
|
|
9157
9158
|
logs: {
|
|
9158
|
-
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" | "
|
|
9159
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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" | "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";
|
|
9159
9160
|
date: string;
|
|
9160
9161
|
isMobile: boolean;
|
|
9161
9162
|
log_id: string;
|
|
@@ -9209,7 +9210,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9209
9210
|
};
|
|
9210
9211
|
};
|
|
9211
9212
|
output: {
|
|
9212
|
-
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" | "
|
|
9213
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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" | "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";
|
|
9213
9214
|
date: string;
|
|
9214
9215
|
isMobile: boolean;
|
|
9215
9216
|
log_id: string;
|
|
@@ -9597,7 +9598,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9597
9598
|
addons?: {
|
|
9598
9599
|
[x: string]: any;
|
|
9599
9600
|
} | undefined;
|
|
9600
|
-
token_endpoint_auth_method?: "none" | "
|
|
9601
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9601
9602
|
client_metadata?: {
|
|
9602
9603
|
[x: string]: string;
|
|
9603
9604
|
} | undefined;
|
|
@@ -9693,7 +9694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9693
9694
|
addons?: {
|
|
9694
9695
|
[x: string]: any;
|
|
9695
9696
|
} | undefined;
|
|
9696
|
-
token_endpoint_auth_method?: "none" | "
|
|
9697
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9697
9698
|
client_metadata?: {
|
|
9698
9699
|
[x: string]: string;
|
|
9699
9700
|
} | undefined;
|
|
@@ -9804,7 +9805,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9804
9805
|
addons?: {
|
|
9805
9806
|
[x: string]: any;
|
|
9806
9807
|
} | undefined;
|
|
9807
|
-
token_endpoint_auth_method?: "none" | "
|
|
9808
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9808
9809
|
client_metadata?: {
|
|
9809
9810
|
[x: string]: string;
|
|
9810
9811
|
} | undefined;
|
|
@@ -9914,7 +9915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9914
9915
|
custom_login_page_preview?: string | undefined;
|
|
9915
9916
|
form_template?: string | undefined;
|
|
9916
9917
|
addons?: Record<string, any> | undefined;
|
|
9917
|
-
token_endpoint_auth_method?: "none" | "
|
|
9918
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9918
9919
|
client_metadata?: Record<string, string> | undefined;
|
|
9919
9920
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9920
9921
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9994,7 +9995,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9994
9995
|
addons?: {
|
|
9995
9996
|
[x: string]: any;
|
|
9996
9997
|
} | undefined;
|
|
9997
|
-
token_endpoint_auth_method?: "none" | "
|
|
9998
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9998
9999
|
client_metadata?: {
|
|
9999
10000
|
[x: string]: string;
|
|
10000
10001
|
} | undefined;
|
|
@@ -10083,7 +10084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10083
10084
|
custom_login_page_preview?: string | undefined;
|
|
10084
10085
|
form_template?: string | undefined;
|
|
10085
10086
|
addons?: Record<string, any> | undefined;
|
|
10086
|
-
token_endpoint_auth_method?: "none" | "
|
|
10087
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10087
10088
|
client_metadata?: Record<string, string> | undefined;
|
|
10088
10089
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10089
10090
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10163,7 +10164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10163
10164
|
addons?: {
|
|
10164
10165
|
[x: string]: any;
|
|
10165
10166
|
} | undefined;
|
|
10166
|
-
token_endpoint_auth_method?: "none" | "
|
|
10167
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10167
10168
|
client_metadata?: {
|
|
10168
10169
|
[x: string]: string;
|
|
10169
10170
|
} | undefined;
|
|
@@ -10285,7 +10286,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10285
10286
|
active?: boolean | undefined;
|
|
10286
10287
|
} | undefined;
|
|
10287
10288
|
signup?: {
|
|
10288
|
-
status?: "
|
|
10289
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10289
10290
|
verification?: {
|
|
10290
10291
|
active?: boolean | undefined;
|
|
10291
10292
|
} | undefined;
|
|
@@ -10302,7 +10303,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10302
10303
|
active?: boolean | undefined;
|
|
10303
10304
|
} | undefined;
|
|
10304
10305
|
signup?: {
|
|
10305
|
-
status?: "
|
|
10306
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10306
10307
|
} | undefined;
|
|
10307
10308
|
validation?: {
|
|
10308
10309
|
max_length?: number | undefined;
|
|
@@ -10319,7 +10320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10319
10320
|
active?: boolean | undefined;
|
|
10320
10321
|
} | undefined;
|
|
10321
10322
|
signup?: {
|
|
10322
|
-
status?: "
|
|
10323
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10323
10324
|
} | undefined;
|
|
10324
10325
|
} | undefined;
|
|
10325
10326
|
} | undefined;
|
|
@@ -10439,7 +10440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10439
10440
|
active?: boolean | undefined;
|
|
10440
10441
|
} | undefined;
|
|
10441
10442
|
signup?: {
|
|
10442
|
-
status?: "
|
|
10443
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10443
10444
|
verification?: {
|
|
10444
10445
|
active?: boolean | undefined;
|
|
10445
10446
|
} | undefined;
|
|
@@ -10456,7 +10457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10456
10457
|
active?: boolean | undefined;
|
|
10457
10458
|
} | undefined;
|
|
10458
10459
|
signup?: {
|
|
10459
|
-
status?: "
|
|
10460
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10460
10461
|
} | undefined;
|
|
10461
10462
|
validation?: {
|
|
10462
10463
|
max_length?: number | undefined;
|
|
@@ -10473,7 +10474,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10473
10474
|
active?: boolean | undefined;
|
|
10474
10475
|
} | undefined;
|
|
10475
10476
|
signup?: {
|
|
10476
|
-
status?: "
|
|
10477
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10477
10478
|
} | undefined;
|
|
10478
10479
|
} | undefined;
|
|
10479
10480
|
} | undefined;
|
|
@@ -11427,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11427
11428
|
};
|
|
11428
11429
|
};
|
|
11429
11430
|
output: {
|
|
11430
|
-
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" | "
|
|
11431
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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" | "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";
|
|
11431
11432
|
date: string;
|
|
11432
11433
|
isMobile: boolean;
|
|
11433
11434
|
log_id: string;
|
|
@@ -11466,7 +11467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11466
11467
|
limit: number;
|
|
11467
11468
|
length: number;
|
|
11468
11469
|
logs: {
|
|
11469
|
-
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" | "
|
|
11470
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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" | "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";
|
|
11470
11471
|
date: string;
|
|
11471
11472
|
isMobile: boolean;
|
|
11472
11473
|
log_id: string;
|
|
@@ -11783,7 +11784,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11783
11784
|
};
|
|
11784
11785
|
} & {
|
|
11785
11786
|
json: {
|
|
11786
|
-
template: "
|
|
11787
|
+
template: "change_password" | "verify_email" | "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";
|
|
11787
11788
|
body: string;
|
|
11788
11789
|
from: string;
|
|
11789
11790
|
subject: string;
|
|
@@ -11804,7 +11805,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11804
11805
|
};
|
|
11805
11806
|
} & {
|
|
11806
11807
|
json: {
|
|
11807
|
-
template: "
|
|
11808
|
+
template: "change_password" | "verify_email" | "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";
|
|
11808
11809
|
body: string;
|
|
11809
11810
|
from: string;
|
|
11810
11811
|
subject: string;
|
|
@@ -11816,7 +11817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11816
11817
|
};
|
|
11817
11818
|
};
|
|
11818
11819
|
output: {
|
|
11819
|
-
template: "
|
|
11820
|
+
template: "change_password" | "verify_email" | "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";
|
|
11820
11821
|
body: string;
|
|
11821
11822
|
from: string;
|
|
11822
11823
|
subject: string;
|
|
@@ -11839,7 +11840,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11839
11840
|
};
|
|
11840
11841
|
};
|
|
11841
11842
|
output: {
|
|
11842
|
-
name: "
|
|
11843
|
+
name: "change_password" | "verify_email" | "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";
|
|
11843
11844
|
body: string;
|
|
11844
11845
|
subject: string;
|
|
11845
11846
|
}[];
|
|
@@ -11852,7 +11853,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11852
11853
|
$get: {
|
|
11853
11854
|
input: {
|
|
11854
11855
|
param: {
|
|
11855
|
-
templateName: "
|
|
11856
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11856
11857
|
};
|
|
11857
11858
|
} & {
|
|
11858
11859
|
header: {
|
|
@@ -11865,7 +11866,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11865
11866
|
} | {
|
|
11866
11867
|
input: {
|
|
11867
11868
|
param: {
|
|
11868
|
-
templateName: "
|
|
11869
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11869
11870
|
};
|
|
11870
11871
|
} & {
|
|
11871
11872
|
header: {
|
|
@@ -11873,7 +11874,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11873
11874
|
};
|
|
11874
11875
|
};
|
|
11875
11876
|
output: {
|
|
11876
|
-
template: "
|
|
11877
|
+
template: "change_password" | "verify_email" | "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";
|
|
11877
11878
|
body: string;
|
|
11878
11879
|
from: string;
|
|
11879
11880
|
subject: string;
|
|
@@ -11892,7 +11893,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11892
11893
|
$put: {
|
|
11893
11894
|
input: {
|
|
11894
11895
|
param: {
|
|
11895
|
-
templateName: "
|
|
11896
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11896
11897
|
};
|
|
11897
11898
|
} & {
|
|
11898
11899
|
header: {
|
|
@@ -11900,7 +11901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11900
11901
|
};
|
|
11901
11902
|
} & {
|
|
11902
11903
|
json: {
|
|
11903
|
-
template: "
|
|
11904
|
+
template: "change_password" | "verify_email" | "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";
|
|
11904
11905
|
body: string;
|
|
11905
11906
|
subject: string;
|
|
11906
11907
|
syntax?: "liquid" | undefined;
|
|
@@ -11912,7 +11913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11912
11913
|
};
|
|
11913
11914
|
};
|
|
11914
11915
|
output: {
|
|
11915
|
-
template: "
|
|
11916
|
+
template: "change_password" | "verify_email" | "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";
|
|
11916
11917
|
body: string;
|
|
11917
11918
|
from: string;
|
|
11918
11919
|
subject: string;
|
|
@@ -11931,7 +11932,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11931
11932
|
$patch: {
|
|
11932
11933
|
input: {
|
|
11933
11934
|
param: {
|
|
11934
|
-
templateName: "
|
|
11935
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11935
11936
|
};
|
|
11936
11937
|
} & {
|
|
11937
11938
|
header: {
|
|
@@ -11939,7 +11940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11939
11940
|
};
|
|
11940
11941
|
} & {
|
|
11941
11942
|
json: {
|
|
11942
|
-
template?: "
|
|
11943
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11943
11944
|
body?: string | undefined;
|
|
11944
11945
|
from?: string | undefined;
|
|
11945
11946
|
subject?: string | undefined;
|
|
@@ -11956,7 +11957,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11956
11957
|
} | {
|
|
11957
11958
|
input: {
|
|
11958
11959
|
param: {
|
|
11959
|
-
templateName: "
|
|
11960
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11960
11961
|
};
|
|
11961
11962
|
} & {
|
|
11962
11963
|
header: {
|
|
@@ -11964,7 +11965,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11964
11965
|
};
|
|
11965
11966
|
} & {
|
|
11966
11967
|
json: {
|
|
11967
|
-
template?: "
|
|
11968
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11968
11969
|
body?: string | undefined;
|
|
11969
11970
|
from?: string | undefined;
|
|
11970
11971
|
subject?: string | undefined;
|
|
@@ -11976,7 +11977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11976
11977
|
};
|
|
11977
11978
|
};
|
|
11978
11979
|
output: {
|
|
11979
|
-
template: "
|
|
11980
|
+
template: "change_password" | "verify_email" | "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";
|
|
11980
11981
|
body: string;
|
|
11981
11982
|
from: string;
|
|
11982
11983
|
subject: string;
|
|
@@ -11995,7 +11996,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11995
11996
|
$delete: {
|
|
11996
11997
|
input: {
|
|
11997
11998
|
param: {
|
|
11998
|
-
templateName: "
|
|
11999
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11999
12000
|
};
|
|
12000
12001
|
} & {
|
|
12001
12002
|
header: {
|
|
@@ -12008,7 +12009,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12008
12009
|
} | {
|
|
12009
12010
|
input: {
|
|
12010
12011
|
param: {
|
|
12011
|
-
templateName: "
|
|
12012
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12012
12013
|
};
|
|
12013
12014
|
} & {
|
|
12014
12015
|
header: {
|
|
@@ -12025,7 +12026,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12025
12026
|
$post: {
|
|
12026
12027
|
input: {
|
|
12027
12028
|
param: {
|
|
12028
|
-
templateName: "
|
|
12029
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12029
12030
|
};
|
|
12030
12031
|
} & {
|
|
12031
12032
|
header: {
|
|
@@ -12308,7 +12309,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12308
12309
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12309
12310
|
custom_domain_id: string;
|
|
12310
12311
|
primary: boolean;
|
|
12311
|
-
status: "
|
|
12312
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12312
12313
|
verification_method?: "txt" | undefined;
|
|
12313
12314
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12314
12315
|
domain_metadata?: {
|
|
@@ -12349,7 +12350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12349
12350
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12350
12351
|
custom_domain_id: string;
|
|
12351
12352
|
primary: boolean;
|
|
12352
|
-
status: "
|
|
12353
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12353
12354
|
verification_method?: "txt" | undefined;
|
|
12354
12355
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12355
12356
|
domain_metadata?: {
|
|
@@ -12413,7 +12414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12413
12414
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12414
12415
|
custom_domain_id: string;
|
|
12415
12416
|
primary: boolean;
|
|
12416
|
-
status: "
|
|
12417
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12417
12418
|
verification_method?: "txt" | undefined;
|
|
12418
12419
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12419
12420
|
domain_metadata?: {
|
|
@@ -12460,7 +12461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12460
12461
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12461
12462
|
custom_domain_id: string;
|
|
12462
12463
|
primary: boolean;
|
|
12463
|
-
status: "
|
|
12464
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12464
12465
|
verification_method?: "txt" | undefined;
|
|
12465
12466
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12466
12467
|
domain_metadata?: {
|
|
@@ -12506,7 +12507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12506
12507
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12507
12508
|
custom_domain_id: string;
|
|
12508
12509
|
primary: boolean;
|
|
12509
|
-
status: "
|
|
12510
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12510
12511
|
verification_method?: "txt" | undefined;
|
|
12511
12512
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12512
12513
|
domain_metadata?: {
|
|
@@ -12547,7 +12548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12547
12548
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12548
12549
|
custom_domain_id: string;
|
|
12549
12550
|
primary: boolean;
|
|
12550
|
-
status: "
|
|
12551
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12551
12552
|
verification_method?: "txt" | undefined;
|
|
12552
12553
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12553
12554
|
domain_metadata?: {
|
|
@@ -12977,7 +12978,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12977
12978
|
} & {
|
|
12978
12979
|
json: {
|
|
12979
12980
|
body?: string | undefined;
|
|
12980
|
-
screen?: "
|
|
12981
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
12981
12982
|
branding?: {
|
|
12982
12983
|
colors?: {
|
|
12983
12984
|
primary: string;
|
|
@@ -13268,7 +13269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13268
13269
|
logs: {
|
|
13269
13270
|
action_name: string;
|
|
13270
13271
|
lines: {
|
|
13271
|
-
level: "
|
|
13272
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13272
13273
|
message: string;
|
|
13273
13274
|
}[];
|
|
13274
13275
|
}[];
|
|
@@ -13935,7 +13936,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13935
13936
|
args: import("hono/utils/types").JSONValue[];
|
|
13936
13937
|
}[];
|
|
13937
13938
|
logs: {
|
|
13938
|
-
level: "
|
|
13939
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13939
13940
|
message: string;
|
|
13940
13941
|
}[];
|
|
13941
13942
|
error?: string | undefined;
|
|
@@ -14246,7 +14247,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14246
14247
|
scope?: string | undefined;
|
|
14247
14248
|
grant_types?: string[] | undefined;
|
|
14248
14249
|
response_types?: string[] | undefined;
|
|
14249
|
-
token_endpoint_auth_method?: "none" | "
|
|
14250
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14250
14251
|
jwks_uri?: string | undefined;
|
|
14251
14252
|
jwks?: Record<string, unknown> | undefined;
|
|
14252
14253
|
software_id?: string | undefined;
|
|
@@ -14335,7 +14336,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14335
14336
|
scope?: string | undefined;
|
|
14336
14337
|
grant_types?: string[] | undefined;
|
|
14337
14338
|
response_types?: string[] | undefined;
|
|
14338
|
-
token_endpoint_auth_method?: "none" | "
|
|
14339
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14339
14340
|
jwks_uri?: string | undefined;
|
|
14340
14341
|
jwks?: Record<string, unknown> | undefined;
|
|
14341
14342
|
software_id?: string | undefined;
|
|
@@ -14682,15 +14683,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14682
14683
|
send: "code" | "link";
|
|
14683
14684
|
authParams: {
|
|
14684
14685
|
username?: string | undefined;
|
|
14685
|
-
audience?: string | undefined;
|
|
14686
|
-
scope?: string | undefined;
|
|
14687
14686
|
state?: string | undefined;
|
|
14687
|
+
audience?: string | undefined;
|
|
14688
14688
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14689
14689
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14690
|
-
|
|
14691
|
-
redirect_uri?: string | undefined;
|
|
14690
|
+
scope?: string | undefined;
|
|
14692
14691
|
organization?: string | undefined;
|
|
14693
14692
|
nonce?: string | undefined;
|
|
14693
|
+
redirect_uri?: string | undefined;
|
|
14694
|
+
act_as?: string | undefined;
|
|
14694
14695
|
prompt?: string | undefined;
|
|
14695
14696
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14696
14697
|
code_challenge?: string | undefined;
|
|
@@ -14718,15 +14719,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14718
14719
|
send: "code" | "link";
|
|
14719
14720
|
authParams: {
|
|
14720
14721
|
username?: string | undefined;
|
|
14721
|
-
audience?: string | undefined;
|
|
14722
|
-
scope?: string | undefined;
|
|
14723
14722
|
state?: string | undefined;
|
|
14723
|
+
audience?: string | undefined;
|
|
14724
14724
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14725
14725
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14726
|
-
|
|
14727
|
-
redirect_uri?: string | undefined;
|
|
14726
|
+
scope?: string | undefined;
|
|
14728
14727
|
organization?: string | undefined;
|
|
14729
14728
|
nonce?: string | undefined;
|
|
14729
|
+
redirect_uri?: string | undefined;
|
|
14730
|
+
act_as?: string | undefined;
|
|
14730
14731
|
prompt?: string | undefined;
|
|
14731
14732
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14732
14733
|
code_challenge?: string | undefined;
|
|
@@ -14861,14 +14862,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14861
14862
|
input: {
|
|
14862
14863
|
form: {
|
|
14863
14864
|
token: string;
|
|
14864
|
-
token_type_hint?: "
|
|
14865
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14865
14866
|
client_id?: string | undefined;
|
|
14866
14867
|
client_secret?: string | undefined;
|
|
14867
14868
|
};
|
|
14868
14869
|
} & {
|
|
14869
14870
|
json: {
|
|
14870
14871
|
token: string;
|
|
14871
|
-
token_type_hint?: "
|
|
14872
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14872
14873
|
client_id?: string | undefined;
|
|
14873
14874
|
client_secret?: string | undefined;
|
|
14874
14875
|
};
|
|
@@ -14880,14 +14881,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14880
14881
|
input: {
|
|
14881
14882
|
form: {
|
|
14882
14883
|
token: string;
|
|
14883
|
-
token_type_hint?: "
|
|
14884
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14884
14885
|
client_id?: string | undefined;
|
|
14885
14886
|
client_secret?: string | undefined;
|
|
14886
14887
|
};
|
|
14887
14888
|
} & {
|
|
14888
14889
|
json: {
|
|
14889
14890
|
token: string;
|
|
14890
|
-
token_type_hint?: "
|
|
14891
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14891
14892
|
client_id?: string | undefined;
|
|
14892
14893
|
client_secret?: string | undefined;
|
|
14893
14894
|
};
|
|
@@ -14902,14 +14903,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14902
14903
|
input: {
|
|
14903
14904
|
form: {
|
|
14904
14905
|
token: string;
|
|
14905
|
-
token_type_hint?: "
|
|
14906
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14906
14907
|
client_id?: string | undefined;
|
|
14907
14908
|
client_secret?: string | undefined;
|
|
14908
14909
|
};
|
|
14909
14910
|
} & {
|
|
14910
14911
|
json: {
|
|
14911
14912
|
token: string;
|
|
14912
|
-
token_type_hint?: "
|
|
14913
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14913
14914
|
client_id?: string | undefined;
|
|
14914
14915
|
client_secret?: string | undefined;
|
|
14915
14916
|
};
|
|
@@ -14959,7 +14960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14959
14960
|
client_id: string;
|
|
14960
14961
|
username: string;
|
|
14961
14962
|
otp: string;
|
|
14962
|
-
realm: "
|
|
14963
|
+
realm: "sms" | "email";
|
|
14963
14964
|
} | {
|
|
14964
14965
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14965
14966
|
subject_token: string;
|
|
@@ -15006,7 +15007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15006
15007
|
client_id: string;
|
|
15007
15008
|
username: string;
|
|
15008
15009
|
otp: string;
|
|
15009
|
-
realm: "
|
|
15010
|
+
realm: "sms" | "email";
|
|
15010
15011
|
} | {
|
|
15011
15012
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15012
15013
|
subject_token: string;
|
|
@@ -15058,7 +15059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15058
15059
|
client_id: string;
|
|
15059
15060
|
username: string;
|
|
15060
15061
|
otp: string;
|
|
15061
|
-
realm: "
|
|
15062
|
+
realm: "sms" | "email";
|
|
15062
15063
|
} | {
|
|
15063
15064
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15064
15065
|
subject_token: string;
|
|
@@ -15105,7 +15106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15105
15106
|
client_id: string;
|
|
15106
15107
|
username: string;
|
|
15107
15108
|
otp: string;
|
|
15108
|
-
realm: "
|
|
15109
|
+
realm: "sms" | "email";
|
|
15109
15110
|
} | {
|
|
15110
15111
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15111
15112
|
subject_token: string;
|
|
@@ -15165,7 +15166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15165
15166
|
client_id: string;
|
|
15166
15167
|
username: string;
|
|
15167
15168
|
otp: string;
|
|
15168
|
-
realm: "
|
|
15169
|
+
realm: "sms" | "email";
|
|
15169
15170
|
} | {
|
|
15170
15171
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15171
15172
|
subject_token: string;
|
|
@@ -15212,7 +15213,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15212
15213
|
client_id: string;
|
|
15213
15214
|
username: string;
|
|
15214
15215
|
otp: string;
|
|
15215
|
-
realm: "
|
|
15216
|
+
realm: "sms" | "email";
|
|
15216
15217
|
} | {
|
|
15217
15218
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15218
15219
|
subject_token: string;
|
|
@@ -15267,7 +15268,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15267
15268
|
client_id: string;
|
|
15268
15269
|
username: string;
|
|
15269
15270
|
otp: string;
|
|
15270
|
-
realm: "
|
|
15271
|
+
realm: "sms" | "email";
|
|
15271
15272
|
} | {
|
|
15272
15273
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15273
15274
|
subject_token: string;
|
|
@@ -15314,7 +15315,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15314
15315
|
client_id: string;
|
|
15315
15316
|
username: string;
|
|
15316
15317
|
otp: string;
|
|
15317
|
-
realm: "
|
|
15318
|
+
realm: "sms" | "email";
|
|
15318
15319
|
} | {
|
|
15319
15320
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15320
15321
|
subject_token: string;
|
|
@@ -15369,7 +15370,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15369
15370
|
client_id: string;
|
|
15370
15371
|
username: string;
|
|
15371
15372
|
otp: string;
|
|
15372
|
-
realm: "
|
|
15373
|
+
realm: "sms" | "email";
|
|
15373
15374
|
} | {
|
|
15374
15375
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15375
15376
|
subject_token: string;
|
|
@@ -15416,7 +15417,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15416
15417
|
client_id: string;
|
|
15417
15418
|
username: string;
|
|
15418
15419
|
otp: string;
|
|
15419
|
-
realm: "
|
|
15420
|
+
realm: "sms" | "email";
|
|
15420
15421
|
} | {
|
|
15421
15422
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15422
15423
|
subject_token: string;
|
|
@@ -16257,7 +16258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16257
16258
|
} & {
|
|
16258
16259
|
form: {
|
|
16259
16260
|
username: string;
|
|
16260
|
-
login_selection?: "
|
|
16261
|
+
login_selection?: "code" | "password" | undefined;
|
|
16261
16262
|
};
|
|
16262
16263
|
};
|
|
16263
16264
|
output: {};
|
|
@@ -16271,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16271
16272
|
} & {
|
|
16272
16273
|
form: {
|
|
16273
16274
|
username: string;
|
|
16274
|
-
login_selection?: "
|
|
16275
|
+
login_selection?: "code" | "password" | undefined;
|
|
16275
16276
|
};
|
|
16276
16277
|
};
|
|
16277
16278
|
output: {};
|
|
@@ -16636,7 +16637,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16636
16637
|
$get: {
|
|
16637
16638
|
input: {
|
|
16638
16639
|
param: {
|
|
16639
|
-
screen: "signup" | "
|
|
16640
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "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";
|
|
16640
16641
|
};
|
|
16641
16642
|
} & {
|
|
16642
16643
|
query: {
|
|
@@ -16652,7 +16653,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16652
16653
|
} | {
|
|
16653
16654
|
input: {
|
|
16654
16655
|
param: {
|
|
16655
|
-
screen: "signup" | "
|
|
16656
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "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";
|
|
16656
16657
|
};
|
|
16657
16658
|
} & {
|
|
16658
16659
|
query: {
|
|
@@ -16668,7 +16669,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16668
16669
|
} | {
|
|
16669
16670
|
input: {
|
|
16670
16671
|
param: {
|
|
16671
|
-
screen: "signup" | "
|
|
16672
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "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";
|
|
16672
16673
|
};
|
|
16673
16674
|
} & {
|
|
16674
16675
|
query: {
|
|
@@ -16688,7 +16689,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16688
16689
|
$post: {
|
|
16689
16690
|
input: {
|
|
16690
16691
|
param: {
|
|
16691
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
16692
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "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";
|
|
16692
16693
|
};
|
|
16693
16694
|
} & {
|
|
16694
16695
|
query: {
|
|
@@ -16706,7 +16707,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16706
16707
|
} | {
|
|
16707
16708
|
input: {
|
|
16708
16709
|
param: {
|
|
16709
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
16710
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "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";
|
|
16710
16711
|
};
|
|
16711
16712
|
} & {
|
|
16712
16713
|
query: {
|