authhero 8.5.0 → 8.7.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-5f7b7943.entry.js → p-5a319adc.entry.js} +1 -1
- package/dist/authhero.cjs +257 -147
- package/dist/authhero.d.ts +412 -266
- package/dist/authhero.mjs +43118 -42718
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/index.d.ts +380 -266
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding-preview.d.ts +41 -0
- package/dist/types/routes/management-api/branding.d.ts +123 -9
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +336 -222
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/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/routes/universal-login/u2-widget-page.d.ts +33 -4
- package/dist/types/routes/universal-login/universal-login-template.d.ts +65 -13
- package/dist/types/types/AuthHeroConfig.d.ts +33 -1
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
86
86
|
};
|
|
87
87
|
} & {
|
|
88
88
|
json: {
|
|
89
|
-
type: "
|
|
89
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
90
90
|
phone_number?: string | undefined;
|
|
91
91
|
totp_secret?: string | undefined;
|
|
92
92
|
credential_id?: string | undefined;
|
|
@@ -226,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
226
226
|
};
|
|
227
227
|
};
|
|
228
228
|
output: {
|
|
229
|
-
name: "
|
|
229
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
230
230
|
enabled: boolean;
|
|
231
231
|
trial_expired?: boolean | undefined;
|
|
232
232
|
}[];
|
|
@@ -381,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
381
381
|
$get: {
|
|
382
382
|
input: {
|
|
383
383
|
param: {
|
|
384
|
-
factor_name: "
|
|
384
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
385
385
|
};
|
|
386
386
|
} & {
|
|
387
387
|
header: {
|
|
@@ -389,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
output: {
|
|
392
|
-
name: "
|
|
392
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
393
393
|
enabled: boolean;
|
|
394
394
|
trial_expired?: boolean | undefined;
|
|
395
395
|
};
|
|
@@ -402,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
402
402
|
$put: {
|
|
403
403
|
input: {
|
|
404
404
|
param: {
|
|
405
|
-
factor_name: "
|
|
405
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
406
406
|
};
|
|
407
407
|
} & {
|
|
408
408
|
header: {
|
|
@@ -414,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
414
414
|
};
|
|
415
415
|
};
|
|
416
416
|
output: {
|
|
417
|
-
name: "
|
|
417
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
418
418
|
enabled: boolean;
|
|
419
419
|
trial_expired?: boolean | undefined;
|
|
420
420
|
};
|
|
@@ -1160,11 +1160,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1160
1160
|
email?: string | undefined;
|
|
1161
1161
|
};
|
|
1162
1162
|
id?: string | undefined;
|
|
1163
|
-
connection_id?: string | undefined;
|
|
1164
1163
|
app_metadata?: Record<string, any> | undefined;
|
|
1165
1164
|
user_metadata?: Record<string, any> | undefined;
|
|
1166
|
-
|
|
1165
|
+
connection_id?: string | undefined;
|
|
1167
1166
|
roles?: string[] | undefined;
|
|
1167
|
+
ttl_sec?: number | undefined;
|
|
1168
1168
|
send_invitation_email?: boolean | undefined;
|
|
1169
1169
|
};
|
|
1170
1170
|
};
|
|
@@ -1347,8 +1347,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1347
1347
|
};
|
|
1348
1348
|
} & {
|
|
1349
1349
|
json: {
|
|
1350
|
-
show_as_button?: boolean | undefined;
|
|
1351
1350
|
assign_membership_on_login?: boolean | undefined;
|
|
1351
|
+
show_as_button?: boolean | undefined;
|
|
1352
1352
|
is_signup_enabled?: boolean | undefined;
|
|
1353
1353
|
};
|
|
1354
1354
|
};
|
|
@@ -2014,7 +2014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2014
2014
|
type: "REDIRECT";
|
|
2015
2015
|
action: "REDIRECT_USER";
|
|
2016
2016
|
params: {
|
|
2017
|
-
target: "custom" | "
|
|
2017
|
+
target: "custom" | "change-email" | "account";
|
|
2018
2018
|
custom_url?: string | undefined;
|
|
2019
2019
|
};
|
|
2020
2020
|
alias?: string | undefined;
|
|
@@ -2067,7 +2067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2067
2067
|
type: "REDIRECT";
|
|
2068
2068
|
action: "REDIRECT_USER";
|
|
2069
2069
|
params: {
|
|
2070
|
-
target: "custom" | "
|
|
2070
|
+
target: "custom" | "change-email" | "account";
|
|
2071
2071
|
custom_url?: string | undefined;
|
|
2072
2072
|
};
|
|
2073
2073
|
alias?: string | undefined;
|
|
@@ -2135,7 +2135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2135
2135
|
type: "REDIRECT";
|
|
2136
2136
|
action: "REDIRECT_USER";
|
|
2137
2137
|
params: {
|
|
2138
|
-
target: "custom" | "
|
|
2138
|
+
target: "custom" | "change-email" | "account";
|
|
2139
2139
|
custom_url?: string | undefined;
|
|
2140
2140
|
};
|
|
2141
2141
|
alias?: string | undefined;
|
|
@@ -2216,7 +2216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2216
2216
|
type: "REDIRECT";
|
|
2217
2217
|
action: "REDIRECT_USER";
|
|
2218
2218
|
params: {
|
|
2219
|
-
target: "custom" | "
|
|
2219
|
+
target: "custom" | "change-email" | "account";
|
|
2220
2220
|
custom_url?: string | undefined;
|
|
2221
2221
|
};
|
|
2222
2222
|
alias?: string | undefined;
|
|
@@ -2264,7 +2264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2264
2264
|
type: "REDIRECT";
|
|
2265
2265
|
action: "REDIRECT_USER";
|
|
2266
2266
|
params: {
|
|
2267
|
-
target: "custom" | "
|
|
2267
|
+
target: "custom" | "change-email" | "account";
|
|
2268
2268
|
custom_url?: string | undefined;
|
|
2269
2269
|
};
|
|
2270
2270
|
alias?: string | undefined;
|
|
@@ -2324,7 +2324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2324
2324
|
type: "REDIRECT";
|
|
2325
2325
|
action: "REDIRECT_USER";
|
|
2326
2326
|
params: {
|
|
2327
|
-
target: "custom" | "
|
|
2327
|
+
target: "custom" | "change-email" | "account";
|
|
2328
2328
|
custom_url?: string | undefined;
|
|
2329
2329
|
};
|
|
2330
2330
|
alias?: string | undefined;
|
|
@@ -2372,7 +2372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2372
2372
|
type: "REDIRECT";
|
|
2373
2373
|
action: "REDIRECT_USER";
|
|
2374
2374
|
params: {
|
|
2375
|
-
target: "custom" | "
|
|
2375
|
+
target: "custom" | "change-email" | "account";
|
|
2376
2376
|
custom_url?: string | undefined;
|
|
2377
2377
|
};
|
|
2378
2378
|
alias?: string | undefined;
|
|
@@ -2590,7 +2590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2590
2590
|
hint?: string | undefined;
|
|
2591
2591
|
messages?: {
|
|
2592
2592
|
text: string;
|
|
2593
|
-
type: "
|
|
2593
|
+
type: "error" | "success" | "info" | "warning";
|
|
2594
2594
|
id?: number | undefined;
|
|
2595
2595
|
}[] | undefined;
|
|
2596
2596
|
required?: boolean | undefined;
|
|
@@ -2608,7 +2608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2608
2608
|
hint?: string | undefined;
|
|
2609
2609
|
messages?: {
|
|
2610
2610
|
text: string;
|
|
2611
|
-
type: "
|
|
2611
|
+
type: "error" | "success" | "info" | "warning";
|
|
2612
2612
|
id?: number | undefined;
|
|
2613
2613
|
}[] | undefined;
|
|
2614
2614
|
required?: boolean | undefined;
|
|
@@ -2632,7 +2632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2632
2632
|
hint?: string | undefined;
|
|
2633
2633
|
messages?: {
|
|
2634
2634
|
text: string;
|
|
2635
|
-
type: "
|
|
2635
|
+
type: "error" | "success" | "info" | "warning";
|
|
2636
2636
|
id?: number | undefined;
|
|
2637
2637
|
}[] | undefined;
|
|
2638
2638
|
required?: boolean | undefined;
|
|
@@ -2656,7 +2656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2656
2656
|
hint?: string | undefined;
|
|
2657
2657
|
messages?: {
|
|
2658
2658
|
text: string;
|
|
2659
|
-
type: "
|
|
2659
|
+
type: "error" | "success" | "info" | "warning";
|
|
2660
2660
|
id?: number | undefined;
|
|
2661
2661
|
}[] | undefined;
|
|
2662
2662
|
required?: boolean | undefined;
|
|
@@ -2685,7 +2685,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2685
2685
|
hint?: string | undefined;
|
|
2686
2686
|
messages?: {
|
|
2687
2687
|
text: string;
|
|
2688
|
-
type: "
|
|
2688
|
+
type: "error" | "success" | "info" | "warning";
|
|
2689
2689
|
id?: number | undefined;
|
|
2690
2690
|
}[] | undefined;
|
|
2691
2691
|
required?: boolean | undefined;
|
|
@@ -2700,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2700
2700
|
hint?: string | undefined;
|
|
2701
2701
|
messages?: {
|
|
2702
2702
|
text: string;
|
|
2703
|
-
type: "
|
|
2703
|
+
type: "error" | "success" | "info" | "warning";
|
|
2704
2704
|
id?: number | undefined;
|
|
2705
2705
|
}[] | undefined;
|
|
2706
2706
|
required?: boolean | undefined;
|
|
@@ -2721,7 +2721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2721
2721
|
hint?: string | undefined;
|
|
2722
2722
|
messages?: {
|
|
2723
2723
|
text: string;
|
|
2724
|
-
type: "
|
|
2724
|
+
type: "error" | "success" | "info" | "warning";
|
|
2725
2725
|
id?: number | undefined;
|
|
2726
2726
|
}[] | undefined;
|
|
2727
2727
|
required?: boolean | undefined;
|
|
@@ -2746,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2746
2746
|
hint?: string | undefined;
|
|
2747
2747
|
messages?: {
|
|
2748
2748
|
text: string;
|
|
2749
|
-
type: "
|
|
2749
|
+
type: "error" | "success" | "info" | "warning";
|
|
2750
2750
|
id?: number | undefined;
|
|
2751
2751
|
}[] | undefined;
|
|
2752
2752
|
required?: boolean | undefined;
|
|
@@ -2765,7 +2765,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2765
2765
|
hint?: string | undefined;
|
|
2766
2766
|
messages?: {
|
|
2767
2767
|
text: string;
|
|
2768
|
-
type: "
|
|
2768
|
+
type: "error" | "success" | "info" | "warning";
|
|
2769
2769
|
id?: number | undefined;
|
|
2770
2770
|
}[] | undefined;
|
|
2771
2771
|
required?: boolean | undefined;
|
|
@@ -2785,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2785
2785
|
hint?: string | undefined;
|
|
2786
2786
|
messages?: {
|
|
2787
2787
|
text: string;
|
|
2788
|
-
type: "
|
|
2788
|
+
type: "error" | "success" | "info" | "warning";
|
|
2789
2789
|
id?: number | undefined;
|
|
2790
2790
|
}[] | undefined;
|
|
2791
2791
|
required?: boolean | undefined;
|
|
@@ -2804,7 +2804,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2804
2804
|
hint?: string | undefined;
|
|
2805
2805
|
messages?: {
|
|
2806
2806
|
text: string;
|
|
2807
|
-
type: "
|
|
2807
|
+
type: "error" | "success" | "info" | "warning";
|
|
2808
2808
|
id?: number | undefined;
|
|
2809
2809
|
}[] | undefined;
|
|
2810
2810
|
required?: boolean | undefined;
|
|
@@ -2826,7 +2826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2826
2826
|
hint?: string | undefined;
|
|
2827
2827
|
messages?: {
|
|
2828
2828
|
text: string;
|
|
2829
|
-
type: "
|
|
2829
|
+
type: "error" | "success" | "info" | "warning";
|
|
2830
2830
|
id?: number | undefined;
|
|
2831
2831
|
}[] | undefined;
|
|
2832
2832
|
required?: boolean | undefined;
|
|
@@ -2848,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2848
2848
|
hint?: string | undefined;
|
|
2849
2849
|
messages?: {
|
|
2850
2850
|
text: string;
|
|
2851
|
-
type: "
|
|
2851
|
+
type: "error" | "success" | "info" | "warning";
|
|
2852
2852
|
id?: number | undefined;
|
|
2853
2853
|
}[] | undefined;
|
|
2854
2854
|
required?: boolean | undefined;
|
|
@@ -2867,7 +2867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2867
2867
|
hint?: string | undefined;
|
|
2868
2868
|
messages?: {
|
|
2869
2869
|
text: string;
|
|
2870
|
-
type: "
|
|
2870
|
+
type: "error" | "success" | "info" | "warning";
|
|
2871
2871
|
id?: number | undefined;
|
|
2872
2872
|
}[] | undefined;
|
|
2873
2873
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2892
|
hint?: string | undefined;
|
|
2893
2893
|
messages?: {
|
|
2894
2894
|
text: string;
|
|
2895
|
-
type: "
|
|
2895
|
+
type: "error" | "success" | "info" | "warning";
|
|
2896
2896
|
id?: number | undefined;
|
|
2897
2897
|
}[] | undefined;
|
|
2898
2898
|
required?: boolean | undefined;
|
|
@@ -2913,7 +2913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2913
2913
|
hint?: string | undefined;
|
|
2914
2914
|
messages?: {
|
|
2915
2915
|
text: string;
|
|
2916
|
-
type: "
|
|
2916
|
+
type: "error" | "success" | "info" | "warning";
|
|
2917
2917
|
id?: number | undefined;
|
|
2918
2918
|
}[] | undefined;
|
|
2919
2919
|
required?: boolean | undefined;
|
|
@@ -2934,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2934
2934
|
hint?: string | undefined;
|
|
2935
2935
|
messages?: {
|
|
2936
2936
|
text: string;
|
|
2937
|
-
type: "
|
|
2937
|
+
type: "error" | "success" | "info" | "warning";
|
|
2938
2938
|
id?: number | undefined;
|
|
2939
2939
|
}[] | undefined;
|
|
2940
2940
|
required?: boolean | undefined;
|
|
@@ -3167,7 +3167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3167
3167
|
hint?: string | undefined;
|
|
3168
3168
|
messages?: {
|
|
3169
3169
|
text: string;
|
|
3170
|
-
type: "
|
|
3170
|
+
type: "error" | "success" | "info" | "warning";
|
|
3171
3171
|
id?: number | undefined;
|
|
3172
3172
|
}[] | undefined;
|
|
3173
3173
|
required?: boolean | undefined;
|
|
@@ -3185,7 +3185,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3185
3185
|
hint?: string | undefined;
|
|
3186
3186
|
messages?: {
|
|
3187
3187
|
text: string;
|
|
3188
|
-
type: "
|
|
3188
|
+
type: "error" | "success" | "info" | "warning";
|
|
3189
3189
|
id?: number | undefined;
|
|
3190
3190
|
}[] | undefined;
|
|
3191
3191
|
required?: boolean | undefined;
|
|
@@ -3209,7 +3209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3209
3209
|
hint?: string | undefined;
|
|
3210
3210
|
messages?: {
|
|
3211
3211
|
text: string;
|
|
3212
|
-
type: "
|
|
3212
|
+
type: "error" | "success" | "info" | "warning";
|
|
3213
3213
|
id?: number | undefined;
|
|
3214
3214
|
}[] | undefined;
|
|
3215
3215
|
required?: boolean | undefined;
|
|
@@ -3233,7 +3233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3233
3233
|
hint?: string | undefined;
|
|
3234
3234
|
messages?: {
|
|
3235
3235
|
text: string;
|
|
3236
|
-
type: "
|
|
3236
|
+
type: "error" | "success" | "info" | "warning";
|
|
3237
3237
|
id?: number | undefined;
|
|
3238
3238
|
}[] | undefined;
|
|
3239
3239
|
required?: boolean | undefined;
|
|
@@ -3262,7 +3262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3262
3262
|
hint?: string | undefined;
|
|
3263
3263
|
messages?: {
|
|
3264
3264
|
text: string;
|
|
3265
|
-
type: "
|
|
3265
|
+
type: "error" | "success" | "info" | "warning";
|
|
3266
3266
|
id?: number | undefined;
|
|
3267
3267
|
}[] | undefined;
|
|
3268
3268
|
required?: boolean | undefined;
|
|
@@ -3277,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3277
3277
|
hint?: string | undefined;
|
|
3278
3278
|
messages?: {
|
|
3279
3279
|
text: string;
|
|
3280
|
-
type: "
|
|
3280
|
+
type: "error" | "success" | "info" | "warning";
|
|
3281
3281
|
id?: number | undefined;
|
|
3282
3282
|
}[] | undefined;
|
|
3283
3283
|
required?: boolean | undefined;
|
|
@@ -3298,7 +3298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3298
3298
|
hint?: string | undefined;
|
|
3299
3299
|
messages?: {
|
|
3300
3300
|
text: string;
|
|
3301
|
-
type: "
|
|
3301
|
+
type: "error" | "success" | "info" | "warning";
|
|
3302
3302
|
id?: number | undefined;
|
|
3303
3303
|
}[] | undefined;
|
|
3304
3304
|
required?: boolean | undefined;
|
|
@@ -3323,7 +3323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3323
3323
|
hint?: string | undefined;
|
|
3324
3324
|
messages?: {
|
|
3325
3325
|
text: string;
|
|
3326
|
-
type: "
|
|
3326
|
+
type: "error" | "success" | "info" | "warning";
|
|
3327
3327
|
id?: number | undefined;
|
|
3328
3328
|
}[] | undefined;
|
|
3329
3329
|
required?: boolean | undefined;
|
|
@@ -3342,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3342
3342
|
hint?: string | undefined;
|
|
3343
3343
|
messages?: {
|
|
3344
3344
|
text: string;
|
|
3345
|
-
type: "
|
|
3345
|
+
type: "error" | "success" | "info" | "warning";
|
|
3346
3346
|
id?: number | undefined;
|
|
3347
3347
|
}[] | undefined;
|
|
3348
3348
|
required?: boolean | undefined;
|
|
@@ -3362,7 +3362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3362
3362
|
hint?: string | undefined;
|
|
3363
3363
|
messages?: {
|
|
3364
3364
|
text: string;
|
|
3365
|
-
type: "
|
|
3365
|
+
type: "error" | "success" | "info" | "warning";
|
|
3366
3366
|
id?: number | undefined;
|
|
3367
3367
|
}[] | undefined;
|
|
3368
3368
|
required?: boolean | undefined;
|
|
@@ -3381,7 +3381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3381
3381
|
hint?: string | undefined;
|
|
3382
3382
|
messages?: {
|
|
3383
3383
|
text: string;
|
|
3384
|
-
type: "
|
|
3384
|
+
type: "error" | "success" | "info" | "warning";
|
|
3385
3385
|
id?: number | undefined;
|
|
3386
3386
|
}[] | undefined;
|
|
3387
3387
|
required?: boolean | undefined;
|
|
@@ -3403,7 +3403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3403
3403
|
hint?: string | undefined;
|
|
3404
3404
|
messages?: {
|
|
3405
3405
|
text: string;
|
|
3406
|
-
type: "
|
|
3406
|
+
type: "error" | "success" | "info" | "warning";
|
|
3407
3407
|
id?: number | undefined;
|
|
3408
3408
|
}[] | undefined;
|
|
3409
3409
|
required?: boolean | undefined;
|
|
@@ -3425,7 +3425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3425
3425
|
hint?: string | undefined;
|
|
3426
3426
|
messages?: {
|
|
3427
3427
|
text: string;
|
|
3428
|
-
type: "
|
|
3428
|
+
type: "error" | "success" | "info" | "warning";
|
|
3429
3429
|
id?: number | undefined;
|
|
3430
3430
|
}[] | undefined;
|
|
3431
3431
|
required?: boolean | undefined;
|
|
@@ -3444,7 +3444,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3444
3444
|
hint?: string | undefined;
|
|
3445
3445
|
messages?: {
|
|
3446
3446
|
text: string;
|
|
3447
|
-
type: "
|
|
3447
|
+
type: "error" | "success" | "info" | "warning";
|
|
3448
3448
|
id?: number | undefined;
|
|
3449
3449
|
}[] | undefined;
|
|
3450
3450
|
required?: boolean | undefined;
|
|
@@ -3469,7 +3469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3469
3469
|
hint?: string | undefined;
|
|
3470
3470
|
messages?: {
|
|
3471
3471
|
text: string;
|
|
3472
|
-
type: "
|
|
3472
|
+
type: "error" | "success" | "info" | "warning";
|
|
3473
3473
|
id?: number | undefined;
|
|
3474
3474
|
}[] | undefined;
|
|
3475
3475
|
required?: boolean | undefined;
|
|
@@ -3490,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3490
3490
|
hint?: string | undefined;
|
|
3491
3491
|
messages?: {
|
|
3492
3492
|
text: string;
|
|
3493
|
-
type: "
|
|
3493
|
+
type: "error" | "success" | "info" | "warning";
|
|
3494
3494
|
id?: number | undefined;
|
|
3495
3495
|
}[] | undefined;
|
|
3496
3496
|
required?: boolean | undefined;
|
|
@@ -3511,7 +3511,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3511
3511
|
hint?: string | undefined;
|
|
3512
3512
|
messages?: {
|
|
3513
3513
|
text: string;
|
|
3514
|
-
type: "
|
|
3514
|
+
type: "error" | "success" | "info" | "warning";
|
|
3515
3515
|
id?: number | undefined;
|
|
3516
3516
|
}[] | undefined;
|
|
3517
3517
|
required?: boolean | undefined;
|
|
@@ -3759,7 +3759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3759
3759
|
hint?: string | undefined;
|
|
3760
3760
|
messages?: {
|
|
3761
3761
|
text: string;
|
|
3762
|
-
type: "
|
|
3762
|
+
type: "error" | "success" | "info" | "warning";
|
|
3763
3763
|
id?: number | undefined;
|
|
3764
3764
|
}[] | undefined;
|
|
3765
3765
|
required?: boolean | undefined;
|
|
@@ -3777,7 +3777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3777
3777
|
hint?: string | undefined;
|
|
3778
3778
|
messages?: {
|
|
3779
3779
|
text: string;
|
|
3780
|
-
type: "
|
|
3780
|
+
type: "error" | "success" | "info" | "warning";
|
|
3781
3781
|
id?: number | undefined;
|
|
3782
3782
|
}[] | undefined;
|
|
3783
3783
|
required?: boolean | undefined;
|
|
@@ -3801,7 +3801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3801
3801
|
hint?: string | undefined;
|
|
3802
3802
|
messages?: {
|
|
3803
3803
|
text: string;
|
|
3804
|
-
type: "
|
|
3804
|
+
type: "error" | "success" | "info" | "warning";
|
|
3805
3805
|
id?: number | undefined;
|
|
3806
3806
|
}[] | undefined;
|
|
3807
3807
|
required?: boolean | undefined;
|
|
@@ -3825,7 +3825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3825
3825
|
hint?: string | undefined;
|
|
3826
3826
|
messages?: {
|
|
3827
3827
|
text: string;
|
|
3828
|
-
type: "
|
|
3828
|
+
type: "error" | "success" | "info" | "warning";
|
|
3829
3829
|
id?: number | undefined;
|
|
3830
3830
|
}[] | undefined;
|
|
3831
3831
|
required?: boolean | undefined;
|
|
@@ -3854,7 +3854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3854
3854
|
hint?: string | undefined;
|
|
3855
3855
|
messages?: {
|
|
3856
3856
|
text: string;
|
|
3857
|
-
type: "
|
|
3857
|
+
type: "error" | "success" | "info" | "warning";
|
|
3858
3858
|
id?: number | undefined;
|
|
3859
3859
|
}[] | undefined;
|
|
3860
3860
|
required?: boolean | undefined;
|
|
@@ -3869,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3869
3869
|
hint?: string | undefined;
|
|
3870
3870
|
messages?: {
|
|
3871
3871
|
text: string;
|
|
3872
|
-
type: "
|
|
3872
|
+
type: "error" | "success" | "info" | "warning";
|
|
3873
3873
|
id?: number | undefined;
|
|
3874
3874
|
}[] | undefined;
|
|
3875
3875
|
required?: boolean | undefined;
|
|
@@ -3890,7 +3890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3890
3890
|
hint?: string | undefined;
|
|
3891
3891
|
messages?: {
|
|
3892
3892
|
text: string;
|
|
3893
|
-
type: "
|
|
3893
|
+
type: "error" | "success" | "info" | "warning";
|
|
3894
3894
|
id?: number | undefined;
|
|
3895
3895
|
}[] | undefined;
|
|
3896
3896
|
required?: boolean | undefined;
|
|
@@ -3915,7 +3915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3915
3915
|
hint?: string | undefined;
|
|
3916
3916
|
messages?: {
|
|
3917
3917
|
text: string;
|
|
3918
|
-
type: "
|
|
3918
|
+
type: "error" | "success" | "info" | "warning";
|
|
3919
3919
|
id?: number | undefined;
|
|
3920
3920
|
}[] | undefined;
|
|
3921
3921
|
required?: boolean | undefined;
|
|
@@ -3934,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3934
3934
|
hint?: string | undefined;
|
|
3935
3935
|
messages?: {
|
|
3936
3936
|
text: string;
|
|
3937
|
-
type: "
|
|
3937
|
+
type: "error" | "success" | "info" | "warning";
|
|
3938
3938
|
id?: number | undefined;
|
|
3939
3939
|
}[] | undefined;
|
|
3940
3940
|
required?: boolean | undefined;
|
|
@@ -3954,7 +3954,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3954
3954
|
hint?: string | undefined;
|
|
3955
3955
|
messages?: {
|
|
3956
3956
|
text: string;
|
|
3957
|
-
type: "
|
|
3957
|
+
type: "error" | "success" | "info" | "warning";
|
|
3958
3958
|
id?: number | undefined;
|
|
3959
3959
|
}[] | undefined;
|
|
3960
3960
|
required?: boolean | undefined;
|
|
@@ -3973,7 +3973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3973
3973
|
hint?: string | undefined;
|
|
3974
3974
|
messages?: {
|
|
3975
3975
|
text: string;
|
|
3976
|
-
type: "
|
|
3976
|
+
type: "error" | "success" | "info" | "warning";
|
|
3977
3977
|
id?: number | undefined;
|
|
3978
3978
|
}[] | undefined;
|
|
3979
3979
|
required?: boolean | undefined;
|
|
@@ -3995,7 +3995,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3995
3995
|
hint?: string | undefined;
|
|
3996
3996
|
messages?: {
|
|
3997
3997
|
text: string;
|
|
3998
|
-
type: "
|
|
3998
|
+
type: "error" | "success" | "info" | "warning";
|
|
3999
3999
|
id?: number | undefined;
|
|
4000
4000
|
}[] | undefined;
|
|
4001
4001
|
required?: boolean | undefined;
|
|
@@ -4017,7 +4017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4017
4017
|
hint?: string | undefined;
|
|
4018
4018
|
messages?: {
|
|
4019
4019
|
text: string;
|
|
4020
|
-
type: "
|
|
4020
|
+
type: "error" | "success" | "info" | "warning";
|
|
4021
4021
|
id?: number | undefined;
|
|
4022
4022
|
}[] | undefined;
|
|
4023
4023
|
required?: boolean | undefined;
|
|
@@ -4036,7 +4036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4036
4036
|
hint?: string | undefined;
|
|
4037
4037
|
messages?: {
|
|
4038
4038
|
text: string;
|
|
4039
|
-
type: "
|
|
4039
|
+
type: "error" | "success" | "info" | "warning";
|
|
4040
4040
|
id?: number | undefined;
|
|
4041
4041
|
}[] | undefined;
|
|
4042
4042
|
required?: boolean | undefined;
|
|
@@ -4061,7 +4061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4061
4061
|
hint?: string | undefined;
|
|
4062
4062
|
messages?: {
|
|
4063
4063
|
text: string;
|
|
4064
|
-
type: "
|
|
4064
|
+
type: "error" | "success" | "info" | "warning";
|
|
4065
4065
|
id?: number | undefined;
|
|
4066
4066
|
}[] | undefined;
|
|
4067
4067
|
required?: boolean | undefined;
|
|
@@ -4082,7 +4082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4082
4082
|
hint?: string | undefined;
|
|
4083
4083
|
messages?: {
|
|
4084
4084
|
text: string;
|
|
4085
|
-
type: "
|
|
4085
|
+
type: "error" | "success" | "info" | "warning";
|
|
4086
4086
|
id?: number | undefined;
|
|
4087
4087
|
}[] | undefined;
|
|
4088
4088
|
required?: boolean | undefined;
|
|
@@ -4103,7 +4103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4103
4103
|
hint?: string | undefined;
|
|
4104
4104
|
messages?: {
|
|
4105
4105
|
text: string;
|
|
4106
|
-
type: "
|
|
4106
|
+
type: "error" | "success" | "info" | "warning";
|
|
4107
4107
|
id?: number | undefined;
|
|
4108
4108
|
}[] | undefined;
|
|
4109
4109
|
required?: boolean | undefined;
|
|
@@ -4357,7 +4357,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4357
4357
|
hint?: string | undefined;
|
|
4358
4358
|
messages?: {
|
|
4359
4359
|
text: string;
|
|
4360
|
-
type: "
|
|
4360
|
+
type: "error" | "success" | "info" | "warning";
|
|
4361
4361
|
id?: number | undefined;
|
|
4362
4362
|
}[] | undefined;
|
|
4363
4363
|
required?: boolean | undefined;
|
|
@@ -4375,7 +4375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4375
4375
|
hint?: string | undefined;
|
|
4376
4376
|
messages?: {
|
|
4377
4377
|
text: string;
|
|
4378
|
-
type: "
|
|
4378
|
+
type: "error" | "success" | "info" | "warning";
|
|
4379
4379
|
id?: number | undefined;
|
|
4380
4380
|
}[] | undefined;
|
|
4381
4381
|
required?: boolean | undefined;
|
|
@@ -4399,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4399
4399
|
hint?: string | undefined;
|
|
4400
4400
|
messages?: {
|
|
4401
4401
|
text: string;
|
|
4402
|
-
type: "
|
|
4402
|
+
type: "error" | "success" | "info" | "warning";
|
|
4403
4403
|
id?: number | undefined;
|
|
4404
4404
|
}[] | undefined;
|
|
4405
4405
|
required?: boolean | undefined;
|
|
@@ -4423,7 +4423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4423
4423
|
hint?: string | undefined;
|
|
4424
4424
|
messages?: {
|
|
4425
4425
|
text: string;
|
|
4426
|
-
type: "
|
|
4426
|
+
type: "error" | "success" | "info" | "warning";
|
|
4427
4427
|
id?: number | undefined;
|
|
4428
4428
|
}[] | undefined;
|
|
4429
4429
|
required?: boolean | undefined;
|
|
@@ -4448,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4448
4448
|
hint?: string | undefined;
|
|
4449
4449
|
messages?: {
|
|
4450
4450
|
text: string;
|
|
4451
|
-
type: "
|
|
4451
|
+
type: "error" | "success" | "info" | "warning";
|
|
4452
4452
|
id?: number | undefined;
|
|
4453
4453
|
}[] | undefined;
|
|
4454
4454
|
required?: boolean | undefined;
|
|
@@ -4463,7 +4463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4463
4463
|
hint?: string | undefined;
|
|
4464
4464
|
messages?: {
|
|
4465
4465
|
text: string;
|
|
4466
|
-
type: "
|
|
4466
|
+
type: "error" | "success" | "info" | "warning";
|
|
4467
4467
|
id?: number | undefined;
|
|
4468
4468
|
}[] | undefined;
|
|
4469
4469
|
required?: boolean | undefined;
|
|
@@ -4484,7 +4484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4484
4484
|
hint?: string | undefined;
|
|
4485
4485
|
messages?: {
|
|
4486
4486
|
text: string;
|
|
4487
|
-
type: "
|
|
4487
|
+
type: "error" | "success" | "info" | "warning";
|
|
4488
4488
|
id?: number | undefined;
|
|
4489
4489
|
}[] | undefined;
|
|
4490
4490
|
required?: boolean | undefined;
|
|
@@ -4509,7 +4509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4509
4509
|
hint?: string | undefined;
|
|
4510
4510
|
messages?: {
|
|
4511
4511
|
text: string;
|
|
4512
|
-
type: "
|
|
4512
|
+
type: "error" | "success" | "info" | "warning";
|
|
4513
4513
|
id?: number | undefined;
|
|
4514
4514
|
}[] | undefined;
|
|
4515
4515
|
required?: boolean | undefined;
|
|
@@ -4528,7 +4528,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4528
4528
|
hint?: string | undefined;
|
|
4529
4529
|
messages?: {
|
|
4530
4530
|
text: string;
|
|
4531
|
-
type: "
|
|
4531
|
+
type: "error" | "success" | "info" | "warning";
|
|
4532
4532
|
id?: number | undefined;
|
|
4533
4533
|
}[] | undefined;
|
|
4534
4534
|
required?: boolean | undefined;
|
|
@@ -4548,7 +4548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4548
4548
|
hint?: string | undefined;
|
|
4549
4549
|
messages?: {
|
|
4550
4550
|
text: string;
|
|
4551
|
-
type: "
|
|
4551
|
+
type: "error" | "success" | "info" | "warning";
|
|
4552
4552
|
id?: number | undefined;
|
|
4553
4553
|
}[] | undefined;
|
|
4554
4554
|
required?: boolean | undefined;
|
|
@@ -4567,7 +4567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4567
4567
|
hint?: string | undefined;
|
|
4568
4568
|
messages?: {
|
|
4569
4569
|
text: string;
|
|
4570
|
-
type: "
|
|
4570
|
+
type: "error" | "success" | "info" | "warning";
|
|
4571
4571
|
id?: number | undefined;
|
|
4572
4572
|
}[] | undefined;
|
|
4573
4573
|
required?: boolean | undefined;
|
|
@@ -4589,7 +4589,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4589
4589
|
hint?: string | undefined;
|
|
4590
4590
|
messages?: {
|
|
4591
4591
|
text: string;
|
|
4592
|
-
type: "
|
|
4592
|
+
type: "error" | "success" | "info" | "warning";
|
|
4593
4593
|
id?: number | undefined;
|
|
4594
4594
|
}[] | undefined;
|
|
4595
4595
|
required?: boolean | undefined;
|
|
@@ -4611,7 +4611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4611
4611
|
hint?: string | undefined;
|
|
4612
4612
|
messages?: {
|
|
4613
4613
|
text: string;
|
|
4614
|
-
type: "
|
|
4614
|
+
type: "error" | "success" | "info" | "warning";
|
|
4615
4615
|
id?: number | undefined;
|
|
4616
4616
|
}[] | undefined;
|
|
4617
4617
|
required?: boolean | undefined;
|
|
@@ -4630,7 +4630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4630
4630
|
hint?: string | undefined;
|
|
4631
4631
|
messages?: {
|
|
4632
4632
|
text: string;
|
|
4633
|
-
type: "
|
|
4633
|
+
type: "error" | "success" | "info" | "warning";
|
|
4634
4634
|
id?: number | undefined;
|
|
4635
4635
|
}[] | undefined;
|
|
4636
4636
|
required?: boolean | undefined;
|
|
@@ -4655,7 +4655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4655
4655
|
hint?: string | undefined;
|
|
4656
4656
|
messages?: {
|
|
4657
4657
|
text: string;
|
|
4658
|
-
type: "
|
|
4658
|
+
type: "error" | "success" | "info" | "warning";
|
|
4659
4659
|
id?: number | undefined;
|
|
4660
4660
|
}[] | undefined;
|
|
4661
4661
|
required?: boolean | undefined;
|
|
@@ -4676,7 +4676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4676
4676
|
hint?: string | undefined;
|
|
4677
4677
|
messages?: {
|
|
4678
4678
|
text: string;
|
|
4679
|
-
type: "
|
|
4679
|
+
type: "error" | "success" | "info" | "warning";
|
|
4680
4680
|
id?: number | undefined;
|
|
4681
4681
|
}[] | undefined;
|
|
4682
4682
|
required?: boolean | undefined;
|
|
@@ -4697,7 +4697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4697
4697
|
hint?: string | undefined;
|
|
4698
4698
|
messages?: {
|
|
4699
4699
|
text: string;
|
|
4700
|
-
type: "
|
|
4700
|
+
type: "error" | "success" | "info" | "warning";
|
|
4701
4701
|
id?: number | undefined;
|
|
4702
4702
|
}[] | undefined;
|
|
4703
4703
|
required?: boolean | undefined;
|
|
@@ -4928,7 +4928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4928
4928
|
hint?: string | undefined;
|
|
4929
4929
|
messages?: {
|
|
4930
4930
|
text: string;
|
|
4931
|
-
type: "
|
|
4931
|
+
type: "error" | "success" | "info" | "warning";
|
|
4932
4932
|
id?: number | undefined;
|
|
4933
4933
|
}[] | undefined;
|
|
4934
4934
|
required?: boolean | undefined;
|
|
@@ -4946,7 +4946,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4946
4946
|
hint?: string | undefined;
|
|
4947
4947
|
messages?: {
|
|
4948
4948
|
text: string;
|
|
4949
|
-
type: "
|
|
4949
|
+
type: "error" | "success" | "info" | "warning";
|
|
4950
4950
|
id?: number | undefined;
|
|
4951
4951
|
}[] | undefined;
|
|
4952
4952
|
required?: boolean | undefined;
|
|
@@ -4970,7 +4970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4970
4970
|
hint?: string | undefined;
|
|
4971
4971
|
messages?: {
|
|
4972
4972
|
text: string;
|
|
4973
|
-
type: "
|
|
4973
|
+
type: "error" | "success" | "info" | "warning";
|
|
4974
4974
|
id?: number | undefined;
|
|
4975
4975
|
}[] | undefined;
|
|
4976
4976
|
required?: boolean | undefined;
|
|
@@ -4994,7 +4994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4994
4994
|
hint?: string | undefined;
|
|
4995
4995
|
messages?: {
|
|
4996
4996
|
text: string;
|
|
4997
|
-
type: "
|
|
4997
|
+
type: "error" | "success" | "info" | "warning";
|
|
4998
4998
|
id?: number | undefined;
|
|
4999
4999
|
}[] | undefined;
|
|
5000
5000
|
required?: boolean | undefined;
|
|
@@ -5023,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5023
5023
|
hint?: string | undefined;
|
|
5024
5024
|
messages?: {
|
|
5025
5025
|
text: string;
|
|
5026
|
-
type: "
|
|
5026
|
+
type: "error" | "success" | "info" | "warning";
|
|
5027
5027
|
id?: number | undefined;
|
|
5028
5028
|
}[] | undefined;
|
|
5029
5029
|
required?: boolean | undefined;
|
|
@@ -5038,7 +5038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5038
5038
|
hint?: string | undefined;
|
|
5039
5039
|
messages?: {
|
|
5040
5040
|
text: string;
|
|
5041
|
-
type: "
|
|
5041
|
+
type: "error" | "success" | "info" | "warning";
|
|
5042
5042
|
id?: number | undefined;
|
|
5043
5043
|
}[] | undefined;
|
|
5044
5044
|
required?: boolean | undefined;
|
|
@@ -5059,7 +5059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5059
5059
|
hint?: string | undefined;
|
|
5060
5060
|
messages?: {
|
|
5061
5061
|
text: string;
|
|
5062
|
-
type: "
|
|
5062
|
+
type: "error" | "success" | "info" | "warning";
|
|
5063
5063
|
id?: number | undefined;
|
|
5064
5064
|
}[] | undefined;
|
|
5065
5065
|
required?: boolean | undefined;
|
|
@@ -5084,7 +5084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5084
5084
|
hint?: string | undefined;
|
|
5085
5085
|
messages?: {
|
|
5086
5086
|
text: string;
|
|
5087
|
-
type: "
|
|
5087
|
+
type: "error" | "success" | "info" | "warning";
|
|
5088
5088
|
id?: number | undefined;
|
|
5089
5089
|
}[] | undefined;
|
|
5090
5090
|
required?: boolean | undefined;
|
|
@@ -5103,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5103
5103
|
hint?: string | undefined;
|
|
5104
5104
|
messages?: {
|
|
5105
5105
|
text: string;
|
|
5106
|
-
type: "
|
|
5106
|
+
type: "error" | "success" | "info" | "warning";
|
|
5107
5107
|
id?: number | undefined;
|
|
5108
5108
|
}[] | undefined;
|
|
5109
5109
|
required?: boolean | undefined;
|
|
@@ -5123,7 +5123,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5123
5123
|
hint?: string | undefined;
|
|
5124
5124
|
messages?: {
|
|
5125
5125
|
text: string;
|
|
5126
|
-
type: "
|
|
5126
|
+
type: "error" | "success" | "info" | "warning";
|
|
5127
5127
|
id?: number | undefined;
|
|
5128
5128
|
}[] | undefined;
|
|
5129
5129
|
required?: boolean | undefined;
|
|
@@ -5142,7 +5142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5142
5142
|
hint?: string | undefined;
|
|
5143
5143
|
messages?: {
|
|
5144
5144
|
text: string;
|
|
5145
|
-
type: "
|
|
5145
|
+
type: "error" | "success" | "info" | "warning";
|
|
5146
5146
|
id?: number | undefined;
|
|
5147
5147
|
}[] | undefined;
|
|
5148
5148
|
required?: boolean | undefined;
|
|
@@ -5164,7 +5164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5164
5164
|
hint?: string | undefined;
|
|
5165
5165
|
messages?: {
|
|
5166
5166
|
text: string;
|
|
5167
|
-
type: "
|
|
5167
|
+
type: "error" | "success" | "info" | "warning";
|
|
5168
5168
|
id?: number | undefined;
|
|
5169
5169
|
}[] | undefined;
|
|
5170
5170
|
required?: boolean | undefined;
|
|
@@ -5186,7 +5186,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5186
5186
|
hint?: string | undefined;
|
|
5187
5187
|
messages?: {
|
|
5188
5188
|
text: string;
|
|
5189
|
-
type: "
|
|
5189
|
+
type: "error" | "success" | "info" | "warning";
|
|
5190
5190
|
id?: number | undefined;
|
|
5191
5191
|
}[] | undefined;
|
|
5192
5192
|
required?: boolean | undefined;
|
|
@@ -5205,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5205
5205
|
hint?: string | undefined;
|
|
5206
5206
|
messages?: {
|
|
5207
5207
|
text: string;
|
|
5208
|
-
type: "
|
|
5208
|
+
type: "error" | "success" | "info" | "warning";
|
|
5209
5209
|
id?: number | undefined;
|
|
5210
5210
|
}[] | undefined;
|
|
5211
5211
|
required?: boolean | undefined;
|
|
@@ -5230,7 +5230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5230
5230
|
hint?: string | undefined;
|
|
5231
5231
|
messages?: {
|
|
5232
5232
|
text: string;
|
|
5233
|
-
type: "
|
|
5233
|
+
type: "error" | "success" | "info" | "warning";
|
|
5234
5234
|
id?: number | undefined;
|
|
5235
5235
|
}[] | undefined;
|
|
5236
5236
|
required?: boolean | undefined;
|
|
@@ -5251,7 +5251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5251
5251
|
hint?: string | undefined;
|
|
5252
5252
|
messages?: {
|
|
5253
5253
|
text: string;
|
|
5254
|
-
type: "
|
|
5254
|
+
type: "error" | "success" | "info" | "warning";
|
|
5255
5255
|
id?: number | undefined;
|
|
5256
5256
|
}[] | undefined;
|
|
5257
5257
|
required?: boolean | undefined;
|
|
@@ -5272,7 +5272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5272
5272
|
hint?: string | undefined;
|
|
5273
5273
|
messages?: {
|
|
5274
5274
|
text: string;
|
|
5275
|
-
type: "
|
|
5275
|
+
type: "error" | "success" | "info" | "warning";
|
|
5276
5276
|
id?: number | undefined;
|
|
5277
5277
|
}[] | undefined;
|
|
5278
5278
|
required?: boolean | undefined;
|
|
@@ -5505,7 +5505,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5505
5505
|
hint?: string | undefined;
|
|
5506
5506
|
messages?: {
|
|
5507
5507
|
text: string;
|
|
5508
|
-
type: "
|
|
5508
|
+
type: "error" | "success" | "info" | "warning";
|
|
5509
5509
|
id?: number | undefined;
|
|
5510
5510
|
}[] | undefined;
|
|
5511
5511
|
required?: boolean | undefined;
|
|
@@ -5523,7 +5523,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5523
5523
|
hint?: string | undefined;
|
|
5524
5524
|
messages?: {
|
|
5525
5525
|
text: string;
|
|
5526
|
-
type: "
|
|
5526
|
+
type: "error" | "success" | "info" | "warning";
|
|
5527
5527
|
id?: number | undefined;
|
|
5528
5528
|
}[] | undefined;
|
|
5529
5529
|
required?: boolean | undefined;
|
|
@@ -5547,7 +5547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5547
5547
|
hint?: string | undefined;
|
|
5548
5548
|
messages?: {
|
|
5549
5549
|
text: string;
|
|
5550
|
-
type: "
|
|
5550
|
+
type: "error" | "success" | "info" | "warning";
|
|
5551
5551
|
id?: number | undefined;
|
|
5552
5552
|
}[] | undefined;
|
|
5553
5553
|
required?: boolean | undefined;
|
|
@@ -5571,7 +5571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5571
5571
|
hint?: string | undefined;
|
|
5572
5572
|
messages?: {
|
|
5573
5573
|
text: string;
|
|
5574
|
-
type: "
|
|
5574
|
+
type: "error" | "success" | "info" | "warning";
|
|
5575
5575
|
id?: number | undefined;
|
|
5576
5576
|
}[] | undefined;
|
|
5577
5577
|
required?: boolean | undefined;
|
|
@@ -5596,7 +5596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5596
5596
|
hint?: string | undefined;
|
|
5597
5597
|
messages?: {
|
|
5598
5598
|
text: string;
|
|
5599
|
-
type: "
|
|
5599
|
+
type: "error" | "success" | "info" | "warning";
|
|
5600
5600
|
id?: number | undefined;
|
|
5601
5601
|
}[] | undefined;
|
|
5602
5602
|
required?: boolean | undefined;
|
|
@@ -5611,7 +5611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5611
5611
|
hint?: string | undefined;
|
|
5612
5612
|
messages?: {
|
|
5613
5613
|
text: string;
|
|
5614
|
-
type: "
|
|
5614
|
+
type: "error" | "success" | "info" | "warning";
|
|
5615
5615
|
id?: number | undefined;
|
|
5616
5616
|
}[] | undefined;
|
|
5617
5617
|
required?: boolean | undefined;
|
|
@@ -5632,7 +5632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5632
5632
|
hint?: string | undefined;
|
|
5633
5633
|
messages?: {
|
|
5634
5634
|
text: string;
|
|
5635
|
-
type: "
|
|
5635
|
+
type: "error" | "success" | "info" | "warning";
|
|
5636
5636
|
id?: number | undefined;
|
|
5637
5637
|
}[] | undefined;
|
|
5638
5638
|
required?: boolean | undefined;
|
|
@@ -5657,7 +5657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5657
5657
|
hint?: string | undefined;
|
|
5658
5658
|
messages?: {
|
|
5659
5659
|
text: string;
|
|
5660
|
-
type: "
|
|
5660
|
+
type: "error" | "success" | "info" | "warning";
|
|
5661
5661
|
id?: number | undefined;
|
|
5662
5662
|
}[] | undefined;
|
|
5663
5663
|
required?: boolean | undefined;
|
|
@@ -5676,7 +5676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5676
5676
|
hint?: string | undefined;
|
|
5677
5677
|
messages?: {
|
|
5678
5678
|
text: string;
|
|
5679
|
-
type: "
|
|
5679
|
+
type: "error" | "success" | "info" | "warning";
|
|
5680
5680
|
id?: number | undefined;
|
|
5681
5681
|
}[] | undefined;
|
|
5682
5682
|
required?: boolean | undefined;
|
|
@@ -5696,7 +5696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5696
5696
|
hint?: string | undefined;
|
|
5697
5697
|
messages?: {
|
|
5698
5698
|
text: string;
|
|
5699
|
-
type: "
|
|
5699
|
+
type: "error" | "success" | "info" | "warning";
|
|
5700
5700
|
id?: number | undefined;
|
|
5701
5701
|
}[] | undefined;
|
|
5702
5702
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5715
5715
|
hint?: string | undefined;
|
|
5716
5716
|
messages?: {
|
|
5717
5717
|
text: string;
|
|
5718
|
-
type: "
|
|
5718
|
+
type: "error" | "success" | "info" | "warning";
|
|
5719
5719
|
id?: number | undefined;
|
|
5720
5720
|
}[] | undefined;
|
|
5721
5721
|
required?: boolean | undefined;
|
|
@@ -5737,7 +5737,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5737
5737
|
hint?: string | undefined;
|
|
5738
5738
|
messages?: {
|
|
5739
5739
|
text: string;
|
|
5740
|
-
type: "
|
|
5740
|
+
type: "error" | "success" | "info" | "warning";
|
|
5741
5741
|
id?: number | undefined;
|
|
5742
5742
|
}[] | undefined;
|
|
5743
5743
|
required?: boolean | undefined;
|
|
@@ -5759,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5759
5759
|
hint?: string | undefined;
|
|
5760
5760
|
messages?: {
|
|
5761
5761
|
text: string;
|
|
5762
|
-
type: "
|
|
5762
|
+
type: "error" | "success" | "info" | "warning";
|
|
5763
5763
|
id?: number | undefined;
|
|
5764
5764
|
}[] | undefined;
|
|
5765
5765
|
required?: boolean | undefined;
|
|
@@ -5778,7 +5778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5778
5778
|
hint?: string | undefined;
|
|
5779
5779
|
messages?: {
|
|
5780
5780
|
text: string;
|
|
5781
|
-
type: "
|
|
5781
|
+
type: "error" | "success" | "info" | "warning";
|
|
5782
5782
|
id?: number | undefined;
|
|
5783
5783
|
}[] | undefined;
|
|
5784
5784
|
required?: boolean | undefined;
|
|
@@ -5803,7 +5803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5803
5803
|
hint?: string | undefined;
|
|
5804
5804
|
messages?: {
|
|
5805
5805
|
text: string;
|
|
5806
|
-
type: "
|
|
5806
|
+
type: "error" | "success" | "info" | "warning";
|
|
5807
5807
|
id?: number | undefined;
|
|
5808
5808
|
}[] | undefined;
|
|
5809
5809
|
required?: boolean | undefined;
|
|
@@ -5824,7 +5824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5824
5824
|
hint?: string | undefined;
|
|
5825
5825
|
messages?: {
|
|
5826
5826
|
text: string;
|
|
5827
|
-
type: "
|
|
5827
|
+
type: "error" | "success" | "info" | "warning";
|
|
5828
5828
|
id?: number | undefined;
|
|
5829
5829
|
}[] | undefined;
|
|
5830
5830
|
required?: boolean | undefined;
|
|
@@ -5845,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5845
5845
|
hint?: string | undefined;
|
|
5846
5846
|
messages?: {
|
|
5847
5847
|
text: string;
|
|
5848
|
-
type: "
|
|
5848
|
+
type: "error" | "success" | "info" | "warning";
|
|
5849
5849
|
id?: number | undefined;
|
|
5850
5850
|
}[] | undefined;
|
|
5851
5851
|
required?: boolean | undefined;
|
|
@@ -6076,7 +6076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6076
6076
|
hint?: string | undefined;
|
|
6077
6077
|
messages?: {
|
|
6078
6078
|
text: string;
|
|
6079
|
-
type: "
|
|
6079
|
+
type: "error" | "success" | "info" | "warning";
|
|
6080
6080
|
id?: number | undefined;
|
|
6081
6081
|
}[] | undefined;
|
|
6082
6082
|
required?: boolean | undefined;
|
|
@@ -6094,7 +6094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6094
6094
|
hint?: string | undefined;
|
|
6095
6095
|
messages?: {
|
|
6096
6096
|
text: string;
|
|
6097
|
-
type: "
|
|
6097
|
+
type: "error" | "success" | "info" | "warning";
|
|
6098
6098
|
id?: number | undefined;
|
|
6099
6099
|
}[] | undefined;
|
|
6100
6100
|
required?: boolean | undefined;
|
|
@@ -6118,7 +6118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6118
6118
|
hint?: string | undefined;
|
|
6119
6119
|
messages?: {
|
|
6120
6120
|
text: string;
|
|
6121
|
-
type: "
|
|
6121
|
+
type: "error" | "success" | "info" | "warning";
|
|
6122
6122
|
id?: number | undefined;
|
|
6123
6123
|
}[] | undefined;
|
|
6124
6124
|
required?: boolean | undefined;
|
|
@@ -6142,7 +6142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6142
6142
|
hint?: string | undefined;
|
|
6143
6143
|
messages?: {
|
|
6144
6144
|
text: string;
|
|
6145
|
-
type: "
|
|
6145
|
+
type: "error" | "success" | "info" | "warning";
|
|
6146
6146
|
id?: number | undefined;
|
|
6147
6147
|
}[] | undefined;
|
|
6148
6148
|
required?: boolean | undefined;
|
|
@@ -6171,7 +6171,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6171
6171
|
hint?: string | undefined;
|
|
6172
6172
|
messages?: {
|
|
6173
6173
|
text: string;
|
|
6174
|
-
type: "
|
|
6174
|
+
type: "error" | "success" | "info" | "warning";
|
|
6175
6175
|
id?: number | undefined;
|
|
6176
6176
|
}[] | undefined;
|
|
6177
6177
|
required?: boolean | undefined;
|
|
@@ -6186,7 +6186,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6186
6186
|
hint?: string | undefined;
|
|
6187
6187
|
messages?: {
|
|
6188
6188
|
text: string;
|
|
6189
|
-
type: "
|
|
6189
|
+
type: "error" | "success" | "info" | "warning";
|
|
6190
6190
|
id?: number | undefined;
|
|
6191
6191
|
}[] | undefined;
|
|
6192
6192
|
required?: boolean | undefined;
|
|
@@ -6207,7 +6207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6207
6207
|
hint?: string | undefined;
|
|
6208
6208
|
messages?: {
|
|
6209
6209
|
text: string;
|
|
6210
|
-
type: "
|
|
6210
|
+
type: "error" | "success" | "info" | "warning";
|
|
6211
6211
|
id?: number | undefined;
|
|
6212
6212
|
}[] | undefined;
|
|
6213
6213
|
required?: boolean | undefined;
|
|
@@ -6232,7 +6232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6232
6232
|
hint?: string | undefined;
|
|
6233
6233
|
messages?: {
|
|
6234
6234
|
text: string;
|
|
6235
|
-
type: "
|
|
6235
|
+
type: "error" | "success" | "info" | "warning";
|
|
6236
6236
|
id?: number | undefined;
|
|
6237
6237
|
}[] | undefined;
|
|
6238
6238
|
required?: boolean | undefined;
|
|
@@ -6251,7 +6251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6251
6251
|
hint?: string | undefined;
|
|
6252
6252
|
messages?: {
|
|
6253
6253
|
text: string;
|
|
6254
|
-
type: "
|
|
6254
|
+
type: "error" | "success" | "info" | "warning";
|
|
6255
6255
|
id?: number | undefined;
|
|
6256
6256
|
}[] | undefined;
|
|
6257
6257
|
required?: boolean | undefined;
|
|
@@ -6271,7 +6271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6271
6271
|
hint?: string | undefined;
|
|
6272
6272
|
messages?: {
|
|
6273
6273
|
text: string;
|
|
6274
|
-
type: "
|
|
6274
|
+
type: "error" | "success" | "info" | "warning";
|
|
6275
6275
|
id?: number | undefined;
|
|
6276
6276
|
}[] | undefined;
|
|
6277
6277
|
required?: boolean | undefined;
|
|
@@ -6290,7 +6290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6290
6290
|
hint?: string | undefined;
|
|
6291
6291
|
messages?: {
|
|
6292
6292
|
text: string;
|
|
6293
|
-
type: "
|
|
6293
|
+
type: "error" | "success" | "info" | "warning";
|
|
6294
6294
|
id?: number | undefined;
|
|
6295
6295
|
}[] | undefined;
|
|
6296
6296
|
required?: boolean | undefined;
|
|
@@ -6312,7 +6312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6312
6312
|
hint?: string | undefined;
|
|
6313
6313
|
messages?: {
|
|
6314
6314
|
text: string;
|
|
6315
|
-
type: "
|
|
6315
|
+
type: "error" | "success" | "info" | "warning";
|
|
6316
6316
|
id?: number | undefined;
|
|
6317
6317
|
}[] | undefined;
|
|
6318
6318
|
required?: boolean | undefined;
|
|
@@ -6334,7 +6334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6334
6334
|
hint?: string | undefined;
|
|
6335
6335
|
messages?: {
|
|
6336
6336
|
text: string;
|
|
6337
|
-
type: "
|
|
6337
|
+
type: "error" | "success" | "info" | "warning";
|
|
6338
6338
|
id?: number | undefined;
|
|
6339
6339
|
}[] | undefined;
|
|
6340
6340
|
required?: boolean | undefined;
|
|
@@ -6353,7 +6353,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6353
6353
|
hint?: string | undefined;
|
|
6354
6354
|
messages?: {
|
|
6355
6355
|
text: string;
|
|
6356
|
-
type: "
|
|
6356
|
+
type: "error" | "success" | "info" | "warning";
|
|
6357
6357
|
id?: number | undefined;
|
|
6358
6358
|
}[] | undefined;
|
|
6359
6359
|
required?: boolean | undefined;
|
|
@@ -6378,7 +6378,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6378
6378
|
hint?: string | undefined;
|
|
6379
6379
|
messages?: {
|
|
6380
6380
|
text: string;
|
|
6381
|
-
type: "
|
|
6381
|
+
type: "error" | "success" | "info" | "warning";
|
|
6382
6382
|
id?: number | undefined;
|
|
6383
6383
|
}[] | undefined;
|
|
6384
6384
|
required?: boolean | undefined;
|
|
@@ -6399,7 +6399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6399
6399
|
hint?: string | undefined;
|
|
6400
6400
|
messages?: {
|
|
6401
6401
|
text: string;
|
|
6402
|
-
type: "
|
|
6402
|
+
type: "error" | "success" | "info" | "warning";
|
|
6403
6403
|
id?: number | undefined;
|
|
6404
6404
|
}[] | undefined;
|
|
6405
6405
|
required?: boolean | undefined;
|
|
@@ -6420,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6420
6420
|
hint?: string | undefined;
|
|
6421
6421
|
messages?: {
|
|
6422
6422
|
text: string;
|
|
6423
|
-
type: "
|
|
6423
|
+
type: "error" | "success" | "info" | "warning";
|
|
6424
6424
|
id?: number | undefined;
|
|
6425
6425
|
}[] | undefined;
|
|
6426
6426
|
required?: boolean | undefined;
|
|
@@ -6650,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6650
6650
|
};
|
|
6651
6651
|
};
|
|
6652
6652
|
output: {
|
|
6653
|
-
prompt: "
|
|
6653
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6654
6654
|
language: string;
|
|
6655
6655
|
}[];
|
|
6656
6656
|
outputFormat: "json";
|
|
@@ -6688,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6688
6688
|
$get: {
|
|
6689
6689
|
input: {
|
|
6690
6690
|
param: {
|
|
6691
|
-
prompt: "
|
|
6691
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6692
6692
|
language: string;
|
|
6693
6693
|
};
|
|
6694
6694
|
} & {
|
|
@@ -6710,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6710
6710
|
$put: {
|
|
6711
6711
|
input: {
|
|
6712
6712
|
param: {
|
|
6713
|
-
prompt: "
|
|
6713
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6714
6714
|
language: string;
|
|
6715
6715
|
};
|
|
6716
6716
|
} & {
|
|
@@ -6734,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6734
6734
|
$delete: {
|
|
6735
6735
|
input: {
|
|
6736
6736
|
param: {
|
|
6737
|
-
prompt: "
|
|
6737
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6738
6738
|
language: string;
|
|
6739
6739
|
};
|
|
6740
6740
|
} & {
|
|
@@ -6873,7 +6873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6873
6873
|
} | undefined;
|
|
6874
6874
|
} | undefined;
|
|
6875
6875
|
passkey_options?: {
|
|
6876
|
-
challenge_ui?: "
|
|
6876
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
6877
6877
|
local_enrollment_enabled?: boolean | undefined;
|
|
6878
6878
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
6879
6879
|
} | undefined;
|
|
@@ -7007,7 +7007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7007
7007
|
} | undefined;
|
|
7008
7008
|
} | undefined;
|
|
7009
7009
|
passkey_options?: {
|
|
7010
|
-
challenge_ui?: "
|
|
7010
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7011
7011
|
local_enrollment_enabled?: boolean | undefined;
|
|
7012
7012
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7013
7013
|
} | undefined;
|
|
@@ -7156,7 +7156,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7156
7156
|
} | undefined;
|
|
7157
7157
|
} | undefined;
|
|
7158
7158
|
passkey_options?: {
|
|
7159
|
-
challenge_ui?: "
|
|
7159
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7160
7160
|
local_enrollment_enabled?: boolean | undefined;
|
|
7161
7161
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7162
7162
|
} | undefined;
|
|
@@ -7335,7 +7335,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7335
7335
|
} | undefined;
|
|
7336
7336
|
} | undefined;
|
|
7337
7337
|
passkey_options?: {
|
|
7338
|
-
challenge_ui?: "
|
|
7338
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7339
7339
|
local_enrollment_enabled?: boolean | undefined;
|
|
7340
7340
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7341
7341
|
} | undefined;
|
|
@@ -7493,7 +7493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7493
7493
|
} | undefined;
|
|
7494
7494
|
} | undefined;
|
|
7495
7495
|
passkey_options?: {
|
|
7496
|
-
challenge_ui?: "
|
|
7496
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7497
7497
|
local_enrollment_enabled?: boolean | undefined;
|
|
7498
7498
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7499
7499
|
} | undefined;
|
|
@@ -7596,7 +7596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7596
7596
|
};
|
|
7597
7597
|
} | {
|
|
7598
7598
|
mode: "inline";
|
|
7599
|
-
status: "
|
|
7599
|
+
status: "error" | "success";
|
|
7600
7600
|
connection_id: string;
|
|
7601
7601
|
connection_name: string;
|
|
7602
7602
|
strategy: string;
|
|
@@ -8235,7 +8235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8235
8235
|
log_type: string;
|
|
8236
8236
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8237
8237
|
actor: {
|
|
8238
|
-
type: "user" | "client_credentials" | "
|
|
8238
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8239
8239
|
id?: string | undefined;
|
|
8240
8240
|
email?: string | undefined;
|
|
8241
8241
|
org_id?: string | undefined;
|
|
@@ -8543,7 +8543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8543
8543
|
created_at: string;
|
|
8544
8544
|
updated_at: string;
|
|
8545
8545
|
name: string;
|
|
8546
|
-
provider: "auth0" | "
|
|
8546
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8547
8547
|
connection: string;
|
|
8548
8548
|
enabled: boolean;
|
|
8549
8549
|
credentials: {
|
|
@@ -8575,7 +8575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8575
8575
|
created_at: string;
|
|
8576
8576
|
updated_at: string;
|
|
8577
8577
|
name: string;
|
|
8578
|
-
provider: "auth0" | "
|
|
8578
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8579
8579
|
connection: string;
|
|
8580
8580
|
enabled: boolean;
|
|
8581
8581
|
credentials: {
|
|
@@ -8601,7 +8601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8601
8601
|
} & {
|
|
8602
8602
|
json: {
|
|
8603
8603
|
name: string;
|
|
8604
|
-
provider: "auth0" | "
|
|
8604
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8605
8605
|
connection: string;
|
|
8606
8606
|
credentials: {
|
|
8607
8607
|
domain: string;
|
|
@@ -8618,7 +8618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8618
8618
|
created_at: string;
|
|
8619
8619
|
updated_at: string;
|
|
8620
8620
|
name: string;
|
|
8621
|
-
provider: "auth0" | "
|
|
8621
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8622
8622
|
connection: string;
|
|
8623
8623
|
enabled: boolean;
|
|
8624
8624
|
credentials: {
|
|
@@ -8649,7 +8649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8649
8649
|
json: {
|
|
8650
8650
|
id?: string | undefined;
|
|
8651
8651
|
name?: string | undefined;
|
|
8652
|
-
provider?: "auth0" | "
|
|
8652
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8653
8653
|
connection?: string | undefined;
|
|
8654
8654
|
enabled?: boolean | undefined;
|
|
8655
8655
|
credentials?: {
|
|
@@ -8665,7 +8665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8665
8665
|
created_at: string;
|
|
8666
8666
|
updated_at: string;
|
|
8667
8667
|
name: string;
|
|
8668
|
-
provider: "auth0" | "
|
|
8668
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8669
8669
|
connection: string;
|
|
8670
8670
|
enabled: boolean;
|
|
8671
8671
|
credentials: {
|
|
@@ -8713,7 +8713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8713
8713
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8714
8714
|
};
|
|
8715
8715
|
id: string;
|
|
8716
|
-
status: "
|
|
8716
|
+
status: "suspended" | "active" | "paused";
|
|
8717
8717
|
filters?: {
|
|
8718
8718
|
type: string;
|
|
8719
8719
|
name: string;
|
|
@@ -8745,7 +8745,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8745
8745
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8746
8746
|
};
|
|
8747
8747
|
id: string;
|
|
8748
|
-
status: "
|
|
8748
|
+
status: "suspended" | "active" | "paused";
|
|
8749
8749
|
filters?: {
|
|
8750
8750
|
type: string;
|
|
8751
8751
|
name: string;
|
|
@@ -8770,7 +8770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8770
8770
|
name: string;
|
|
8771
8771
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8772
8772
|
sink: Record<string, unknown>;
|
|
8773
|
-
status?: "
|
|
8773
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8774
8774
|
filters?: {
|
|
8775
8775
|
type: string;
|
|
8776
8776
|
name: string;
|
|
@@ -8785,7 +8785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8785
8785
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8786
8786
|
};
|
|
8787
8787
|
id: string;
|
|
8788
|
-
status: "
|
|
8788
|
+
status: "suspended" | "active" | "paused";
|
|
8789
8789
|
filters?: {
|
|
8790
8790
|
type: string;
|
|
8791
8791
|
name: string;
|
|
@@ -8820,7 +8820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8820
8820
|
}[] | undefined;
|
|
8821
8821
|
isPriority?: boolean | undefined;
|
|
8822
8822
|
id?: string | undefined;
|
|
8823
|
-
status?: "
|
|
8823
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8824
8824
|
created_at?: string | undefined;
|
|
8825
8825
|
updated_at?: string | undefined;
|
|
8826
8826
|
};
|
|
@@ -8832,7 +8832,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8832
8832
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8833
8833
|
};
|
|
8834
8834
|
id: string;
|
|
8835
|
-
status: "
|
|
8835
|
+
status: "suspended" | "active" | "paused";
|
|
8836
8836
|
filters?: {
|
|
8837
8837
|
type: string;
|
|
8838
8838
|
name: string;
|
|
@@ -8883,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8883
8883
|
};
|
|
8884
8884
|
};
|
|
8885
8885
|
output: {
|
|
8886
|
-
type: "fn" | "
|
|
8886
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8887
8887
|
date: string;
|
|
8888
8888
|
isMobile: boolean;
|
|
8889
8889
|
log_id: string;
|
|
@@ -8922,7 +8922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8922
8922
|
limit: number;
|
|
8923
8923
|
length: number;
|
|
8924
8924
|
logs: {
|
|
8925
|
-
type: "fn" | "
|
|
8925
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8926
8926
|
date: string;
|
|
8927
8927
|
isMobile: boolean;
|
|
8928
8928
|
log_id: string;
|
|
@@ -8976,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8976
8976
|
};
|
|
8977
8977
|
};
|
|
8978
8978
|
output: {
|
|
8979
|
-
type: "fn" | "
|
|
8979
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8980
8980
|
date: string;
|
|
8981
8981
|
isMobile: boolean;
|
|
8982
8982
|
log_id: string;
|
|
@@ -9332,7 +9332,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9332
9332
|
client_id: string;
|
|
9333
9333
|
description?: string | undefined;
|
|
9334
9334
|
client_secret?: string | undefined;
|
|
9335
|
-
app_type?: "
|
|
9335
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9336
9336
|
logo_uri?: string | undefined;
|
|
9337
9337
|
callbacks?: string[] | undefined;
|
|
9338
9338
|
allowed_origins?: string[] | undefined;
|
|
@@ -9364,7 +9364,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9364
9364
|
addons?: {
|
|
9365
9365
|
[x: string]: any;
|
|
9366
9366
|
} | undefined;
|
|
9367
|
-
token_endpoint_auth_method?: "
|
|
9367
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9368
9368
|
client_metadata?: {
|
|
9369
9369
|
[x: string]: string;
|
|
9370
9370
|
} | undefined;
|
|
@@ -9428,7 +9428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9428
9428
|
client_id: string;
|
|
9429
9429
|
description?: string | undefined;
|
|
9430
9430
|
client_secret?: string | undefined;
|
|
9431
|
-
app_type?: "
|
|
9431
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9432
9432
|
logo_uri?: string | undefined;
|
|
9433
9433
|
callbacks?: string[] | undefined;
|
|
9434
9434
|
allowed_origins?: string[] | undefined;
|
|
@@ -9460,7 +9460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9460
9460
|
addons?: {
|
|
9461
9461
|
[x: string]: any;
|
|
9462
9462
|
} | undefined;
|
|
9463
|
-
token_endpoint_auth_method?: "
|
|
9463
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9464
9464
|
client_metadata?: {
|
|
9465
9465
|
[x: string]: string;
|
|
9466
9466
|
} | undefined;
|
|
@@ -9539,7 +9539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9539
9539
|
client_id: string;
|
|
9540
9540
|
description?: string | undefined;
|
|
9541
9541
|
client_secret?: string | undefined;
|
|
9542
|
-
app_type?: "
|
|
9542
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9543
9543
|
logo_uri?: string | undefined;
|
|
9544
9544
|
callbacks?: string[] | undefined;
|
|
9545
9545
|
allowed_origins?: string[] | undefined;
|
|
@@ -9571,7 +9571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9571
9571
|
addons?: {
|
|
9572
9572
|
[x: string]: any;
|
|
9573
9573
|
} | undefined;
|
|
9574
|
-
token_endpoint_auth_method?: "
|
|
9574
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9575
9575
|
client_metadata?: {
|
|
9576
9576
|
[x: string]: string;
|
|
9577
9577
|
} | undefined;
|
|
@@ -9654,7 +9654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9654
9654
|
description?: string | undefined;
|
|
9655
9655
|
global?: boolean | undefined;
|
|
9656
9656
|
client_secret?: string | undefined;
|
|
9657
|
-
app_type?: "
|
|
9657
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9658
9658
|
logo_uri?: string | undefined;
|
|
9659
9659
|
is_first_party?: boolean | undefined;
|
|
9660
9660
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9681,7 +9681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9681
9681
|
custom_login_page_preview?: string | undefined;
|
|
9682
9682
|
form_template?: string | undefined;
|
|
9683
9683
|
addons?: Record<string, any> | undefined;
|
|
9684
|
-
token_endpoint_auth_method?: "
|
|
9684
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9685
9685
|
client_metadata?: Record<string, string> | undefined;
|
|
9686
9686
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9687
9687
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9729,7 +9729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9729
9729
|
client_id: string;
|
|
9730
9730
|
description?: string | undefined;
|
|
9731
9731
|
client_secret?: string | undefined;
|
|
9732
|
-
app_type?: "
|
|
9732
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9733
9733
|
logo_uri?: string | undefined;
|
|
9734
9734
|
callbacks?: string[] | undefined;
|
|
9735
9735
|
allowed_origins?: string[] | undefined;
|
|
@@ -9761,7 +9761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9761
9761
|
addons?: {
|
|
9762
9762
|
[x: string]: any;
|
|
9763
9763
|
} | undefined;
|
|
9764
|
-
token_endpoint_auth_method?: "
|
|
9764
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9765
9765
|
client_metadata?: {
|
|
9766
9766
|
[x: string]: string;
|
|
9767
9767
|
} | undefined;
|
|
@@ -9823,7 +9823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9823
9823
|
description?: string | undefined;
|
|
9824
9824
|
global?: boolean | undefined;
|
|
9825
9825
|
client_secret?: string | undefined;
|
|
9826
|
-
app_type?: "
|
|
9826
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9827
9827
|
logo_uri?: string | undefined;
|
|
9828
9828
|
is_first_party?: boolean | undefined;
|
|
9829
9829
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9850,7 +9850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9850
9850
|
custom_login_page_preview?: string | undefined;
|
|
9851
9851
|
form_template?: string | undefined;
|
|
9852
9852
|
addons?: Record<string, any> | undefined;
|
|
9853
|
-
token_endpoint_auth_method?: "
|
|
9853
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9854
9854
|
client_metadata?: Record<string, string> | undefined;
|
|
9855
9855
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9856
9856
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9898,7 +9898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9898
9898
|
client_id: string;
|
|
9899
9899
|
description?: string | undefined;
|
|
9900
9900
|
client_secret?: string | undefined;
|
|
9901
|
-
app_type?: "
|
|
9901
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9902
9902
|
logo_uri?: string | undefined;
|
|
9903
9903
|
callbacks?: string[] | undefined;
|
|
9904
9904
|
allowed_origins?: string[] | undefined;
|
|
@@ -9930,7 +9930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9930
9930
|
addons?: {
|
|
9931
9931
|
[x: string]: any;
|
|
9932
9932
|
} | undefined;
|
|
9933
|
-
token_endpoint_auth_method?: "
|
|
9933
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9934
9934
|
client_metadata?: {
|
|
9935
9935
|
[x: string]: string;
|
|
9936
9936
|
} | undefined;
|
|
@@ -10099,7 +10099,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10099
10099
|
} | undefined;
|
|
10100
10100
|
} | undefined;
|
|
10101
10101
|
passkey_options?: {
|
|
10102
|
-
challenge_ui?: "
|
|
10102
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10103
10103
|
local_enrollment_enabled?: boolean | undefined;
|
|
10104
10104
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10105
10105
|
} | undefined;
|
|
@@ -10253,7 +10253,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10253
10253
|
} | undefined;
|
|
10254
10254
|
} | undefined;
|
|
10255
10255
|
passkey_options?: {
|
|
10256
|
-
challenge_ui?: "
|
|
10256
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10257
10257
|
local_enrollment_enabled?: boolean | undefined;
|
|
10258
10258
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10259
10259
|
} | undefined;
|
|
@@ -11194,7 +11194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11194
11194
|
};
|
|
11195
11195
|
};
|
|
11196
11196
|
output: {
|
|
11197
|
-
type: "fn" | "
|
|
11197
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11198
11198
|
date: string;
|
|
11199
11199
|
isMobile: boolean;
|
|
11200
11200
|
log_id: string;
|
|
@@ -11233,7 +11233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11233
11233
|
limit: number;
|
|
11234
11234
|
length: number;
|
|
11235
11235
|
logs: {
|
|
11236
|
-
type: "fn" | "
|
|
11236
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11237
11237
|
date: string;
|
|
11238
11238
|
isMobile: boolean;
|
|
11239
11239
|
log_id: string;
|
|
@@ -11548,7 +11548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11548
11548
|
};
|
|
11549
11549
|
} & {
|
|
11550
11550
|
json: {
|
|
11551
|
-
template: "
|
|
11551
|
+
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";
|
|
11552
11552
|
body: string;
|
|
11553
11553
|
from: string;
|
|
11554
11554
|
subject: string;
|
|
@@ -11569,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11569
11569
|
};
|
|
11570
11570
|
} & {
|
|
11571
11571
|
json: {
|
|
11572
|
-
template: "
|
|
11572
|
+
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";
|
|
11573
11573
|
body: string;
|
|
11574
11574
|
from: string;
|
|
11575
11575
|
subject: string;
|
|
@@ -11581,7 +11581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11581
11581
|
};
|
|
11582
11582
|
};
|
|
11583
11583
|
output: {
|
|
11584
|
-
template: "
|
|
11584
|
+
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";
|
|
11585
11585
|
body: string;
|
|
11586
11586
|
from: string;
|
|
11587
11587
|
subject: string;
|
|
@@ -11604,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11604
11604
|
};
|
|
11605
11605
|
};
|
|
11606
11606
|
output: {
|
|
11607
|
-
name: "
|
|
11607
|
+
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";
|
|
11608
11608
|
body: string;
|
|
11609
11609
|
subject: string;
|
|
11610
11610
|
}[];
|
|
@@ -11617,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11617
11617
|
$get: {
|
|
11618
11618
|
input: {
|
|
11619
11619
|
param: {
|
|
11620
|
-
templateName: "
|
|
11620
|
+
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";
|
|
11621
11621
|
};
|
|
11622
11622
|
} & {
|
|
11623
11623
|
header: {
|
|
@@ -11630,7 +11630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11630
11630
|
} | {
|
|
11631
11631
|
input: {
|
|
11632
11632
|
param: {
|
|
11633
|
-
templateName: "
|
|
11633
|
+
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";
|
|
11634
11634
|
};
|
|
11635
11635
|
} & {
|
|
11636
11636
|
header: {
|
|
@@ -11638,7 +11638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11638
11638
|
};
|
|
11639
11639
|
};
|
|
11640
11640
|
output: {
|
|
11641
|
-
template: "
|
|
11641
|
+
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";
|
|
11642
11642
|
body: string;
|
|
11643
11643
|
from: string;
|
|
11644
11644
|
subject: string;
|
|
@@ -11657,7 +11657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11657
11657
|
$put: {
|
|
11658
11658
|
input: {
|
|
11659
11659
|
param: {
|
|
11660
|
-
templateName: "
|
|
11660
|
+
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";
|
|
11661
11661
|
};
|
|
11662
11662
|
} & {
|
|
11663
11663
|
header: {
|
|
@@ -11665,7 +11665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11665
11665
|
};
|
|
11666
11666
|
} & {
|
|
11667
11667
|
json: {
|
|
11668
|
-
template: "
|
|
11668
|
+
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";
|
|
11669
11669
|
body: string;
|
|
11670
11670
|
subject: string;
|
|
11671
11671
|
syntax?: "liquid" | undefined;
|
|
@@ -11677,7 +11677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11677
11677
|
};
|
|
11678
11678
|
};
|
|
11679
11679
|
output: {
|
|
11680
|
-
template: "
|
|
11680
|
+
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";
|
|
11681
11681
|
body: string;
|
|
11682
11682
|
from: string;
|
|
11683
11683
|
subject: string;
|
|
@@ -11696,7 +11696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11696
11696
|
$patch: {
|
|
11697
11697
|
input: {
|
|
11698
11698
|
param: {
|
|
11699
|
-
templateName: "
|
|
11699
|
+
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";
|
|
11700
11700
|
};
|
|
11701
11701
|
} & {
|
|
11702
11702
|
header: {
|
|
@@ -11704,7 +11704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11704
11704
|
};
|
|
11705
11705
|
} & {
|
|
11706
11706
|
json: {
|
|
11707
|
-
template?: "
|
|
11707
|
+
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;
|
|
11708
11708
|
body?: string | undefined;
|
|
11709
11709
|
from?: string | undefined;
|
|
11710
11710
|
subject?: string | undefined;
|
|
@@ -11721,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11721
11721
|
} | {
|
|
11722
11722
|
input: {
|
|
11723
11723
|
param: {
|
|
11724
|
-
templateName: "
|
|
11724
|
+
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";
|
|
11725
11725
|
};
|
|
11726
11726
|
} & {
|
|
11727
11727
|
header: {
|
|
@@ -11729,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11729
11729
|
};
|
|
11730
11730
|
} & {
|
|
11731
11731
|
json: {
|
|
11732
|
-
template?: "
|
|
11732
|
+
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;
|
|
11733
11733
|
body?: string | undefined;
|
|
11734
11734
|
from?: string | undefined;
|
|
11735
11735
|
subject?: string | undefined;
|
|
@@ -11741,7 +11741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11741
11741
|
};
|
|
11742
11742
|
};
|
|
11743
11743
|
output: {
|
|
11744
|
-
template: "
|
|
11744
|
+
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";
|
|
11745
11745
|
body: string;
|
|
11746
11746
|
from: string;
|
|
11747
11747
|
subject: string;
|
|
@@ -11760,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11760
11760
|
$delete: {
|
|
11761
11761
|
input: {
|
|
11762
11762
|
param: {
|
|
11763
|
-
templateName: "
|
|
11763
|
+
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";
|
|
11764
11764
|
};
|
|
11765
11765
|
} & {
|
|
11766
11766
|
header: {
|
|
@@ -11773,7 +11773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11773
11773
|
} | {
|
|
11774
11774
|
input: {
|
|
11775
11775
|
param: {
|
|
11776
|
-
templateName: "
|
|
11776
|
+
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";
|
|
11777
11777
|
};
|
|
11778
11778
|
} & {
|
|
11779
11779
|
header: {
|
|
@@ -11790,7 +11790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11790
11790
|
$post: {
|
|
11791
11791
|
input: {
|
|
11792
11792
|
param: {
|
|
11793
|
-
templateName: "
|
|
11793
|
+
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";
|
|
11794
11794
|
};
|
|
11795
11795
|
} & {
|
|
11796
11796
|
header: {
|
|
@@ -12073,9 +12073,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12073
12073
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12074
12074
|
custom_domain_id: string;
|
|
12075
12075
|
primary: boolean;
|
|
12076
|
-
status: "
|
|
12076
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12077
12077
|
verification_method?: "txt" | undefined;
|
|
12078
|
-
custom_client_ip_header?: "null" | "
|
|
12078
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12079
12079
|
domain_metadata?: {
|
|
12080
12080
|
[x: string]: string;
|
|
12081
12081
|
} | undefined;
|
|
@@ -12114,9 +12114,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12114
12114
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12115
12115
|
custom_domain_id: string;
|
|
12116
12116
|
primary: boolean;
|
|
12117
|
-
status: "
|
|
12117
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12118
12118
|
verification_method?: "txt" | undefined;
|
|
12119
|
-
custom_client_ip_header?: "null" | "
|
|
12119
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12120
12120
|
domain_metadata?: {
|
|
12121
12121
|
[x: string]: string;
|
|
12122
12122
|
} | undefined;
|
|
@@ -12169,7 +12169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12169
12169
|
} & {
|
|
12170
12170
|
json: {
|
|
12171
12171
|
tls_policy?: "recommended" | undefined;
|
|
12172
|
-
custom_client_ip_header?: "null" | "
|
|
12172
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12173
12173
|
domain_metadata?: Record<string, string> | undefined;
|
|
12174
12174
|
};
|
|
12175
12175
|
};
|
|
@@ -12178,9 +12178,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12178
12178
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12179
12179
|
custom_domain_id: string;
|
|
12180
12180
|
primary: boolean;
|
|
12181
|
-
status: "
|
|
12181
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12182
12182
|
verification_method?: "txt" | undefined;
|
|
12183
|
-
custom_client_ip_header?: "null" | "
|
|
12183
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12184
12184
|
domain_metadata?: {
|
|
12185
12185
|
[x: string]: string;
|
|
12186
12186
|
} | undefined;
|
|
@@ -12216,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12216
12216
|
custom_domain_id?: string | undefined;
|
|
12217
12217
|
verification_method?: "txt" | undefined;
|
|
12218
12218
|
tls_policy?: "recommended" | undefined;
|
|
12219
|
-
custom_client_ip_header?: "null" | "
|
|
12219
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12220
12220
|
domain_metadata?: Record<string, string> | undefined;
|
|
12221
12221
|
};
|
|
12222
12222
|
};
|
|
@@ -12225,9 +12225,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12225
12225
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12226
12226
|
custom_domain_id: string;
|
|
12227
12227
|
primary: boolean;
|
|
12228
|
-
status: "
|
|
12228
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12229
12229
|
verification_method?: "txt" | undefined;
|
|
12230
|
-
custom_client_ip_header?: "null" | "
|
|
12230
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12231
12231
|
domain_metadata?: {
|
|
12232
12232
|
[x: string]: string;
|
|
12233
12233
|
} | undefined;
|
|
@@ -12271,9 +12271,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12271
12271
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12272
12272
|
custom_domain_id: string;
|
|
12273
12273
|
primary: boolean;
|
|
12274
|
-
status: "
|
|
12274
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12275
12275
|
verification_method?: "txt" | undefined;
|
|
12276
|
-
custom_client_ip_header?: "null" | "
|
|
12276
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12277
12277
|
domain_metadata?: {
|
|
12278
12278
|
[x: string]: string;
|
|
12279
12279
|
} | undefined;
|
|
@@ -12312,9 +12312,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12312
12312
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12313
12313
|
custom_domain_id: string;
|
|
12314
12314
|
primary: boolean;
|
|
12315
|
-
status: "
|
|
12315
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12316
12316
|
verification_method?: "txt" | undefined;
|
|
12317
|
-
custom_client_ip_header?: "null" | "
|
|
12317
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12318
12318
|
domain_metadata?: {
|
|
12319
12319
|
[x: string]: string;
|
|
12320
12320
|
} | undefined;
|
|
@@ -12360,7 +12360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12360
12360
|
base_focus_color: string;
|
|
12361
12361
|
base_hover_color: string;
|
|
12362
12362
|
body_text: string;
|
|
12363
|
-
captcha_widget_theme: "
|
|
12363
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12364
12364
|
error: string;
|
|
12365
12365
|
header: string;
|
|
12366
12366
|
icons: string;
|
|
@@ -12411,7 +12411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12411
12411
|
background_color: string;
|
|
12412
12412
|
background_image_url: string;
|
|
12413
12413
|
page_layout: "center" | "left" | "right";
|
|
12414
|
-
logo_placement?: "
|
|
12414
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12415
12415
|
};
|
|
12416
12416
|
widget: {
|
|
12417
12417
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12450,7 +12450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12450
12450
|
base_focus_color: string;
|
|
12451
12451
|
base_hover_color: string;
|
|
12452
12452
|
body_text: string;
|
|
12453
|
-
captcha_widget_theme: "
|
|
12453
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12454
12454
|
error: string;
|
|
12455
12455
|
header: string;
|
|
12456
12456
|
icons: string;
|
|
@@ -12501,7 +12501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12501
12501
|
background_color: string;
|
|
12502
12502
|
background_image_url: string;
|
|
12503
12503
|
page_layout: "center" | "left" | "right";
|
|
12504
|
-
logo_placement?: "
|
|
12504
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12505
12505
|
};
|
|
12506
12506
|
widget: {
|
|
12507
12507
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12529,7 +12529,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12529
12529
|
base_focus_color: string;
|
|
12530
12530
|
base_hover_color: string;
|
|
12531
12531
|
body_text: string;
|
|
12532
|
-
captcha_widget_theme: "
|
|
12532
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12533
12533
|
error: string;
|
|
12534
12534
|
header: string;
|
|
12535
12535
|
icons: string;
|
|
@@ -12580,7 +12580,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12580
12580
|
background_color: string;
|
|
12581
12581
|
background_image_url: string;
|
|
12582
12582
|
page_layout: "center" | "left" | "right";
|
|
12583
|
-
logo_placement?: "
|
|
12583
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12584
12584
|
};
|
|
12585
12585
|
widget: {
|
|
12586
12586
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12619,7 +12619,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12619
12619
|
font?: {
|
|
12620
12620
|
url: string;
|
|
12621
12621
|
} | undefined;
|
|
12622
|
-
dark_mode?: "
|
|
12622
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12623
12623
|
};
|
|
12624
12624
|
outputFormat: "json";
|
|
12625
12625
|
status: 200;
|
|
@@ -12649,7 +12649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12649
12649
|
font?: {
|
|
12650
12650
|
url: string;
|
|
12651
12651
|
} | undefined;
|
|
12652
|
-
dark_mode?: "
|
|
12652
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12653
12653
|
};
|
|
12654
12654
|
};
|
|
12655
12655
|
output: {
|
|
@@ -12668,7 +12668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12668
12668
|
font?: {
|
|
12669
12669
|
url: string;
|
|
12670
12670
|
} | undefined;
|
|
12671
|
-
dark_mode?: "
|
|
12671
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12672
12672
|
};
|
|
12673
12673
|
outputFormat: "json";
|
|
12674
12674
|
status: 200;
|
|
@@ -12732,6 +12732,120 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12732
12732
|
status: 204;
|
|
12733
12733
|
};
|
|
12734
12734
|
};
|
|
12735
|
+
} & {
|
|
12736
|
+
"/templates/universal-login/preview": {
|
|
12737
|
+
$post: {
|
|
12738
|
+
input: {
|
|
12739
|
+
header: {
|
|
12740
|
+
"tenant-id"?: string | undefined;
|
|
12741
|
+
};
|
|
12742
|
+
} & {
|
|
12743
|
+
json: {
|
|
12744
|
+
body?: string | undefined;
|
|
12745
|
+
screen?: "login" | "identifier" | "password" | "signup" | undefined;
|
|
12746
|
+
branding?: {
|
|
12747
|
+
colors?: {
|
|
12748
|
+
primary: string;
|
|
12749
|
+
page_background?: string | {
|
|
12750
|
+
type?: string | undefined;
|
|
12751
|
+
start?: string | undefined;
|
|
12752
|
+
end?: string | undefined;
|
|
12753
|
+
angle_deg?: number | undefined;
|
|
12754
|
+
} | undefined;
|
|
12755
|
+
} | undefined;
|
|
12756
|
+
logo_url?: string | undefined;
|
|
12757
|
+
favicon_url?: string | undefined;
|
|
12758
|
+
powered_by_logo_url?: string | undefined;
|
|
12759
|
+
font?: {
|
|
12760
|
+
url: string;
|
|
12761
|
+
} | undefined;
|
|
12762
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12763
|
+
} | undefined;
|
|
12764
|
+
theme?: {
|
|
12765
|
+
borders?: {
|
|
12766
|
+
button_border_radius: number;
|
|
12767
|
+
button_border_weight: number;
|
|
12768
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
12769
|
+
input_border_radius: number;
|
|
12770
|
+
input_border_weight: number;
|
|
12771
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
12772
|
+
show_widget_shadow: boolean;
|
|
12773
|
+
widget_border_weight: number;
|
|
12774
|
+
widget_corner_radius: number;
|
|
12775
|
+
} | undefined;
|
|
12776
|
+
colors?: {
|
|
12777
|
+
base_focus_color: string;
|
|
12778
|
+
base_hover_color: string;
|
|
12779
|
+
body_text: string;
|
|
12780
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12781
|
+
error: string;
|
|
12782
|
+
header: string;
|
|
12783
|
+
icons: string;
|
|
12784
|
+
input_background: string;
|
|
12785
|
+
input_border: string;
|
|
12786
|
+
input_filled_text: string;
|
|
12787
|
+
input_labels_placeholders: string;
|
|
12788
|
+
links_focused_components: string;
|
|
12789
|
+
primary_button: string;
|
|
12790
|
+
primary_button_label: string;
|
|
12791
|
+
secondary_button_border: string;
|
|
12792
|
+
secondary_button_label: string;
|
|
12793
|
+
success: string;
|
|
12794
|
+
widget_background: string;
|
|
12795
|
+
widget_border: string;
|
|
12796
|
+
} | undefined;
|
|
12797
|
+
displayName?: string | undefined;
|
|
12798
|
+
fonts?: {
|
|
12799
|
+
body_text: {
|
|
12800
|
+
bold: boolean;
|
|
12801
|
+
size: number;
|
|
12802
|
+
};
|
|
12803
|
+
buttons_text: {
|
|
12804
|
+
bold: boolean;
|
|
12805
|
+
size: number;
|
|
12806
|
+
};
|
|
12807
|
+
font_url: string;
|
|
12808
|
+
input_labels: {
|
|
12809
|
+
bold: boolean;
|
|
12810
|
+
size: number;
|
|
12811
|
+
};
|
|
12812
|
+
links: {
|
|
12813
|
+
bold: boolean;
|
|
12814
|
+
size: number;
|
|
12815
|
+
};
|
|
12816
|
+
links_style: "normal" | "underlined";
|
|
12817
|
+
reference_text_size: number;
|
|
12818
|
+
subtitle: {
|
|
12819
|
+
bold: boolean;
|
|
12820
|
+
size: number;
|
|
12821
|
+
};
|
|
12822
|
+
title: {
|
|
12823
|
+
bold: boolean;
|
|
12824
|
+
size: number;
|
|
12825
|
+
};
|
|
12826
|
+
} | undefined;
|
|
12827
|
+
page_background?: {
|
|
12828
|
+
background_color: string;
|
|
12829
|
+
background_image_url: string;
|
|
12830
|
+
page_layout: "center" | "left" | "right";
|
|
12831
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12832
|
+
} | undefined;
|
|
12833
|
+
widget?: {
|
|
12834
|
+
header_text_alignment: "center" | "left" | "right";
|
|
12835
|
+
logo_height: number;
|
|
12836
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12837
|
+
logo_url: string;
|
|
12838
|
+
social_buttons_layout: "bottom" | "top";
|
|
12839
|
+
} | undefined;
|
|
12840
|
+
themeId?: string | undefined;
|
|
12841
|
+
} | undefined;
|
|
12842
|
+
};
|
|
12843
|
+
};
|
|
12844
|
+
output: Response;
|
|
12845
|
+
outputFormat: "json";
|
|
12846
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
12847
|
+
};
|
|
12848
|
+
};
|
|
12735
12849
|
}, "/branding"> & import("hono/types").MergeSchemaPath<{
|
|
12736
12850
|
"/:triggerId/bindings": {
|
|
12737
12851
|
$get: {
|
|
@@ -12919,7 +13033,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12919
13033
|
logs: {
|
|
12920
13034
|
action_name: string;
|
|
12921
13035
|
lines: {
|
|
12922
|
-
level: "
|
|
13036
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12923
13037
|
message: string;
|
|
12924
13038
|
}[];
|
|
12925
13039
|
}[];
|
|
@@ -13586,7 +13700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13586
13700
|
args: import("hono/utils/types").JSONValue[];
|
|
13587
13701
|
}[];
|
|
13588
13702
|
logs: {
|
|
13589
|
-
level: "
|
|
13703
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13590
13704
|
message: string;
|
|
13591
13705
|
}[];
|
|
13592
13706
|
error?: string | undefined;
|
|
@@ -13884,7 +13998,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13884
13998
|
scope?: string | undefined;
|
|
13885
13999
|
grant_types?: string[] | undefined;
|
|
13886
14000
|
response_types?: string[] | undefined;
|
|
13887
|
-
token_endpoint_auth_method?: "
|
|
14001
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13888
14002
|
jwks_uri?: string | undefined;
|
|
13889
14003
|
jwks?: Record<string, unknown> | undefined;
|
|
13890
14004
|
software_id?: string | undefined;
|
|
@@ -13973,7 +14087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13973
14087
|
scope?: string | undefined;
|
|
13974
14088
|
grant_types?: string[] | undefined;
|
|
13975
14089
|
response_types?: string[] | undefined;
|
|
13976
|
-
token_endpoint_auth_method?: "
|
|
14090
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13977
14091
|
jwks_uri?: string | undefined;
|
|
13978
14092
|
jwks?: Record<string, unknown> | undefined;
|
|
13979
14093
|
software_id?: string | undefined;
|
|
@@ -14030,7 +14144,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14030
14144
|
client_id: string;
|
|
14031
14145
|
redirect_url?: string | undefined;
|
|
14032
14146
|
login_hint?: string | undefined;
|
|
14033
|
-
screen_hint?: "
|
|
14147
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14034
14148
|
};
|
|
14035
14149
|
};
|
|
14036
14150
|
output: {};
|
|
@@ -14042,7 +14156,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14042
14156
|
client_id: string;
|
|
14043
14157
|
redirect_url?: string | undefined;
|
|
14044
14158
|
login_hint?: string | undefined;
|
|
14045
|
-
screen_hint?: "
|
|
14159
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14046
14160
|
};
|
|
14047
14161
|
};
|
|
14048
14162
|
output: {
|
|
@@ -14320,18 +14434,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14320
14434
|
send: "code" | "link";
|
|
14321
14435
|
authParams: {
|
|
14322
14436
|
state?: string | undefined;
|
|
14437
|
+
username?: string | undefined;
|
|
14438
|
+
audience?: string | undefined;
|
|
14439
|
+
scope?: string | undefined;
|
|
14323
14440
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14324
14441
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14325
|
-
|
|
14326
|
-
|
|
14327
|
-
|
|
14442
|
+
prompt?: string | undefined;
|
|
14443
|
+
act_as?: string | undefined;
|
|
14444
|
+
redirect_uri?: string | undefined;
|
|
14328
14445
|
organization?: string | undefined;
|
|
14329
|
-
|
|
14446
|
+
nonce?: string | undefined;
|
|
14330
14447
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14331
|
-
|
|
14332
|
-
act_as?: string | undefined;
|
|
14333
|
-
audience?: string | undefined;
|
|
14334
|
-
prompt?: string | undefined;
|
|
14448
|
+
code_challenge?: string | undefined;
|
|
14335
14449
|
ui_locales?: string | undefined;
|
|
14336
14450
|
max_age?: number | undefined;
|
|
14337
14451
|
acr_values?: string | undefined;
|
|
@@ -14356,18 +14470,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14356
14470
|
send: "code" | "link";
|
|
14357
14471
|
authParams: {
|
|
14358
14472
|
state?: string | undefined;
|
|
14473
|
+
username?: string | undefined;
|
|
14474
|
+
audience?: string | undefined;
|
|
14475
|
+
scope?: string | undefined;
|
|
14359
14476
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14360
14477
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14478
|
+
prompt?: string | undefined;
|
|
14479
|
+
act_as?: string | undefined;
|
|
14480
|
+
redirect_uri?: string | undefined;
|
|
14364
14481
|
organization?: string | undefined;
|
|
14365
|
-
|
|
14482
|
+
nonce?: string | undefined;
|
|
14366
14483
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14367
|
-
|
|
14368
|
-
act_as?: string | undefined;
|
|
14369
|
-
audience?: string | undefined;
|
|
14370
|
-
prompt?: string | undefined;
|
|
14484
|
+
code_challenge?: string | undefined;
|
|
14371
14485
|
ui_locales?: string | undefined;
|
|
14372
14486
|
max_age?: number | undefined;
|
|
14373
14487
|
acr_values?: string | undefined;
|
|
@@ -14499,14 +14613,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14499
14613
|
input: {
|
|
14500
14614
|
form: {
|
|
14501
14615
|
token: string;
|
|
14502
|
-
token_type_hint?: "
|
|
14616
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14503
14617
|
client_id?: string | undefined;
|
|
14504
14618
|
client_secret?: string | undefined;
|
|
14505
14619
|
};
|
|
14506
14620
|
} & {
|
|
14507
14621
|
json: {
|
|
14508
14622
|
token: string;
|
|
14509
|
-
token_type_hint?: "
|
|
14623
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14510
14624
|
client_id?: string | undefined;
|
|
14511
14625
|
client_secret?: string | undefined;
|
|
14512
14626
|
};
|
|
@@ -14518,14 +14632,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14518
14632
|
input: {
|
|
14519
14633
|
form: {
|
|
14520
14634
|
token: string;
|
|
14521
|
-
token_type_hint?: "
|
|
14635
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14522
14636
|
client_id?: string | undefined;
|
|
14523
14637
|
client_secret?: string | undefined;
|
|
14524
14638
|
};
|
|
14525
14639
|
} & {
|
|
14526
14640
|
json: {
|
|
14527
14641
|
token: string;
|
|
14528
|
-
token_type_hint?: "
|
|
14642
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14529
14643
|
client_id?: string | undefined;
|
|
14530
14644
|
client_secret?: string | undefined;
|
|
14531
14645
|
};
|
|
@@ -14540,14 +14654,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14540
14654
|
input: {
|
|
14541
14655
|
form: {
|
|
14542
14656
|
token: string;
|
|
14543
|
-
token_type_hint?: "
|
|
14657
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14544
14658
|
client_id?: string | undefined;
|
|
14545
14659
|
client_secret?: string | undefined;
|
|
14546
14660
|
};
|
|
14547
14661
|
} & {
|
|
14548
14662
|
json: {
|
|
14549
14663
|
token: string;
|
|
14550
|
-
token_type_hint?: "
|
|
14664
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14551
14665
|
client_id?: string | undefined;
|
|
14552
14666
|
client_secret?: string | undefined;
|
|
14553
14667
|
};
|
|
@@ -14597,7 +14711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14597
14711
|
client_id: string;
|
|
14598
14712
|
username: string;
|
|
14599
14713
|
otp: string;
|
|
14600
|
-
realm: "
|
|
14714
|
+
realm: "sms" | "email";
|
|
14601
14715
|
} | {
|
|
14602
14716
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14603
14717
|
subject_token: string;
|
|
@@ -14644,7 +14758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14644
14758
|
client_id: string;
|
|
14645
14759
|
username: string;
|
|
14646
14760
|
otp: string;
|
|
14647
|
-
realm: "
|
|
14761
|
+
realm: "sms" | "email";
|
|
14648
14762
|
} | {
|
|
14649
14763
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14650
14764
|
subject_token: string;
|
|
@@ -14696,7 +14810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14696
14810
|
client_id: string;
|
|
14697
14811
|
username: string;
|
|
14698
14812
|
otp: string;
|
|
14699
|
-
realm: "
|
|
14813
|
+
realm: "sms" | "email";
|
|
14700
14814
|
} | {
|
|
14701
14815
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14702
14816
|
subject_token: string;
|
|
@@ -14743,7 +14857,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14743
14857
|
client_id: string;
|
|
14744
14858
|
username: string;
|
|
14745
14859
|
otp: string;
|
|
14746
|
-
realm: "
|
|
14860
|
+
realm: "sms" | "email";
|
|
14747
14861
|
} | {
|
|
14748
14862
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14749
14863
|
subject_token: string;
|
|
@@ -14803,7 +14917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14803
14917
|
client_id: string;
|
|
14804
14918
|
username: string;
|
|
14805
14919
|
otp: string;
|
|
14806
|
-
realm: "
|
|
14920
|
+
realm: "sms" | "email";
|
|
14807
14921
|
} | {
|
|
14808
14922
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14809
14923
|
subject_token: string;
|
|
@@ -14850,7 +14964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14850
14964
|
client_id: string;
|
|
14851
14965
|
username: string;
|
|
14852
14966
|
otp: string;
|
|
14853
|
-
realm: "
|
|
14967
|
+
realm: "sms" | "email";
|
|
14854
14968
|
} | {
|
|
14855
14969
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14856
14970
|
subject_token: string;
|
|
@@ -14905,7 +15019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14905
15019
|
client_id: string;
|
|
14906
15020
|
username: string;
|
|
14907
15021
|
otp: string;
|
|
14908
|
-
realm: "
|
|
15022
|
+
realm: "sms" | "email";
|
|
14909
15023
|
} | {
|
|
14910
15024
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14911
15025
|
subject_token: string;
|
|
@@ -14952,7 +15066,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14952
15066
|
client_id: string;
|
|
14953
15067
|
username: string;
|
|
14954
15068
|
otp: string;
|
|
14955
|
-
realm: "
|
|
15069
|
+
realm: "sms" | "email";
|
|
14956
15070
|
} | {
|
|
14957
15071
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14958
15072
|
subject_token: string;
|
|
@@ -15007,7 +15121,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15007
15121
|
client_id: string;
|
|
15008
15122
|
username: string;
|
|
15009
15123
|
otp: string;
|
|
15010
|
-
realm: "
|
|
15124
|
+
realm: "sms" | "email";
|
|
15011
15125
|
} | {
|
|
15012
15126
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15013
15127
|
subject_token: string;
|
|
@@ -15054,7 +15168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15054
15168
|
client_id: string;
|
|
15055
15169
|
username: string;
|
|
15056
15170
|
otp: string;
|
|
15057
|
-
realm: "
|
|
15171
|
+
realm: "sms" | "email";
|
|
15058
15172
|
} | {
|
|
15059
15173
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15060
15174
|
subject_token: string;
|
|
@@ -15895,7 +16009,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15895
16009
|
} & {
|
|
15896
16010
|
form: {
|
|
15897
16011
|
username: string;
|
|
15898
|
-
login_selection?: "
|
|
16012
|
+
login_selection?: "password" | "code" | undefined;
|
|
15899
16013
|
};
|
|
15900
16014
|
};
|
|
15901
16015
|
output: {};
|
|
@@ -15909,7 +16023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15909
16023
|
} & {
|
|
15910
16024
|
form: {
|
|
15911
16025
|
username: string;
|
|
15912
|
-
login_selection?: "
|
|
16026
|
+
login_selection?: "password" | "code" | undefined;
|
|
15913
16027
|
};
|
|
15914
16028
|
};
|
|
15915
16029
|
output: {};
|
|
@@ -16274,7 +16388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16274
16388
|
$get: {
|
|
16275
16389
|
input: {
|
|
16276
16390
|
param: {
|
|
16277
|
-
screen: "signup" | "
|
|
16391
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
16278
16392
|
};
|
|
16279
16393
|
} & {
|
|
16280
16394
|
query: {
|
|
@@ -16290,7 +16404,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16290
16404
|
} | {
|
|
16291
16405
|
input: {
|
|
16292
16406
|
param: {
|
|
16293
|
-
screen: "signup" | "
|
|
16407
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
16294
16408
|
};
|
|
16295
16409
|
} & {
|
|
16296
16410
|
query: {
|
|
@@ -16306,7 +16420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16306
16420
|
} | {
|
|
16307
16421
|
input: {
|
|
16308
16422
|
param: {
|
|
16309
|
-
screen: "signup" | "
|
|
16423
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
16310
16424
|
};
|
|
16311
16425
|
} & {
|
|
16312
16426
|
query: {
|
|
@@ -16326,7 +16440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16326
16440
|
$post: {
|
|
16327
16441
|
input: {
|
|
16328
16442
|
param: {
|
|
16329
|
-
screen: "
|
|
16443
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "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";
|
|
16330
16444
|
};
|
|
16331
16445
|
} & {
|
|
16332
16446
|
query: {
|
|
@@ -16344,7 +16458,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16344
16458
|
} | {
|
|
16345
16459
|
input: {
|
|
16346
16460
|
param: {
|
|
16347
|
-
screen: "
|
|
16461
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "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";
|
|
16348
16462
|
};
|
|
16349
16463
|
} & {
|
|
16350
16464
|
query: {
|
|
@@ -16362,7 +16476,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16362
16476
|
} | {
|
|
16363
16477
|
input: {
|
|
16364
16478
|
param: {
|
|
16365
|
-
screen: "
|
|
16479
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "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";
|
|
16366
16480
|
};
|
|
16367
16481
|
} & {
|
|
16368
16482
|
query: {
|