authhero 5.13.0 → 5.14.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 +126 -126
- package/dist/authhero.d.ts +149 -114
- package/dist/authhero.mjs +9962 -9822
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -6
- package/dist/types/helpers/cimd.d.ts +32 -0
- package/dist/types/helpers/client.d.ts +3 -18
- package/dist/types/helpers/connection.d.ts +40 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/service-token.d.ts +11 -1
- package/dist/types/index.d.ts +148 -114
- package/dist/types/routes/auth-api/index.d.ts +48 -14
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +34 -0
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +13 -13
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +92 -92
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +3 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +12 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/utils/ssrf-fetch.d.ts +8 -0
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
218
218
|
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
219
219
|
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
220
220
|
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
+
client_id_metadata_document_registration: z.ZodOptional<z.ZodBoolean>;
|
|
221
222
|
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
222
223
|
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
223
224
|
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2459,7 +2460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2459
2460
|
};
|
|
2460
2461
|
} & {
|
|
2461
2462
|
json: {
|
|
2462
|
-
type: "push" | "email" | "passkey" | "
|
|
2463
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
2463
2464
|
phone_number?: string | undefined;
|
|
2464
2465
|
totp_secret?: string | undefined;
|
|
2465
2466
|
credential_id?: string | undefined;
|
|
@@ -2599,7 +2600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2599
2600
|
};
|
|
2600
2601
|
};
|
|
2601
2602
|
output: {
|
|
2602
|
-
name: "
|
|
2603
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2603
2604
|
enabled: boolean;
|
|
2604
2605
|
trial_expired?: boolean | undefined;
|
|
2605
2606
|
}[];
|
|
@@ -2754,7 +2755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2754
2755
|
$get: {
|
|
2755
2756
|
input: {
|
|
2756
2757
|
param: {
|
|
2757
|
-
factor_name: "
|
|
2758
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2758
2759
|
};
|
|
2759
2760
|
} & {
|
|
2760
2761
|
header: {
|
|
@@ -2762,7 +2763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2762
2763
|
};
|
|
2763
2764
|
};
|
|
2764
2765
|
output: {
|
|
2765
|
-
name: "
|
|
2766
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2766
2767
|
enabled: boolean;
|
|
2767
2768
|
trial_expired?: boolean | undefined;
|
|
2768
2769
|
};
|
|
@@ -2775,7 +2776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2775
2776
|
$put: {
|
|
2776
2777
|
input: {
|
|
2777
2778
|
param: {
|
|
2778
|
-
factor_name: "
|
|
2779
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2779
2780
|
};
|
|
2780
2781
|
} & {
|
|
2781
2782
|
header: {
|
|
@@ -2787,7 +2788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2787
2788
|
};
|
|
2788
2789
|
};
|
|
2789
2790
|
output: {
|
|
2790
|
-
name: "
|
|
2791
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2791
2792
|
enabled: boolean;
|
|
2792
2793
|
trial_expired?: boolean | undefined;
|
|
2793
2794
|
};
|
|
@@ -3533,9 +3534,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3533
3534
|
email?: string | undefined;
|
|
3534
3535
|
};
|
|
3535
3536
|
id?: string | undefined;
|
|
3536
|
-
connection_id?: string | undefined;
|
|
3537
3537
|
app_metadata?: Record<string, any> | undefined;
|
|
3538
3538
|
user_metadata?: Record<string, any> | undefined;
|
|
3539
|
+
connection_id?: string | undefined;
|
|
3539
3540
|
roles?: string[] | undefined;
|
|
3540
3541
|
ttl_sec?: number | undefined;
|
|
3541
3542
|
send_invitation_email?: boolean | undefined;
|
|
@@ -9023,7 +9024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9024
|
};
|
|
9024
9025
|
};
|
|
9025
9026
|
output: {
|
|
9026
|
-
prompt: "status" | "
|
|
9027
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "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";
|
|
9027
9028
|
language: string;
|
|
9028
9029
|
}[];
|
|
9029
9030
|
outputFormat: "json";
|
|
@@ -9061,7 +9062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9062
|
$get: {
|
|
9062
9063
|
input: {
|
|
9063
9064
|
param: {
|
|
9064
|
-
prompt: "status" | "
|
|
9065
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "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";
|
|
9065
9066
|
language: string;
|
|
9066
9067
|
};
|
|
9067
9068
|
} & {
|
|
@@ -9083,7 +9084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9083
9084
|
$put: {
|
|
9084
9085
|
input: {
|
|
9085
9086
|
param: {
|
|
9086
|
-
prompt: "status" | "
|
|
9087
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "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";
|
|
9087
9088
|
language: string;
|
|
9088
9089
|
};
|
|
9089
9090
|
} & {
|
|
@@ -9107,7 +9108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9107
9108
|
$delete: {
|
|
9108
9109
|
input: {
|
|
9109
9110
|
param: {
|
|
9110
|
-
prompt: "status" | "
|
|
9111
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "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";
|
|
9111
9112
|
language: string;
|
|
9112
9113
|
};
|
|
9113
9114
|
} & {
|
|
@@ -9199,7 +9200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9199
9200
|
active?: boolean | undefined;
|
|
9200
9201
|
} | undefined;
|
|
9201
9202
|
signup?: {
|
|
9202
|
-
status?: "optional" | "
|
|
9203
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9203
9204
|
verification?: {
|
|
9204
9205
|
active?: boolean | undefined;
|
|
9205
9206
|
} | undefined;
|
|
@@ -9216,7 +9217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9216
9217
|
active?: boolean | undefined;
|
|
9217
9218
|
} | undefined;
|
|
9218
9219
|
signup?: {
|
|
9219
|
-
status?: "optional" | "
|
|
9220
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9220
9221
|
} | undefined;
|
|
9221
9222
|
validation?: {
|
|
9222
9223
|
max_length?: number | undefined;
|
|
@@ -9233,7 +9234,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9233
9234
|
active?: boolean | undefined;
|
|
9234
9235
|
} | undefined;
|
|
9235
9236
|
signup?: {
|
|
9236
|
-
status?: "optional" | "
|
|
9237
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9237
9238
|
} | undefined;
|
|
9238
9239
|
} | undefined;
|
|
9239
9240
|
} | undefined;
|
|
@@ -9333,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9333
9334
|
active?: boolean | undefined;
|
|
9334
9335
|
} | undefined;
|
|
9335
9336
|
signup?: {
|
|
9336
|
-
status?: "optional" | "
|
|
9337
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9337
9338
|
verification?: {
|
|
9338
9339
|
active?: boolean | undefined;
|
|
9339
9340
|
} | undefined;
|
|
@@ -9350,7 +9351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9350
9351
|
active?: boolean | undefined;
|
|
9351
9352
|
} | undefined;
|
|
9352
9353
|
signup?: {
|
|
9353
|
-
status?: "optional" | "
|
|
9354
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9354
9355
|
} | undefined;
|
|
9355
9356
|
validation?: {
|
|
9356
9357
|
max_length?: number | undefined;
|
|
@@ -9367,7 +9368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9367
9368
|
active?: boolean | undefined;
|
|
9368
9369
|
} | undefined;
|
|
9369
9370
|
signup?: {
|
|
9370
|
-
status?: "optional" | "
|
|
9371
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9371
9372
|
} | undefined;
|
|
9372
9373
|
} | undefined;
|
|
9373
9374
|
} | undefined;
|
|
@@ -9482,7 +9483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9482
9483
|
active?: boolean | undefined;
|
|
9483
9484
|
} | undefined;
|
|
9484
9485
|
signup?: {
|
|
9485
|
-
status?: "optional" | "
|
|
9486
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9486
9487
|
verification?: {
|
|
9487
9488
|
active?: boolean | undefined;
|
|
9488
9489
|
} | undefined;
|
|
@@ -9499,7 +9500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9499
9500
|
active?: boolean | undefined;
|
|
9500
9501
|
} | undefined;
|
|
9501
9502
|
signup?: {
|
|
9502
|
-
status?: "optional" | "
|
|
9503
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9503
9504
|
} | undefined;
|
|
9504
9505
|
validation?: {
|
|
9505
9506
|
max_length?: number | undefined;
|
|
@@ -9516,7 +9517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9516
9517
|
active?: boolean | undefined;
|
|
9517
9518
|
} | undefined;
|
|
9518
9519
|
signup?: {
|
|
9519
|
-
status?: "optional" | "
|
|
9520
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9520
9521
|
} | undefined;
|
|
9521
9522
|
} | undefined;
|
|
9522
9523
|
} | undefined;
|
|
@@ -9661,7 +9662,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9661
9662
|
active?: boolean | undefined;
|
|
9662
9663
|
} | undefined;
|
|
9663
9664
|
signup?: {
|
|
9664
|
-
status?: "optional" | "
|
|
9665
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9665
9666
|
verification?: {
|
|
9666
9667
|
active?: boolean | undefined;
|
|
9667
9668
|
} | undefined;
|
|
@@ -9678,7 +9679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9678
9679
|
active?: boolean | undefined;
|
|
9679
9680
|
} | undefined;
|
|
9680
9681
|
signup?: {
|
|
9681
|
-
status?: "optional" | "
|
|
9682
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9682
9683
|
} | undefined;
|
|
9683
9684
|
validation?: {
|
|
9684
9685
|
max_length?: number | undefined;
|
|
@@ -9695,7 +9696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9695
9696
|
active?: boolean | undefined;
|
|
9696
9697
|
} | undefined;
|
|
9697
9698
|
signup?: {
|
|
9698
|
-
status?: "optional" | "
|
|
9699
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9699
9700
|
} | undefined;
|
|
9700
9701
|
} | undefined;
|
|
9701
9702
|
} | undefined;
|
|
@@ -9819,7 +9820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9819
9820
|
active?: boolean | undefined;
|
|
9820
9821
|
} | undefined;
|
|
9821
9822
|
signup?: {
|
|
9822
|
-
status?: "optional" | "
|
|
9823
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9823
9824
|
verification?: {
|
|
9824
9825
|
active?: boolean | undefined;
|
|
9825
9826
|
} | undefined;
|
|
@@ -9836,7 +9837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9836
9837
|
active?: boolean | undefined;
|
|
9837
9838
|
} | undefined;
|
|
9838
9839
|
signup?: {
|
|
9839
|
-
status?: "optional" | "
|
|
9840
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9840
9841
|
} | undefined;
|
|
9841
9842
|
validation?: {
|
|
9842
9843
|
max_length?: number | undefined;
|
|
@@ -9853,7 +9854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9853
9854
|
active?: boolean | undefined;
|
|
9854
9855
|
} | undefined;
|
|
9855
9856
|
signup?: {
|
|
9856
|
-
status?: "optional" | "
|
|
9857
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9857
9858
|
} | undefined;
|
|
9858
9859
|
} | undefined;
|
|
9859
9860
|
} | undefined;
|
|
@@ -10143,7 +10144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10143
10144
|
};
|
|
10144
10145
|
};
|
|
10145
10146
|
output: ({
|
|
10146
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10147
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10147
10148
|
enabled: boolean;
|
|
10148
10149
|
synchronous: boolean;
|
|
10149
10150
|
created_at: string;
|
|
@@ -10155,7 +10156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10155
10156
|
[x: string]: hono_utils_types.JSONValue;
|
|
10156
10157
|
} | undefined;
|
|
10157
10158
|
} | {
|
|
10158
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10159
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10159
10160
|
enabled: boolean;
|
|
10160
10161
|
synchronous: boolean;
|
|
10161
10162
|
created_at: string;
|
|
@@ -10167,7 +10168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10167
10168
|
[x: string]: hono_utils_types.JSONValue;
|
|
10168
10169
|
} | undefined;
|
|
10169
10170
|
} | {
|
|
10170
|
-
trigger_id: "post-user-
|
|
10171
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10171
10172
|
enabled: boolean;
|
|
10172
10173
|
synchronous: boolean;
|
|
10173
10174
|
created_at: string;
|
|
@@ -10179,7 +10180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10179
10180
|
[x: string]: hono_utils_types.JSONValue;
|
|
10180
10181
|
} | undefined;
|
|
10181
10182
|
} | {
|
|
10182
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10183
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10183
10184
|
enabled: boolean;
|
|
10184
10185
|
synchronous: boolean;
|
|
10185
10186
|
created_at: string;
|
|
@@ -10195,7 +10196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10195
10196
|
limit: number;
|
|
10196
10197
|
length: number;
|
|
10197
10198
|
hooks: ({
|
|
10198
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10199
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10199
10200
|
enabled: boolean;
|
|
10200
10201
|
synchronous: boolean;
|
|
10201
10202
|
created_at: string;
|
|
@@ -10207,7 +10208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10207
10208
|
[x: string]: hono_utils_types.JSONValue;
|
|
10208
10209
|
} | undefined;
|
|
10209
10210
|
} | {
|
|
10210
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10211
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10211
10212
|
enabled: boolean;
|
|
10212
10213
|
synchronous: boolean;
|
|
10213
10214
|
created_at: string;
|
|
@@ -10219,7 +10220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10219
10220
|
[x: string]: hono_utils_types.JSONValue;
|
|
10220
10221
|
} | undefined;
|
|
10221
10222
|
} | {
|
|
10222
|
-
trigger_id: "post-user-
|
|
10223
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10223
10224
|
enabled: boolean;
|
|
10224
10225
|
synchronous: boolean;
|
|
10225
10226
|
created_at: string;
|
|
@@ -10231,7 +10232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10231
10232
|
[x: string]: hono_utils_types.JSONValue;
|
|
10232
10233
|
} | undefined;
|
|
10233
10234
|
} | {
|
|
10234
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10235
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10235
10236
|
enabled: boolean;
|
|
10236
10237
|
synchronous: boolean;
|
|
10237
10238
|
created_at: string;
|
|
@@ -10258,7 +10259,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10258
10259
|
};
|
|
10259
10260
|
} & {
|
|
10260
10261
|
json: {
|
|
10261
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10262
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10262
10263
|
url: string;
|
|
10263
10264
|
enabled?: boolean | undefined;
|
|
10264
10265
|
synchronous?: boolean | undefined;
|
|
@@ -10266,7 +10267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10266
10267
|
hook_id?: string | undefined;
|
|
10267
10268
|
metadata?: Record<string, unknown> | undefined;
|
|
10268
10269
|
} | {
|
|
10269
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10270
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10270
10271
|
form_id: string;
|
|
10271
10272
|
enabled?: boolean | undefined;
|
|
10272
10273
|
synchronous?: boolean | undefined;
|
|
@@ -10274,7 +10275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10274
10275
|
hook_id?: string | undefined;
|
|
10275
10276
|
metadata?: Record<string, unknown> | undefined;
|
|
10276
10277
|
} | {
|
|
10277
|
-
trigger_id: "post-user-
|
|
10278
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10278
10279
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
10279
10280
|
enabled?: boolean | undefined;
|
|
10280
10281
|
synchronous?: boolean | undefined;
|
|
@@ -10282,7 +10283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10282
10283
|
hook_id?: string | undefined;
|
|
10283
10284
|
metadata?: Record<string, unknown> | undefined;
|
|
10284
10285
|
} | {
|
|
10285
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10286
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10286
10287
|
code_id: string;
|
|
10287
10288
|
enabled?: boolean | undefined;
|
|
10288
10289
|
synchronous?: boolean | undefined;
|
|
@@ -10292,7 +10293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10292
10293
|
};
|
|
10293
10294
|
};
|
|
10294
10295
|
output: {
|
|
10295
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10296
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10296
10297
|
enabled: boolean;
|
|
10297
10298
|
synchronous: boolean;
|
|
10298
10299
|
created_at: string;
|
|
@@ -10304,7 +10305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10304
10305
|
[x: string]: hono_utils_types.JSONValue;
|
|
10305
10306
|
} | undefined;
|
|
10306
10307
|
} | {
|
|
10307
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10308
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10308
10309
|
enabled: boolean;
|
|
10309
10310
|
synchronous: boolean;
|
|
10310
10311
|
created_at: string;
|
|
@@ -10316,7 +10317,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10316
10317
|
[x: string]: hono_utils_types.JSONValue;
|
|
10317
10318
|
} | undefined;
|
|
10318
10319
|
} | {
|
|
10319
|
-
trigger_id: "post-user-
|
|
10320
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10320
10321
|
enabled: boolean;
|
|
10321
10322
|
synchronous: boolean;
|
|
10322
10323
|
created_at: string;
|
|
@@ -10328,7 +10329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10328
10329
|
[x: string]: hono_utils_types.JSONValue;
|
|
10329
10330
|
} | undefined;
|
|
10330
10331
|
} | {
|
|
10331
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10332
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10332
10333
|
enabled: boolean;
|
|
10333
10334
|
synchronous: boolean;
|
|
10334
10335
|
created_at: string;
|
|
@@ -10374,7 +10375,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10374
10375
|
json: unknown;
|
|
10375
10376
|
};
|
|
10376
10377
|
output: {
|
|
10377
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10378
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10378
10379
|
enabled: boolean;
|
|
10379
10380
|
synchronous: boolean;
|
|
10380
10381
|
created_at: string;
|
|
@@ -10386,7 +10387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10386
10387
|
[x: string]: hono_utils_types.JSONValue;
|
|
10387
10388
|
} | undefined;
|
|
10388
10389
|
} | {
|
|
10389
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10390
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10390
10391
|
enabled: boolean;
|
|
10391
10392
|
synchronous: boolean;
|
|
10392
10393
|
created_at: string;
|
|
@@ -10398,7 +10399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10398
10399
|
[x: string]: hono_utils_types.JSONValue;
|
|
10399
10400
|
} | undefined;
|
|
10400
10401
|
} | {
|
|
10401
|
-
trigger_id: "post-user-
|
|
10402
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10402
10403
|
enabled: boolean;
|
|
10403
10404
|
synchronous: boolean;
|
|
10404
10405
|
created_at: string;
|
|
@@ -10410,7 +10411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10410
10411
|
[x: string]: hono_utils_types.JSONValue;
|
|
10411
10412
|
} | undefined;
|
|
10412
10413
|
} | {
|
|
10413
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10414
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10414
10415
|
enabled: boolean;
|
|
10415
10416
|
synchronous: boolean;
|
|
10416
10417
|
created_at: string;
|
|
@@ -10452,7 +10453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10452
10453
|
};
|
|
10453
10454
|
};
|
|
10454
10455
|
output: {
|
|
10455
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10456
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10456
10457
|
enabled: boolean;
|
|
10457
10458
|
synchronous: boolean;
|
|
10458
10459
|
created_at: string;
|
|
@@ -10464,7 +10465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10464
10465
|
[x: string]: hono_utils_types.JSONValue;
|
|
10465
10466
|
} | undefined;
|
|
10466
10467
|
} | {
|
|
10467
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10468
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10468
10469
|
enabled: boolean;
|
|
10469
10470
|
synchronous: boolean;
|
|
10470
10471
|
created_at: string;
|
|
@@ -10476,7 +10477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10476
10477
|
[x: string]: hono_utils_types.JSONValue;
|
|
10477
10478
|
} | undefined;
|
|
10478
10479
|
} | {
|
|
10479
|
-
trigger_id: "post-user-
|
|
10480
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10480
10481
|
enabled: boolean;
|
|
10481
10482
|
synchronous: boolean;
|
|
10482
10483
|
created_at: string;
|
|
@@ -10488,7 +10489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10488
10489
|
[x: string]: hono_utils_types.JSONValue;
|
|
10489
10490
|
} | undefined;
|
|
10490
10491
|
} | {
|
|
10491
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10492
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10492
10493
|
enabled: boolean;
|
|
10493
10494
|
synchronous: boolean;
|
|
10494
10495
|
created_at: string;
|
|
@@ -10548,7 +10549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10548
10549
|
log_type: string;
|
|
10549
10550
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10550
10551
|
actor: {
|
|
10551
|
-
type: "
|
|
10552
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10552
10553
|
id?: string | undefined;
|
|
10553
10554
|
email?: string | undefined;
|
|
10554
10555
|
org_id?: string | undefined;
|
|
@@ -11196,7 +11197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11196
11197
|
};
|
|
11197
11198
|
};
|
|
11198
11199
|
output: {
|
|
11199
|
-
type: "fn" | "i" | "
|
|
11200
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11200
11201
|
date: string;
|
|
11201
11202
|
isMobile: boolean;
|
|
11202
11203
|
log_id: string;
|
|
@@ -11235,7 +11236,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11235
11236
|
limit: number;
|
|
11236
11237
|
length: number;
|
|
11237
11238
|
logs: {
|
|
11238
|
-
type: "fn" | "i" | "
|
|
11239
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11239
11240
|
date: string;
|
|
11240
11241
|
isMobile: boolean;
|
|
11241
11242
|
log_id: string;
|
|
@@ -11289,7 +11290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11289
11290
|
};
|
|
11290
11291
|
};
|
|
11291
11292
|
output: {
|
|
11292
|
-
type: "fn" | "i" | "
|
|
11293
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11293
11294
|
date: string;
|
|
11294
11295
|
isMobile: boolean;
|
|
11295
11296
|
log_id: string;
|
|
@@ -11603,7 +11604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11603
11604
|
addons?: {
|
|
11604
11605
|
[x: string]: any;
|
|
11605
11606
|
} | undefined;
|
|
11606
|
-
token_endpoint_auth_method?: "
|
|
11607
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11607
11608
|
client_metadata?: {
|
|
11608
11609
|
[x: string]: string;
|
|
11609
11610
|
} | undefined;
|
|
@@ -11699,7 +11700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11699
11700
|
addons?: {
|
|
11700
11701
|
[x: string]: any;
|
|
11701
11702
|
} | undefined;
|
|
11702
|
-
token_endpoint_auth_method?: "
|
|
11703
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11703
11704
|
client_metadata?: {
|
|
11704
11705
|
[x: string]: string;
|
|
11705
11706
|
} | undefined;
|
|
@@ -11810,7 +11811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11810
11811
|
addons?: {
|
|
11811
11812
|
[x: string]: any;
|
|
11812
11813
|
} | undefined;
|
|
11813
|
-
token_endpoint_auth_method?: "
|
|
11814
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11814
11815
|
client_metadata?: {
|
|
11815
11816
|
[x: string]: string;
|
|
11816
11817
|
} | undefined;
|
|
@@ -11920,7 +11921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11920
11921
|
custom_login_page_preview?: string | undefined;
|
|
11921
11922
|
form_template?: string | undefined;
|
|
11922
11923
|
addons?: Record<string, any> | undefined;
|
|
11923
|
-
token_endpoint_auth_method?: "
|
|
11924
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11924
11925
|
client_metadata?: Record<string, string> | undefined;
|
|
11925
11926
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11926
11927
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12000,7 +12001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12000
12001
|
addons?: {
|
|
12001
12002
|
[x: string]: any;
|
|
12002
12003
|
} | undefined;
|
|
12003
|
-
token_endpoint_auth_method?: "
|
|
12004
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12004
12005
|
client_metadata?: {
|
|
12005
12006
|
[x: string]: string;
|
|
12006
12007
|
} | undefined;
|
|
@@ -12089,7 +12090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12089
12090
|
custom_login_page_preview?: string | undefined;
|
|
12090
12091
|
form_template?: string | undefined;
|
|
12091
12092
|
addons?: Record<string, any> | undefined;
|
|
12092
|
-
token_endpoint_auth_method?: "
|
|
12093
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12093
12094
|
client_metadata?: Record<string, string> | undefined;
|
|
12094
12095
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12095
12096
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12169,7 +12170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12169
12170
|
addons?: {
|
|
12170
12171
|
[x: string]: any;
|
|
12171
12172
|
} | undefined;
|
|
12172
|
-
token_endpoint_auth_method?: "
|
|
12173
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12173
12174
|
client_metadata?: {
|
|
12174
12175
|
[x: string]: string;
|
|
12175
12176
|
} | undefined;
|
|
@@ -12291,7 +12292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12291
12292
|
active?: boolean | undefined;
|
|
12292
12293
|
} | undefined;
|
|
12293
12294
|
signup?: {
|
|
12294
|
-
status?: "optional" | "
|
|
12295
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12295
12296
|
verification?: {
|
|
12296
12297
|
active?: boolean | undefined;
|
|
12297
12298
|
} | undefined;
|
|
@@ -12308,7 +12309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12308
12309
|
active?: boolean | undefined;
|
|
12309
12310
|
} | undefined;
|
|
12310
12311
|
signup?: {
|
|
12311
|
-
status?: "optional" | "
|
|
12312
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12312
12313
|
} | undefined;
|
|
12313
12314
|
validation?: {
|
|
12314
12315
|
max_length?: number | undefined;
|
|
@@ -12325,7 +12326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12325
12326
|
active?: boolean | undefined;
|
|
12326
12327
|
} | undefined;
|
|
12327
12328
|
signup?: {
|
|
12328
|
-
status?: "optional" | "
|
|
12329
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12329
12330
|
} | undefined;
|
|
12330
12331
|
} | undefined;
|
|
12331
12332
|
} | undefined;
|
|
@@ -12445,7 +12446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12445
12446
|
active?: boolean | undefined;
|
|
12446
12447
|
} | undefined;
|
|
12447
12448
|
signup?: {
|
|
12448
|
-
status?: "optional" | "
|
|
12449
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12449
12450
|
verification?: {
|
|
12450
12451
|
active?: boolean | undefined;
|
|
12451
12452
|
} | undefined;
|
|
@@ -12462,7 +12463,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12462
12463
|
active?: boolean | undefined;
|
|
12463
12464
|
} | undefined;
|
|
12464
12465
|
signup?: {
|
|
12465
|
-
status?: "optional" | "
|
|
12466
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12466
12467
|
} | undefined;
|
|
12467
12468
|
validation?: {
|
|
12468
12469
|
max_length?: number | undefined;
|
|
@@ -12479,7 +12480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12479
12480
|
active?: boolean | undefined;
|
|
12480
12481
|
} | undefined;
|
|
12481
12482
|
signup?: {
|
|
12482
|
-
status?: "optional" | "
|
|
12483
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12483
12484
|
} | undefined;
|
|
12484
12485
|
} | undefined;
|
|
12485
12486
|
} | undefined;
|
|
@@ -13433,7 +13434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13433
13434
|
};
|
|
13434
13435
|
};
|
|
13435
13436
|
output: {
|
|
13436
|
-
type: "fn" | "i" | "
|
|
13437
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13437
13438
|
date: string;
|
|
13438
13439
|
isMobile: boolean;
|
|
13439
13440
|
log_id: string;
|
|
@@ -13472,7 +13473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13472
13473
|
limit: number;
|
|
13473
13474
|
length: number;
|
|
13474
13475
|
logs: {
|
|
13475
|
-
type: "fn" | "i" | "
|
|
13476
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13476
13477
|
date: string;
|
|
13477
13478
|
isMobile: boolean;
|
|
13478
13479
|
log_id: string;
|
|
@@ -13787,7 +13788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13787
13788
|
};
|
|
13788
13789
|
} & {
|
|
13789
13790
|
json: {
|
|
13790
|
-
template: "
|
|
13791
|
+
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";
|
|
13791
13792
|
body: string;
|
|
13792
13793
|
from: string;
|
|
13793
13794
|
subject: string;
|
|
@@ -13808,7 +13809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13809
|
};
|
|
13809
13810
|
} & {
|
|
13810
13811
|
json: {
|
|
13811
|
-
template: "
|
|
13812
|
+
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";
|
|
13812
13813
|
body: string;
|
|
13813
13814
|
from: string;
|
|
13814
13815
|
subject: string;
|
|
@@ -13820,7 +13821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13820
13821
|
};
|
|
13821
13822
|
};
|
|
13822
13823
|
output: {
|
|
13823
|
-
template: "
|
|
13824
|
+
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";
|
|
13824
13825
|
body: string;
|
|
13825
13826
|
from: string;
|
|
13826
13827
|
subject: string;
|
|
@@ -13839,7 +13840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13839
13840
|
$get: {
|
|
13840
13841
|
input: {
|
|
13841
13842
|
param: {
|
|
13842
|
-
templateName: "
|
|
13843
|
+
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";
|
|
13843
13844
|
};
|
|
13844
13845
|
} & {
|
|
13845
13846
|
header: {
|
|
@@ -13852,7 +13853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13852
13853
|
} | {
|
|
13853
13854
|
input: {
|
|
13854
13855
|
param: {
|
|
13855
|
-
templateName: "
|
|
13856
|
+
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";
|
|
13856
13857
|
};
|
|
13857
13858
|
} & {
|
|
13858
13859
|
header: {
|
|
@@ -13860,7 +13861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13860
13861
|
};
|
|
13861
13862
|
};
|
|
13862
13863
|
output: {
|
|
13863
|
-
template: "
|
|
13864
|
+
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";
|
|
13864
13865
|
body: string;
|
|
13865
13866
|
from: string;
|
|
13866
13867
|
subject: string;
|
|
@@ -13879,7 +13880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13879
13880
|
$put: {
|
|
13880
13881
|
input: {
|
|
13881
13882
|
param: {
|
|
13882
|
-
templateName: "
|
|
13883
|
+
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";
|
|
13883
13884
|
};
|
|
13884
13885
|
} & {
|
|
13885
13886
|
header: {
|
|
@@ -13887,7 +13888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13887
13888
|
};
|
|
13888
13889
|
} & {
|
|
13889
13890
|
json: {
|
|
13890
|
-
template: "
|
|
13891
|
+
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";
|
|
13891
13892
|
body: string;
|
|
13892
13893
|
from: string;
|
|
13893
13894
|
subject: string;
|
|
@@ -13899,7 +13900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13899
13900
|
};
|
|
13900
13901
|
};
|
|
13901
13902
|
output: {
|
|
13902
|
-
template: "
|
|
13903
|
+
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";
|
|
13903
13904
|
body: string;
|
|
13904
13905
|
from: string;
|
|
13905
13906
|
subject: string;
|
|
@@ -13918,7 +13919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13918
13919
|
$patch: {
|
|
13919
13920
|
input: {
|
|
13920
13921
|
param: {
|
|
13921
|
-
templateName: "
|
|
13922
|
+
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";
|
|
13922
13923
|
};
|
|
13923
13924
|
} & {
|
|
13924
13925
|
header: {
|
|
@@ -13926,7 +13927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13926
13927
|
};
|
|
13927
13928
|
} & {
|
|
13928
13929
|
json: {
|
|
13929
|
-
template?: "
|
|
13930
|
+
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;
|
|
13930
13931
|
body?: string | undefined;
|
|
13931
13932
|
from?: string | undefined;
|
|
13932
13933
|
subject?: string | undefined;
|
|
@@ -13943,7 +13944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13943
13944
|
} | {
|
|
13944
13945
|
input: {
|
|
13945
13946
|
param: {
|
|
13946
|
-
templateName: "
|
|
13947
|
+
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";
|
|
13947
13948
|
};
|
|
13948
13949
|
} & {
|
|
13949
13950
|
header: {
|
|
@@ -13951,7 +13952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13951
13952
|
};
|
|
13952
13953
|
} & {
|
|
13953
13954
|
json: {
|
|
13954
|
-
template?: "
|
|
13955
|
+
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;
|
|
13955
13956
|
body?: string | undefined;
|
|
13956
13957
|
from?: string | undefined;
|
|
13957
13958
|
subject?: string | undefined;
|
|
@@ -13963,7 +13964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13963
13964
|
};
|
|
13964
13965
|
};
|
|
13965
13966
|
output: {
|
|
13966
|
-
template: "
|
|
13967
|
+
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";
|
|
13967
13968
|
body: string;
|
|
13968
13969
|
from: string;
|
|
13969
13970
|
subject: string;
|
|
@@ -14238,7 +14239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14238
14239
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14239
14240
|
custom_domain_id: string;
|
|
14240
14241
|
primary: boolean;
|
|
14241
|
-
status: "
|
|
14242
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14242
14243
|
verification_method?: "txt" | undefined;
|
|
14243
14244
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14244
14245
|
domain_metadata?: {
|
|
@@ -14279,7 +14280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14279
14280
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14280
14281
|
custom_domain_id: string;
|
|
14281
14282
|
primary: boolean;
|
|
14282
|
-
status: "
|
|
14283
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14283
14284
|
verification_method?: "txt" | undefined;
|
|
14284
14285
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14285
14286
|
domain_metadata?: {
|
|
@@ -14340,7 +14341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14340
14341
|
domain_metadata?: Record<string, string> | undefined;
|
|
14341
14342
|
custom_domain_id?: string | undefined;
|
|
14342
14343
|
primary?: boolean | undefined;
|
|
14343
|
-
status?: "
|
|
14344
|
+
status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
|
|
14344
14345
|
origin_domain_name?: string | undefined;
|
|
14345
14346
|
verification?: {
|
|
14346
14347
|
methods: ({
|
|
@@ -14361,7 +14362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14361
14362
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14362
14363
|
custom_domain_id: string;
|
|
14363
14364
|
primary: boolean;
|
|
14364
|
-
status: "
|
|
14365
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14365
14366
|
verification_method?: "txt" | undefined;
|
|
14366
14367
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14367
14368
|
domain_metadata?: {
|
|
@@ -14408,7 +14409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14408
14409
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14409
14410
|
custom_domain_id: string;
|
|
14410
14411
|
primary: boolean;
|
|
14411
|
-
status: "
|
|
14412
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14412
14413
|
verification_method?: "txt" | undefined;
|
|
14413
14414
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14414
14415
|
domain_metadata?: {
|
|
@@ -14449,7 +14450,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14449
14450
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14450
14451
|
custom_domain_id: string;
|
|
14451
14452
|
primary: boolean;
|
|
14452
|
-
status: "
|
|
14453
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14453
14454
|
verification_method?: "txt" | undefined;
|
|
14454
14455
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14455
14456
|
domain_metadata?: {
|
|
@@ -15009,7 +15010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15009
15010
|
output: {
|
|
15010
15011
|
id: string;
|
|
15011
15012
|
trigger_id: string;
|
|
15012
|
-
status: "
|
|
15013
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
15013
15014
|
results: {
|
|
15014
15015
|
action_name: string;
|
|
15015
15016
|
error: {
|
|
@@ -15056,7 +15057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15056
15057
|
logs: {
|
|
15057
15058
|
action_name: string;
|
|
15058
15059
|
lines: {
|
|
15059
|
-
level: "error" | "log" | "
|
|
15060
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15060
15061
|
message: string;
|
|
15061
15062
|
}[];
|
|
15062
15063
|
}[];
|
|
@@ -15723,7 +15724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15723
15724
|
args: hono_utils_types.JSONValue[];
|
|
15724
15725
|
}[];
|
|
15725
15726
|
logs: {
|
|
15726
|
-
level: "error" | "log" | "
|
|
15727
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15727
15728
|
message: string;
|
|
15728
15729
|
}[];
|
|
15729
15730
|
error?: string | undefined;
|
|
@@ -16021,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16021
16022
|
scope?: string | undefined;
|
|
16022
16023
|
grant_types?: string[] | undefined;
|
|
16023
16024
|
response_types?: string[] | undefined;
|
|
16024
|
-
token_endpoint_auth_method?: "
|
|
16025
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16025
16026
|
jwks_uri?: string | undefined;
|
|
16026
16027
|
jwks?: Record<string, unknown> | undefined;
|
|
16027
16028
|
software_id?: string | undefined;
|
|
@@ -16110,7 +16111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16110
16111
|
scope?: string | undefined;
|
|
16111
16112
|
grant_types?: string[] | undefined;
|
|
16112
16113
|
response_types?: string[] | undefined;
|
|
16113
|
-
token_endpoint_auth_method?: "
|
|
16114
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16114
16115
|
jwks_uri?: string | undefined;
|
|
16115
16116
|
jwks?: Record<string, unknown> | undefined;
|
|
16116
16117
|
software_id?: string | undefined;
|
|
@@ -16456,6 +16457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16456
16457
|
email: string;
|
|
16457
16458
|
send: "code" | "link";
|
|
16458
16459
|
authParams: {
|
|
16460
|
+
audience?: string | undefined;
|
|
16459
16461
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16460
16462
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16461
16463
|
scope?: string | undefined;
|
|
@@ -16463,7 +16465,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16463
16465
|
state?: string | undefined;
|
|
16464
16466
|
act_as?: string | undefined;
|
|
16465
16467
|
redirect_uri?: string | undefined;
|
|
16466
|
-
audience?: string | undefined;
|
|
16467
16468
|
organization?: string | undefined;
|
|
16468
16469
|
nonce?: string | undefined;
|
|
16469
16470
|
prompt?: string | undefined;
|
|
@@ -16492,6 +16493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16492
16493
|
phone_number: string;
|
|
16493
16494
|
send: "code" | "link";
|
|
16494
16495
|
authParams: {
|
|
16496
|
+
audience?: string | undefined;
|
|
16495
16497
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16496
16498
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16497
16499
|
scope?: string | undefined;
|
|
@@ -16499,7 +16501,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16499
16501
|
state?: string | undefined;
|
|
16500
16502
|
act_as?: string | undefined;
|
|
16501
16503
|
redirect_uri?: string | undefined;
|
|
16502
|
-
audience?: string | undefined;
|
|
16503
16504
|
organization?: string | undefined;
|
|
16504
16505
|
nonce?: string | undefined;
|
|
16505
16506
|
prompt?: string | undefined;
|
|
@@ -16734,7 +16735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16734
16735
|
client_id: string;
|
|
16735
16736
|
username: string;
|
|
16736
16737
|
otp: string;
|
|
16737
|
-
realm: "
|
|
16738
|
+
realm: "sms" | "email";
|
|
16738
16739
|
};
|
|
16739
16740
|
} & {
|
|
16740
16741
|
json: {
|
|
@@ -16770,7 +16771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16770
16771
|
client_id: string;
|
|
16771
16772
|
username: string;
|
|
16772
16773
|
otp: string;
|
|
16773
|
-
realm: "
|
|
16774
|
+
realm: "sms" | "email";
|
|
16774
16775
|
};
|
|
16775
16776
|
};
|
|
16776
16777
|
output: {};
|
|
@@ -16811,7 +16812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16811
16812
|
client_id: string;
|
|
16812
16813
|
username: string;
|
|
16813
16814
|
otp: string;
|
|
16814
|
-
realm: "
|
|
16815
|
+
realm: "sms" | "email";
|
|
16815
16816
|
};
|
|
16816
16817
|
} & {
|
|
16817
16818
|
json: {
|
|
@@ -16847,7 +16848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16847
16848
|
client_id: string;
|
|
16848
16849
|
username: string;
|
|
16849
16850
|
otp: string;
|
|
16850
|
-
realm: "
|
|
16851
|
+
realm: "sms" | "email";
|
|
16851
16852
|
};
|
|
16852
16853
|
};
|
|
16853
16854
|
output: {
|
|
@@ -16896,7 +16897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16896
16897
|
client_id: string;
|
|
16897
16898
|
username: string;
|
|
16898
16899
|
otp: string;
|
|
16899
|
-
realm: "
|
|
16900
|
+
realm: "sms" | "email";
|
|
16900
16901
|
};
|
|
16901
16902
|
} & {
|
|
16902
16903
|
json: {
|
|
@@ -16932,7 +16933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16932
16933
|
client_id: string;
|
|
16933
16934
|
username: string;
|
|
16934
16935
|
otp: string;
|
|
16935
|
-
realm: "
|
|
16936
|
+
realm: "sms" | "email";
|
|
16936
16937
|
};
|
|
16937
16938
|
};
|
|
16938
16939
|
output: {
|
|
@@ -16976,7 +16977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16976
16977
|
client_id: string;
|
|
16977
16978
|
username: string;
|
|
16978
16979
|
otp: string;
|
|
16979
|
-
realm: "
|
|
16980
|
+
realm: "sms" | "email";
|
|
16980
16981
|
};
|
|
16981
16982
|
} & {
|
|
16982
16983
|
json: {
|
|
@@ -17012,7 +17013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17013
|
client_id: string;
|
|
17013
17014
|
username: string;
|
|
17014
17015
|
otp: string;
|
|
17015
|
-
realm: "
|
|
17016
|
+
realm: "sms" | "email";
|
|
17016
17017
|
};
|
|
17017
17018
|
};
|
|
17018
17019
|
output: {
|
|
@@ -17056,7 +17057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17056
17057
|
client_id: string;
|
|
17057
17058
|
username: string;
|
|
17058
17059
|
otp: string;
|
|
17059
|
-
realm: "
|
|
17060
|
+
realm: "sms" | "email";
|
|
17060
17061
|
};
|
|
17061
17062
|
} & {
|
|
17062
17063
|
json: {
|
|
@@ -17092,7 +17093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17092
17093
|
client_id: string;
|
|
17093
17094
|
username: string;
|
|
17094
17095
|
otp: string;
|
|
17095
|
-
realm: "
|
|
17096
|
+
realm: "sms" | "email";
|
|
17096
17097
|
};
|
|
17097
17098
|
};
|
|
17098
17099
|
output: {
|
|
@@ -17153,6 +17154,40 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17153
17154
|
grant_types_supported?: string[] | undefined;
|
|
17154
17155
|
claims_parameter_supported?: boolean | undefined;
|
|
17155
17156
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
17157
|
+
client_id_metadata_document_supported?: boolean | undefined;
|
|
17158
|
+
};
|
|
17159
|
+
outputFormat: "json";
|
|
17160
|
+
status: 200;
|
|
17161
|
+
};
|
|
17162
|
+
};
|
|
17163
|
+
} & {
|
|
17164
|
+
"/oauth-authorization-server": {
|
|
17165
|
+
$get: {
|
|
17166
|
+
input: {};
|
|
17167
|
+
output: {
|
|
17168
|
+
issuer: string;
|
|
17169
|
+
authorization_endpoint: string;
|
|
17170
|
+
token_endpoint: string;
|
|
17171
|
+
userinfo_endpoint: string;
|
|
17172
|
+
jwks_uri: string;
|
|
17173
|
+
revocation_endpoint: string;
|
|
17174
|
+
scopes_supported: string[];
|
|
17175
|
+
response_types_supported: string[];
|
|
17176
|
+
code_challenge_methods_supported: string[];
|
|
17177
|
+
response_modes_supported: string[];
|
|
17178
|
+
subject_types_supported: string[];
|
|
17179
|
+
id_token_signing_alg_values_supported: string[];
|
|
17180
|
+
token_endpoint_auth_methods_supported: string[];
|
|
17181
|
+
claims_supported: string[];
|
|
17182
|
+
request_uri_parameter_supported: boolean;
|
|
17183
|
+
request_parameter_supported: boolean;
|
|
17184
|
+
token_endpoint_auth_signing_alg_values_supported: string[];
|
|
17185
|
+
registration_endpoint?: string | undefined;
|
|
17186
|
+
end_session_endpoint?: string | undefined;
|
|
17187
|
+
grant_types_supported?: string[] | undefined;
|
|
17188
|
+
claims_parameter_supported?: boolean | undefined;
|
|
17189
|
+
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
17190
|
+
client_id_metadata_document_supported?: boolean | undefined;
|
|
17156
17191
|
};
|
|
17157
17192
|
outputFormat: "json";
|
|
17158
17193
|
status: 200;
|
|
@@ -17888,7 +17923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17888
17923
|
} & {
|
|
17889
17924
|
form: {
|
|
17890
17925
|
username: string;
|
|
17891
|
-
login_selection?: "
|
|
17926
|
+
login_selection?: "code" | "password" | undefined;
|
|
17892
17927
|
};
|
|
17893
17928
|
};
|
|
17894
17929
|
output: {};
|
|
@@ -17902,7 +17937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17902
17937
|
} & {
|
|
17903
17938
|
form: {
|
|
17904
17939
|
username: string;
|
|
17905
|
-
login_selection?: "
|
|
17940
|
+
login_selection?: "code" | "password" | undefined;
|
|
17906
17941
|
};
|
|
17907
17942
|
};
|
|
17908
17943
|
output: {};
|
|
@@ -18251,7 +18286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18251
18286
|
$get: {
|
|
18252
18287
|
input: {
|
|
18253
18288
|
param: {
|
|
18254
|
-
screen: "signup" | "
|
|
18289
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18255
18290
|
};
|
|
18256
18291
|
} & {
|
|
18257
18292
|
query: {
|
|
@@ -18267,7 +18302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18267
18302
|
} | {
|
|
18268
18303
|
input: {
|
|
18269
18304
|
param: {
|
|
18270
|
-
screen: "signup" | "
|
|
18305
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18271
18306
|
};
|
|
18272
18307
|
} & {
|
|
18273
18308
|
query: {
|
|
@@ -18283,7 +18318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18283
18318
|
} | {
|
|
18284
18319
|
input: {
|
|
18285
18320
|
param: {
|
|
18286
|
-
screen: "signup" | "
|
|
18321
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18287
18322
|
};
|
|
18288
18323
|
} & {
|
|
18289
18324
|
query: {
|
|
@@ -18303,7 +18338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18303
18338
|
$post: {
|
|
18304
18339
|
input: {
|
|
18305
18340
|
param: {
|
|
18306
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18341
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18307
18342
|
};
|
|
18308
18343
|
} & {
|
|
18309
18344
|
query: {
|
|
@@ -18321,7 +18356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18321
18356
|
} | {
|
|
18322
18357
|
input: {
|
|
18323
18358
|
param: {
|
|
18324
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18359
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18325
18360
|
};
|
|
18326
18361
|
} & {
|
|
18327
18362
|
query: {
|
|
@@ -18339,7 +18374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18339
18374
|
} | {
|
|
18340
18375
|
input: {
|
|
18341
18376
|
param: {
|
|
18342
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18377
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
18343
18378
|
};
|
|
18344
18379
|
} & {
|
|
18345
18380
|
query: {
|