authhero 8.0.0 → 8.1.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/authhero.cjs +105 -105
- package/dist/authhero.d.ts +269 -209
- package/dist/authhero.mjs +11216 -11105
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/client-bundle.d.ts +15 -1
- package/dist/types/helpers/compose-auth-data.d.ts +44 -0
- package/dist/types/helpers/prefetch-client-bundle.d.ts +33 -0
- package/dist/types/hooks/webhooks.d.ts +14 -0
- package/dist/types/index.d.ts +269 -209
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +34 -34
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +60 -0
- package/dist/types/routes/management-api/index.d.ts +229 -169
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- 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/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
84
|
};
|
|
85
85
|
} & {
|
|
86
86
|
json: {
|
|
87
|
-
type: "
|
|
87
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
88
88
|
phone_number?: string | undefined;
|
|
89
89
|
totp_secret?: string | undefined;
|
|
90
90
|
credential_id?: string | undefined;
|
|
@@ -224,7 +224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
output: {
|
|
227
|
-
name: "
|
|
227
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
228
228
|
enabled: boolean;
|
|
229
229
|
trial_expired?: boolean | undefined;
|
|
230
230
|
}[];
|
|
@@ -379,7 +379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
379
379
|
$get: {
|
|
380
380
|
input: {
|
|
381
381
|
param: {
|
|
382
|
-
factor_name: "
|
|
382
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
383
383
|
};
|
|
384
384
|
} & {
|
|
385
385
|
header: {
|
|
@@ -387,7 +387,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
387
387
|
};
|
|
388
388
|
};
|
|
389
389
|
output: {
|
|
390
|
-
name: "
|
|
390
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
391
391
|
enabled: boolean;
|
|
392
392
|
trial_expired?: boolean | undefined;
|
|
393
393
|
};
|
|
@@ -400,7 +400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
400
400
|
$put: {
|
|
401
401
|
input: {
|
|
402
402
|
param: {
|
|
403
|
-
factor_name: "
|
|
403
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
404
404
|
};
|
|
405
405
|
} & {
|
|
406
406
|
header: {
|
|
@@ -412,7 +412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
output: {
|
|
415
|
-
name: "
|
|
415
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
enabled: boolean;
|
|
417
417
|
trial_expired?: boolean | undefined;
|
|
418
418
|
};
|
|
@@ -1157,9 +1157,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1157
1157
|
invitee: {
|
|
1158
1158
|
email?: string | undefined;
|
|
1159
1159
|
};
|
|
1160
|
-
id?: string | undefined;
|
|
1161
1160
|
app_metadata?: Record<string, any> | undefined;
|
|
1162
1161
|
user_metadata?: Record<string, any> | undefined;
|
|
1162
|
+
id?: string | undefined;
|
|
1163
1163
|
connection_id?: string | undefined;
|
|
1164
1164
|
roles?: string[] | undefined;
|
|
1165
1165
|
ttl_sec?: number | undefined;
|
|
@@ -2012,7 +2012,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2012
2012
|
type: "REDIRECT";
|
|
2013
2013
|
action: "REDIRECT_USER";
|
|
2014
2014
|
params: {
|
|
2015
|
-
target: "custom" | "
|
|
2015
|
+
target: "custom" | "account" | "change-email";
|
|
2016
2016
|
custom_url?: string | undefined;
|
|
2017
2017
|
};
|
|
2018
2018
|
alias?: string | undefined;
|
|
@@ -2065,7 +2065,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2065
2065
|
type: "REDIRECT";
|
|
2066
2066
|
action: "REDIRECT_USER";
|
|
2067
2067
|
params: {
|
|
2068
|
-
target: "custom" | "
|
|
2068
|
+
target: "custom" | "account" | "change-email";
|
|
2069
2069
|
custom_url?: string | undefined;
|
|
2070
2070
|
};
|
|
2071
2071
|
alias?: string | undefined;
|
|
@@ -2133,7 +2133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2133
2133
|
type: "REDIRECT";
|
|
2134
2134
|
action: "REDIRECT_USER";
|
|
2135
2135
|
params: {
|
|
2136
|
-
target: "custom" | "
|
|
2136
|
+
target: "custom" | "account" | "change-email";
|
|
2137
2137
|
custom_url?: string | undefined;
|
|
2138
2138
|
};
|
|
2139
2139
|
alias?: string | undefined;
|
|
@@ -2214,7 +2214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2214
2214
|
type: "REDIRECT";
|
|
2215
2215
|
action: "REDIRECT_USER";
|
|
2216
2216
|
params: {
|
|
2217
|
-
target: "custom" | "
|
|
2217
|
+
target: "custom" | "account" | "change-email";
|
|
2218
2218
|
custom_url?: string | undefined;
|
|
2219
2219
|
};
|
|
2220
2220
|
alias?: string | undefined;
|
|
@@ -2262,7 +2262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2262
2262
|
type: "REDIRECT";
|
|
2263
2263
|
action: "REDIRECT_USER";
|
|
2264
2264
|
params: {
|
|
2265
|
-
target: "custom" | "
|
|
2265
|
+
target: "custom" | "account" | "change-email";
|
|
2266
2266
|
custom_url?: string | undefined;
|
|
2267
2267
|
};
|
|
2268
2268
|
alias?: string | undefined;
|
|
@@ -2322,7 +2322,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2322
2322
|
type: "REDIRECT";
|
|
2323
2323
|
action: "REDIRECT_USER";
|
|
2324
2324
|
params: {
|
|
2325
|
-
target: "custom" | "
|
|
2325
|
+
target: "custom" | "account" | "change-email";
|
|
2326
2326
|
custom_url?: string | undefined;
|
|
2327
2327
|
};
|
|
2328
2328
|
alias?: string | undefined;
|
|
@@ -2370,7 +2370,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2370
2370
|
type: "REDIRECT";
|
|
2371
2371
|
action: "REDIRECT_USER";
|
|
2372
2372
|
params: {
|
|
2373
|
-
target: "custom" | "
|
|
2373
|
+
target: "custom" | "account" | "change-email";
|
|
2374
2374
|
custom_url?: string | undefined;
|
|
2375
2375
|
};
|
|
2376
2376
|
alias?: string | undefined;
|
|
@@ -2588,7 +2588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2588
2588
|
hint?: string | undefined;
|
|
2589
2589
|
messages?: {
|
|
2590
2590
|
text: string;
|
|
2591
|
-
type: "
|
|
2591
|
+
type: "success" | "error" | "info" | "warning";
|
|
2592
2592
|
id?: number | undefined;
|
|
2593
2593
|
}[] | undefined;
|
|
2594
2594
|
required?: boolean | undefined;
|
|
@@ -2606,7 +2606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2606
2606
|
hint?: string | undefined;
|
|
2607
2607
|
messages?: {
|
|
2608
2608
|
text: string;
|
|
2609
|
-
type: "
|
|
2609
|
+
type: "success" | "error" | "info" | "warning";
|
|
2610
2610
|
id?: number | undefined;
|
|
2611
2611
|
}[] | undefined;
|
|
2612
2612
|
required?: boolean | undefined;
|
|
@@ -2630,7 +2630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2630
2630
|
hint?: string | undefined;
|
|
2631
2631
|
messages?: {
|
|
2632
2632
|
text: string;
|
|
2633
|
-
type: "
|
|
2633
|
+
type: "success" | "error" | "info" | "warning";
|
|
2634
2634
|
id?: number | undefined;
|
|
2635
2635
|
}[] | undefined;
|
|
2636
2636
|
required?: boolean | undefined;
|
|
@@ -2654,7 +2654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2654
2654
|
hint?: string | undefined;
|
|
2655
2655
|
messages?: {
|
|
2656
2656
|
text: string;
|
|
2657
|
-
type: "
|
|
2657
|
+
type: "success" | "error" | "info" | "warning";
|
|
2658
2658
|
id?: number | undefined;
|
|
2659
2659
|
}[] | undefined;
|
|
2660
2660
|
required?: boolean | undefined;
|
|
@@ -2683,7 +2683,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2683
2683
|
hint?: string | undefined;
|
|
2684
2684
|
messages?: {
|
|
2685
2685
|
text: string;
|
|
2686
|
-
type: "
|
|
2686
|
+
type: "success" | "error" | "info" | "warning";
|
|
2687
2687
|
id?: number | undefined;
|
|
2688
2688
|
}[] | undefined;
|
|
2689
2689
|
required?: boolean | undefined;
|
|
@@ -2698,7 +2698,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2698
2698
|
hint?: string | undefined;
|
|
2699
2699
|
messages?: {
|
|
2700
2700
|
text: string;
|
|
2701
|
-
type: "
|
|
2701
|
+
type: "success" | "error" | "info" | "warning";
|
|
2702
2702
|
id?: number | undefined;
|
|
2703
2703
|
}[] | undefined;
|
|
2704
2704
|
required?: boolean | undefined;
|
|
@@ -2719,7 +2719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2719
2719
|
hint?: string | undefined;
|
|
2720
2720
|
messages?: {
|
|
2721
2721
|
text: string;
|
|
2722
|
-
type: "
|
|
2722
|
+
type: "success" | "error" | "info" | "warning";
|
|
2723
2723
|
id?: number | undefined;
|
|
2724
2724
|
}[] | undefined;
|
|
2725
2725
|
required?: boolean | undefined;
|
|
@@ -2744,7 +2744,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2744
2744
|
hint?: string | undefined;
|
|
2745
2745
|
messages?: {
|
|
2746
2746
|
text: string;
|
|
2747
|
-
type: "
|
|
2747
|
+
type: "success" | "error" | "info" | "warning";
|
|
2748
2748
|
id?: number | undefined;
|
|
2749
2749
|
}[] | undefined;
|
|
2750
2750
|
required?: boolean | undefined;
|
|
@@ -2763,7 +2763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2763
2763
|
hint?: string | undefined;
|
|
2764
2764
|
messages?: {
|
|
2765
2765
|
text: string;
|
|
2766
|
-
type: "
|
|
2766
|
+
type: "success" | "error" | "info" | "warning";
|
|
2767
2767
|
id?: number | undefined;
|
|
2768
2768
|
}[] | undefined;
|
|
2769
2769
|
required?: boolean | undefined;
|
|
@@ -2783,7 +2783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2783
2783
|
hint?: string | undefined;
|
|
2784
2784
|
messages?: {
|
|
2785
2785
|
text: string;
|
|
2786
|
-
type: "
|
|
2786
|
+
type: "success" | "error" | "info" | "warning";
|
|
2787
2787
|
id?: number | undefined;
|
|
2788
2788
|
}[] | undefined;
|
|
2789
2789
|
required?: boolean | undefined;
|
|
@@ -2802,7 +2802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2802
2802
|
hint?: string | undefined;
|
|
2803
2803
|
messages?: {
|
|
2804
2804
|
text: string;
|
|
2805
|
-
type: "
|
|
2805
|
+
type: "success" | "error" | "info" | "warning";
|
|
2806
2806
|
id?: number | undefined;
|
|
2807
2807
|
}[] | undefined;
|
|
2808
2808
|
required?: boolean | undefined;
|
|
@@ -2824,7 +2824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2824
2824
|
hint?: string | undefined;
|
|
2825
2825
|
messages?: {
|
|
2826
2826
|
text: string;
|
|
2827
|
-
type: "
|
|
2827
|
+
type: "success" | "error" | "info" | "warning";
|
|
2828
2828
|
id?: number | undefined;
|
|
2829
2829
|
}[] | undefined;
|
|
2830
2830
|
required?: boolean | undefined;
|
|
@@ -2846,7 +2846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2846
2846
|
hint?: string | undefined;
|
|
2847
2847
|
messages?: {
|
|
2848
2848
|
text: string;
|
|
2849
|
-
type: "
|
|
2849
|
+
type: "success" | "error" | "info" | "warning";
|
|
2850
2850
|
id?: number | undefined;
|
|
2851
2851
|
}[] | undefined;
|
|
2852
2852
|
required?: boolean | undefined;
|
|
@@ -2865,7 +2865,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2865
2865
|
hint?: string | undefined;
|
|
2866
2866
|
messages?: {
|
|
2867
2867
|
text: string;
|
|
2868
|
-
type: "
|
|
2868
|
+
type: "success" | "error" | "info" | "warning";
|
|
2869
2869
|
id?: number | undefined;
|
|
2870
2870
|
}[] | undefined;
|
|
2871
2871
|
required?: boolean | undefined;
|
|
@@ -2890,7 +2890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2890
2890
|
hint?: string | undefined;
|
|
2891
2891
|
messages?: {
|
|
2892
2892
|
text: string;
|
|
2893
|
-
type: "
|
|
2893
|
+
type: "success" | "error" | "info" | "warning";
|
|
2894
2894
|
id?: number | undefined;
|
|
2895
2895
|
}[] | undefined;
|
|
2896
2896
|
required?: boolean | undefined;
|
|
@@ -2911,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2911
2911
|
hint?: string | undefined;
|
|
2912
2912
|
messages?: {
|
|
2913
2913
|
text: string;
|
|
2914
|
-
type: "
|
|
2914
|
+
type: "success" | "error" | "info" | "warning";
|
|
2915
2915
|
id?: number | undefined;
|
|
2916
2916
|
}[] | undefined;
|
|
2917
2917
|
required?: boolean | undefined;
|
|
@@ -2932,7 +2932,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2932
2932
|
hint?: string | undefined;
|
|
2933
2933
|
messages?: {
|
|
2934
2934
|
text: string;
|
|
2935
|
-
type: "
|
|
2935
|
+
type: "success" | "error" | "info" | "warning";
|
|
2936
2936
|
id?: number | undefined;
|
|
2937
2937
|
}[] | undefined;
|
|
2938
2938
|
required?: boolean | undefined;
|
|
@@ -3165,7 +3165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3165
3165
|
hint?: string | undefined;
|
|
3166
3166
|
messages?: {
|
|
3167
3167
|
text: string;
|
|
3168
|
-
type: "
|
|
3168
|
+
type: "success" | "error" | "info" | "warning";
|
|
3169
3169
|
id?: number | undefined;
|
|
3170
3170
|
}[] | undefined;
|
|
3171
3171
|
required?: boolean | undefined;
|
|
@@ -3183,7 +3183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3183
3183
|
hint?: string | undefined;
|
|
3184
3184
|
messages?: {
|
|
3185
3185
|
text: string;
|
|
3186
|
-
type: "
|
|
3186
|
+
type: "success" | "error" | "info" | "warning";
|
|
3187
3187
|
id?: number | undefined;
|
|
3188
3188
|
}[] | undefined;
|
|
3189
3189
|
required?: boolean | undefined;
|
|
@@ -3207,7 +3207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3207
3207
|
hint?: string | undefined;
|
|
3208
3208
|
messages?: {
|
|
3209
3209
|
text: string;
|
|
3210
|
-
type: "
|
|
3210
|
+
type: "success" | "error" | "info" | "warning";
|
|
3211
3211
|
id?: number | undefined;
|
|
3212
3212
|
}[] | undefined;
|
|
3213
3213
|
required?: boolean | undefined;
|
|
@@ -3231,7 +3231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3231
3231
|
hint?: string | undefined;
|
|
3232
3232
|
messages?: {
|
|
3233
3233
|
text: string;
|
|
3234
|
-
type: "
|
|
3234
|
+
type: "success" | "error" | "info" | "warning";
|
|
3235
3235
|
id?: number | undefined;
|
|
3236
3236
|
}[] | undefined;
|
|
3237
3237
|
required?: boolean | undefined;
|
|
@@ -3260,7 +3260,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3260
3260
|
hint?: string | undefined;
|
|
3261
3261
|
messages?: {
|
|
3262
3262
|
text: string;
|
|
3263
|
-
type: "
|
|
3263
|
+
type: "success" | "error" | "info" | "warning";
|
|
3264
3264
|
id?: number | undefined;
|
|
3265
3265
|
}[] | undefined;
|
|
3266
3266
|
required?: boolean | undefined;
|
|
@@ -3275,7 +3275,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3275
3275
|
hint?: string | undefined;
|
|
3276
3276
|
messages?: {
|
|
3277
3277
|
text: string;
|
|
3278
|
-
type: "
|
|
3278
|
+
type: "success" | "error" | "info" | "warning";
|
|
3279
3279
|
id?: number | undefined;
|
|
3280
3280
|
}[] | undefined;
|
|
3281
3281
|
required?: boolean | undefined;
|
|
@@ -3296,7 +3296,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3296
3296
|
hint?: string | undefined;
|
|
3297
3297
|
messages?: {
|
|
3298
3298
|
text: string;
|
|
3299
|
-
type: "
|
|
3299
|
+
type: "success" | "error" | "info" | "warning";
|
|
3300
3300
|
id?: number | undefined;
|
|
3301
3301
|
}[] | undefined;
|
|
3302
3302
|
required?: boolean | undefined;
|
|
@@ -3321,7 +3321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3321
3321
|
hint?: string | undefined;
|
|
3322
3322
|
messages?: {
|
|
3323
3323
|
text: string;
|
|
3324
|
-
type: "
|
|
3324
|
+
type: "success" | "error" | "info" | "warning";
|
|
3325
3325
|
id?: number | undefined;
|
|
3326
3326
|
}[] | undefined;
|
|
3327
3327
|
required?: boolean | undefined;
|
|
@@ -3340,7 +3340,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3340
3340
|
hint?: string | undefined;
|
|
3341
3341
|
messages?: {
|
|
3342
3342
|
text: string;
|
|
3343
|
-
type: "
|
|
3343
|
+
type: "success" | "error" | "info" | "warning";
|
|
3344
3344
|
id?: number | undefined;
|
|
3345
3345
|
}[] | undefined;
|
|
3346
3346
|
required?: boolean | undefined;
|
|
@@ -3360,7 +3360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3360
3360
|
hint?: string | undefined;
|
|
3361
3361
|
messages?: {
|
|
3362
3362
|
text: string;
|
|
3363
|
-
type: "
|
|
3363
|
+
type: "success" | "error" | "info" | "warning";
|
|
3364
3364
|
id?: number | undefined;
|
|
3365
3365
|
}[] | undefined;
|
|
3366
3366
|
required?: boolean | undefined;
|
|
@@ -3379,7 +3379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3379
3379
|
hint?: string | undefined;
|
|
3380
3380
|
messages?: {
|
|
3381
3381
|
text: string;
|
|
3382
|
-
type: "
|
|
3382
|
+
type: "success" | "error" | "info" | "warning";
|
|
3383
3383
|
id?: number | undefined;
|
|
3384
3384
|
}[] | undefined;
|
|
3385
3385
|
required?: boolean | undefined;
|
|
@@ -3401,7 +3401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3401
3401
|
hint?: string | undefined;
|
|
3402
3402
|
messages?: {
|
|
3403
3403
|
text: string;
|
|
3404
|
-
type: "
|
|
3404
|
+
type: "success" | "error" | "info" | "warning";
|
|
3405
3405
|
id?: number | undefined;
|
|
3406
3406
|
}[] | undefined;
|
|
3407
3407
|
required?: boolean | undefined;
|
|
@@ -3423,7 +3423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3423
3423
|
hint?: string | undefined;
|
|
3424
3424
|
messages?: {
|
|
3425
3425
|
text: string;
|
|
3426
|
-
type: "
|
|
3426
|
+
type: "success" | "error" | "info" | "warning";
|
|
3427
3427
|
id?: number | undefined;
|
|
3428
3428
|
}[] | undefined;
|
|
3429
3429
|
required?: boolean | undefined;
|
|
@@ -3442,7 +3442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3442
3442
|
hint?: string | undefined;
|
|
3443
3443
|
messages?: {
|
|
3444
3444
|
text: string;
|
|
3445
|
-
type: "
|
|
3445
|
+
type: "success" | "error" | "info" | "warning";
|
|
3446
3446
|
id?: number | undefined;
|
|
3447
3447
|
}[] | undefined;
|
|
3448
3448
|
required?: boolean | undefined;
|
|
@@ -3467,7 +3467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3467
3467
|
hint?: string | undefined;
|
|
3468
3468
|
messages?: {
|
|
3469
3469
|
text: string;
|
|
3470
|
-
type: "
|
|
3470
|
+
type: "success" | "error" | "info" | "warning";
|
|
3471
3471
|
id?: number | undefined;
|
|
3472
3472
|
}[] | undefined;
|
|
3473
3473
|
required?: boolean | undefined;
|
|
@@ -3488,7 +3488,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3488
3488
|
hint?: string | undefined;
|
|
3489
3489
|
messages?: {
|
|
3490
3490
|
text: string;
|
|
3491
|
-
type: "
|
|
3491
|
+
type: "success" | "error" | "info" | "warning";
|
|
3492
3492
|
id?: number | undefined;
|
|
3493
3493
|
}[] | undefined;
|
|
3494
3494
|
required?: boolean | undefined;
|
|
@@ -3509,7 +3509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3509
3509
|
hint?: string | undefined;
|
|
3510
3510
|
messages?: {
|
|
3511
3511
|
text: string;
|
|
3512
|
-
type: "
|
|
3512
|
+
type: "success" | "error" | "info" | "warning";
|
|
3513
3513
|
id?: number | undefined;
|
|
3514
3514
|
}[] | undefined;
|
|
3515
3515
|
required?: boolean | undefined;
|
|
@@ -3757,7 +3757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3757
3757
|
hint?: string | undefined;
|
|
3758
3758
|
messages?: {
|
|
3759
3759
|
text: string;
|
|
3760
|
-
type: "
|
|
3760
|
+
type: "success" | "error" | "info" | "warning";
|
|
3761
3761
|
id?: number | undefined;
|
|
3762
3762
|
}[] | undefined;
|
|
3763
3763
|
required?: boolean | undefined;
|
|
@@ -3775,7 +3775,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3775
3775
|
hint?: string | undefined;
|
|
3776
3776
|
messages?: {
|
|
3777
3777
|
text: string;
|
|
3778
|
-
type: "
|
|
3778
|
+
type: "success" | "error" | "info" | "warning";
|
|
3779
3779
|
id?: number | undefined;
|
|
3780
3780
|
}[] | undefined;
|
|
3781
3781
|
required?: boolean | undefined;
|
|
@@ -3799,7 +3799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3799
3799
|
hint?: string | undefined;
|
|
3800
3800
|
messages?: {
|
|
3801
3801
|
text: string;
|
|
3802
|
-
type: "
|
|
3802
|
+
type: "success" | "error" | "info" | "warning";
|
|
3803
3803
|
id?: number | undefined;
|
|
3804
3804
|
}[] | undefined;
|
|
3805
3805
|
required?: boolean | undefined;
|
|
@@ -3823,7 +3823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3823
3823
|
hint?: string | undefined;
|
|
3824
3824
|
messages?: {
|
|
3825
3825
|
text: string;
|
|
3826
|
-
type: "
|
|
3826
|
+
type: "success" | "error" | "info" | "warning";
|
|
3827
3827
|
id?: number | undefined;
|
|
3828
3828
|
}[] | undefined;
|
|
3829
3829
|
required?: boolean | undefined;
|
|
@@ -3852,7 +3852,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3852
3852
|
hint?: string | undefined;
|
|
3853
3853
|
messages?: {
|
|
3854
3854
|
text: string;
|
|
3855
|
-
type: "
|
|
3855
|
+
type: "success" | "error" | "info" | "warning";
|
|
3856
3856
|
id?: number | undefined;
|
|
3857
3857
|
}[] | undefined;
|
|
3858
3858
|
required?: boolean | undefined;
|
|
@@ -3867,7 +3867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3867
3867
|
hint?: string | undefined;
|
|
3868
3868
|
messages?: {
|
|
3869
3869
|
text: string;
|
|
3870
|
-
type: "
|
|
3870
|
+
type: "success" | "error" | "info" | "warning";
|
|
3871
3871
|
id?: number | undefined;
|
|
3872
3872
|
}[] | undefined;
|
|
3873
3873
|
required?: boolean | undefined;
|
|
@@ -3888,7 +3888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3888
3888
|
hint?: string | undefined;
|
|
3889
3889
|
messages?: {
|
|
3890
3890
|
text: string;
|
|
3891
|
-
type: "
|
|
3891
|
+
type: "success" | "error" | "info" | "warning";
|
|
3892
3892
|
id?: number | undefined;
|
|
3893
3893
|
}[] | undefined;
|
|
3894
3894
|
required?: boolean | undefined;
|
|
@@ -3913,7 +3913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3913
3913
|
hint?: string | undefined;
|
|
3914
3914
|
messages?: {
|
|
3915
3915
|
text: string;
|
|
3916
|
-
type: "
|
|
3916
|
+
type: "success" | "error" | "info" | "warning";
|
|
3917
3917
|
id?: number | undefined;
|
|
3918
3918
|
}[] | undefined;
|
|
3919
3919
|
required?: boolean | undefined;
|
|
@@ -3932,7 +3932,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3932
3932
|
hint?: string | undefined;
|
|
3933
3933
|
messages?: {
|
|
3934
3934
|
text: string;
|
|
3935
|
-
type: "
|
|
3935
|
+
type: "success" | "error" | "info" | "warning";
|
|
3936
3936
|
id?: number | undefined;
|
|
3937
3937
|
}[] | undefined;
|
|
3938
3938
|
required?: boolean | undefined;
|
|
@@ -3952,7 +3952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3952
3952
|
hint?: string | undefined;
|
|
3953
3953
|
messages?: {
|
|
3954
3954
|
text: string;
|
|
3955
|
-
type: "
|
|
3955
|
+
type: "success" | "error" | "info" | "warning";
|
|
3956
3956
|
id?: number | undefined;
|
|
3957
3957
|
}[] | undefined;
|
|
3958
3958
|
required?: boolean | undefined;
|
|
@@ -3971,7 +3971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3971
3971
|
hint?: string | undefined;
|
|
3972
3972
|
messages?: {
|
|
3973
3973
|
text: string;
|
|
3974
|
-
type: "
|
|
3974
|
+
type: "success" | "error" | "info" | "warning";
|
|
3975
3975
|
id?: number | undefined;
|
|
3976
3976
|
}[] | undefined;
|
|
3977
3977
|
required?: boolean | undefined;
|
|
@@ -3993,7 +3993,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3993
3993
|
hint?: string | undefined;
|
|
3994
3994
|
messages?: {
|
|
3995
3995
|
text: string;
|
|
3996
|
-
type: "
|
|
3996
|
+
type: "success" | "error" | "info" | "warning";
|
|
3997
3997
|
id?: number | undefined;
|
|
3998
3998
|
}[] | undefined;
|
|
3999
3999
|
required?: boolean | undefined;
|
|
@@ -4015,7 +4015,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4015
4015
|
hint?: string | undefined;
|
|
4016
4016
|
messages?: {
|
|
4017
4017
|
text: string;
|
|
4018
|
-
type: "
|
|
4018
|
+
type: "success" | "error" | "info" | "warning";
|
|
4019
4019
|
id?: number | undefined;
|
|
4020
4020
|
}[] | undefined;
|
|
4021
4021
|
required?: boolean | undefined;
|
|
@@ -4034,7 +4034,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4034
4034
|
hint?: string | undefined;
|
|
4035
4035
|
messages?: {
|
|
4036
4036
|
text: string;
|
|
4037
|
-
type: "
|
|
4037
|
+
type: "success" | "error" | "info" | "warning";
|
|
4038
4038
|
id?: number | undefined;
|
|
4039
4039
|
}[] | undefined;
|
|
4040
4040
|
required?: boolean | undefined;
|
|
@@ -4059,7 +4059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4059
4059
|
hint?: string | undefined;
|
|
4060
4060
|
messages?: {
|
|
4061
4061
|
text: string;
|
|
4062
|
-
type: "
|
|
4062
|
+
type: "success" | "error" | "info" | "warning";
|
|
4063
4063
|
id?: number | undefined;
|
|
4064
4064
|
}[] | undefined;
|
|
4065
4065
|
required?: boolean | undefined;
|
|
@@ -4080,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4080
4080
|
hint?: string | undefined;
|
|
4081
4081
|
messages?: {
|
|
4082
4082
|
text: string;
|
|
4083
|
-
type: "
|
|
4083
|
+
type: "success" | "error" | "info" | "warning";
|
|
4084
4084
|
id?: number | undefined;
|
|
4085
4085
|
}[] | undefined;
|
|
4086
4086
|
required?: boolean | undefined;
|
|
@@ -4101,7 +4101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4101
4101
|
hint?: string | undefined;
|
|
4102
4102
|
messages?: {
|
|
4103
4103
|
text: string;
|
|
4104
|
-
type: "
|
|
4104
|
+
type: "success" | "error" | "info" | "warning";
|
|
4105
4105
|
id?: number | undefined;
|
|
4106
4106
|
}[] | undefined;
|
|
4107
4107
|
required?: boolean | undefined;
|
|
@@ -4355,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4355
4355
|
hint?: string | undefined;
|
|
4356
4356
|
messages?: {
|
|
4357
4357
|
text: string;
|
|
4358
|
-
type: "
|
|
4358
|
+
type: "success" | "error" | "info" | "warning";
|
|
4359
4359
|
id?: number | undefined;
|
|
4360
4360
|
}[] | undefined;
|
|
4361
4361
|
required?: boolean | undefined;
|
|
@@ -4373,7 +4373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4373
4373
|
hint?: string | undefined;
|
|
4374
4374
|
messages?: {
|
|
4375
4375
|
text: string;
|
|
4376
|
-
type: "
|
|
4376
|
+
type: "success" | "error" | "info" | "warning";
|
|
4377
4377
|
id?: number | undefined;
|
|
4378
4378
|
}[] | undefined;
|
|
4379
4379
|
required?: boolean | undefined;
|
|
@@ -4397,7 +4397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4397
4397
|
hint?: string | undefined;
|
|
4398
4398
|
messages?: {
|
|
4399
4399
|
text: string;
|
|
4400
|
-
type: "
|
|
4400
|
+
type: "success" | "error" | "info" | "warning";
|
|
4401
4401
|
id?: number | undefined;
|
|
4402
4402
|
}[] | undefined;
|
|
4403
4403
|
required?: boolean | undefined;
|
|
@@ -4421,7 +4421,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4421
4421
|
hint?: string | undefined;
|
|
4422
4422
|
messages?: {
|
|
4423
4423
|
text: string;
|
|
4424
|
-
type: "
|
|
4424
|
+
type: "success" | "error" | "info" | "warning";
|
|
4425
4425
|
id?: number | undefined;
|
|
4426
4426
|
}[] | undefined;
|
|
4427
4427
|
required?: boolean | undefined;
|
|
@@ -4446,7 +4446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4446
4446
|
hint?: string | undefined;
|
|
4447
4447
|
messages?: {
|
|
4448
4448
|
text: string;
|
|
4449
|
-
type: "
|
|
4449
|
+
type: "success" | "error" | "info" | "warning";
|
|
4450
4450
|
id?: number | undefined;
|
|
4451
4451
|
}[] | undefined;
|
|
4452
4452
|
required?: boolean | undefined;
|
|
@@ -4461,7 +4461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4461
4461
|
hint?: string | undefined;
|
|
4462
4462
|
messages?: {
|
|
4463
4463
|
text: string;
|
|
4464
|
-
type: "
|
|
4464
|
+
type: "success" | "error" | "info" | "warning";
|
|
4465
4465
|
id?: number | undefined;
|
|
4466
4466
|
}[] | undefined;
|
|
4467
4467
|
required?: boolean | undefined;
|
|
@@ -4482,7 +4482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4482
4482
|
hint?: string | undefined;
|
|
4483
4483
|
messages?: {
|
|
4484
4484
|
text: string;
|
|
4485
|
-
type: "
|
|
4485
|
+
type: "success" | "error" | "info" | "warning";
|
|
4486
4486
|
id?: number | undefined;
|
|
4487
4487
|
}[] | undefined;
|
|
4488
4488
|
required?: boolean | undefined;
|
|
@@ -4507,7 +4507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4507
4507
|
hint?: string | undefined;
|
|
4508
4508
|
messages?: {
|
|
4509
4509
|
text: string;
|
|
4510
|
-
type: "
|
|
4510
|
+
type: "success" | "error" | "info" | "warning";
|
|
4511
4511
|
id?: number | undefined;
|
|
4512
4512
|
}[] | undefined;
|
|
4513
4513
|
required?: boolean | undefined;
|
|
@@ -4526,7 +4526,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4526
4526
|
hint?: string | undefined;
|
|
4527
4527
|
messages?: {
|
|
4528
4528
|
text: string;
|
|
4529
|
-
type: "
|
|
4529
|
+
type: "success" | "error" | "info" | "warning";
|
|
4530
4530
|
id?: number | undefined;
|
|
4531
4531
|
}[] | undefined;
|
|
4532
4532
|
required?: boolean | undefined;
|
|
@@ -4546,7 +4546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4546
4546
|
hint?: string | undefined;
|
|
4547
4547
|
messages?: {
|
|
4548
4548
|
text: string;
|
|
4549
|
-
type: "
|
|
4549
|
+
type: "success" | "error" | "info" | "warning";
|
|
4550
4550
|
id?: number | undefined;
|
|
4551
4551
|
}[] | undefined;
|
|
4552
4552
|
required?: boolean | undefined;
|
|
@@ -4565,7 +4565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4565
4565
|
hint?: string | undefined;
|
|
4566
4566
|
messages?: {
|
|
4567
4567
|
text: string;
|
|
4568
|
-
type: "
|
|
4568
|
+
type: "success" | "error" | "info" | "warning";
|
|
4569
4569
|
id?: number | undefined;
|
|
4570
4570
|
}[] | undefined;
|
|
4571
4571
|
required?: boolean | undefined;
|
|
@@ -4587,7 +4587,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4587
4587
|
hint?: string | undefined;
|
|
4588
4588
|
messages?: {
|
|
4589
4589
|
text: string;
|
|
4590
|
-
type: "
|
|
4590
|
+
type: "success" | "error" | "info" | "warning";
|
|
4591
4591
|
id?: number | undefined;
|
|
4592
4592
|
}[] | undefined;
|
|
4593
4593
|
required?: boolean | undefined;
|
|
@@ -4609,7 +4609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4609
4609
|
hint?: string | undefined;
|
|
4610
4610
|
messages?: {
|
|
4611
4611
|
text: string;
|
|
4612
|
-
type: "
|
|
4612
|
+
type: "success" | "error" | "info" | "warning";
|
|
4613
4613
|
id?: number | undefined;
|
|
4614
4614
|
}[] | undefined;
|
|
4615
4615
|
required?: boolean | undefined;
|
|
@@ -4628,7 +4628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4628
4628
|
hint?: string | undefined;
|
|
4629
4629
|
messages?: {
|
|
4630
4630
|
text: string;
|
|
4631
|
-
type: "
|
|
4631
|
+
type: "success" | "error" | "info" | "warning";
|
|
4632
4632
|
id?: number | undefined;
|
|
4633
4633
|
}[] | undefined;
|
|
4634
4634
|
required?: boolean | undefined;
|
|
@@ -4653,7 +4653,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4653
4653
|
hint?: string | undefined;
|
|
4654
4654
|
messages?: {
|
|
4655
4655
|
text: string;
|
|
4656
|
-
type: "
|
|
4656
|
+
type: "success" | "error" | "info" | "warning";
|
|
4657
4657
|
id?: number | undefined;
|
|
4658
4658
|
}[] | undefined;
|
|
4659
4659
|
required?: boolean | undefined;
|
|
@@ -4674,7 +4674,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4674
4674
|
hint?: string | undefined;
|
|
4675
4675
|
messages?: {
|
|
4676
4676
|
text: string;
|
|
4677
|
-
type: "
|
|
4677
|
+
type: "success" | "error" | "info" | "warning";
|
|
4678
4678
|
id?: number | undefined;
|
|
4679
4679
|
}[] | undefined;
|
|
4680
4680
|
required?: boolean | undefined;
|
|
@@ -4695,7 +4695,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4695
4695
|
hint?: string | undefined;
|
|
4696
4696
|
messages?: {
|
|
4697
4697
|
text: string;
|
|
4698
|
-
type: "
|
|
4698
|
+
type: "success" | "error" | "info" | "warning";
|
|
4699
4699
|
id?: number | undefined;
|
|
4700
4700
|
}[] | undefined;
|
|
4701
4701
|
required?: boolean | undefined;
|
|
@@ -4926,7 +4926,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4926
4926
|
hint?: string | undefined;
|
|
4927
4927
|
messages?: {
|
|
4928
4928
|
text: string;
|
|
4929
|
-
type: "
|
|
4929
|
+
type: "success" | "error" | "info" | "warning";
|
|
4930
4930
|
id?: number | undefined;
|
|
4931
4931
|
}[] | undefined;
|
|
4932
4932
|
required?: boolean | undefined;
|
|
@@ -4944,7 +4944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4944
4944
|
hint?: string | undefined;
|
|
4945
4945
|
messages?: {
|
|
4946
4946
|
text: string;
|
|
4947
|
-
type: "
|
|
4947
|
+
type: "success" | "error" | "info" | "warning";
|
|
4948
4948
|
id?: number | undefined;
|
|
4949
4949
|
}[] | undefined;
|
|
4950
4950
|
required?: boolean | undefined;
|
|
@@ -4968,7 +4968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4968
4968
|
hint?: string | undefined;
|
|
4969
4969
|
messages?: {
|
|
4970
4970
|
text: string;
|
|
4971
|
-
type: "
|
|
4971
|
+
type: "success" | "error" | "info" | "warning";
|
|
4972
4972
|
id?: number | undefined;
|
|
4973
4973
|
}[] | undefined;
|
|
4974
4974
|
required?: boolean | undefined;
|
|
@@ -4992,7 +4992,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4992
4992
|
hint?: string | undefined;
|
|
4993
4993
|
messages?: {
|
|
4994
4994
|
text: string;
|
|
4995
|
-
type: "
|
|
4995
|
+
type: "success" | "error" | "info" | "warning";
|
|
4996
4996
|
id?: number | undefined;
|
|
4997
4997
|
}[] | undefined;
|
|
4998
4998
|
required?: boolean | undefined;
|
|
@@ -5021,7 +5021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5021
5021
|
hint?: string | undefined;
|
|
5022
5022
|
messages?: {
|
|
5023
5023
|
text: string;
|
|
5024
|
-
type: "
|
|
5024
|
+
type: "success" | "error" | "info" | "warning";
|
|
5025
5025
|
id?: number | undefined;
|
|
5026
5026
|
}[] | undefined;
|
|
5027
5027
|
required?: boolean | undefined;
|
|
@@ -5036,7 +5036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5036
5036
|
hint?: string | undefined;
|
|
5037
5037
|
messages?: {
|
|
5038
5038
|
text: string;
|
|
5039
|
-
type: "
|
|
5039
|
+
type: "success" | "error" | "info" | "warning";
|
|
5040
5040
|
id?: number | undefined;
|
|
5041
5041
|
}[] | undefined;
|
|
5042
5042
|
required?: boolean | undefined;
|
|
@@ -5057,7 +5057,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5057
5057
|
hint?: string | undefined;
|
|
5058
5058
|
messages?: {
|
|
5059
5059
|
text: string;
|
|
5060
|
-
type: "
|
|
5060
|
+
type: "success" | "error" | "info" | "warning";
|
|
5061
5061
|
id?: number | undefined;
|
|
5062
5062
|
}[] | undefined;
|
|
5063
5063
|
required?: boolean | undefined;
|
|
@@ -5082,7 +5082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5082
5082
|
hint?: string | undefined;
|
|
5083
5083
|
messages?: {
|
|
5084
5084
|
text: string;
|
|
5085
|
-
type: "
|
|
5085
|
+
type: "success" | "error" | "info" | "warning";
|
|
5086
5086
|
id?: number | undefined;
|
|
5087
5087
|
}[] | undefined;
|
|
5088
5088
|
required?: boolean | undefined;
|
|
@@ -5101,7 +5101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5101
5101
|
hint?: string | undefined;
|
|
5102
5102
|
messages?: {
|
|
5103
5103
|
text: string;
|
|
5104
|
-
type: "
|
|
5104
|
+
type: "success" | "error" | "info" | "warning";
|
|
5105
5105
|
id?: number | undefined;
|
|
5106
5106
|
}[] | undefined;
|
|
5107
5107
|
required?: boolean | undefined;
|
|
@@ -5121,7 +5121,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5121
5121
|
hint?: string | undefined;
|
|
5122
5122
|
messages?: {
|
|
5123
5123
|
text: string;
|
|
5124
|
-
type: "
|
|
5124
|
+
type: "success" | "error" | "info" | "warning";
|
|
5125
5125
|
id?: number | undefined;
|
|
5126
5126
|
}[] | undefined;
|
|
5127
5127
|
required?: boolean | undefined;
|
|
@@ -5140,7 +5140,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5140
5140
|
hint?: string | undefined;
|
|
5141
5141
|
messages?: {
|
|
5142
5142
|
text: string;
|
|
5143
|
-
type: "
|
|
5143
|
+
type: "success" | "error" | "info" | "warning";
|
|
5144
5144
|
id?: number | undefined;
|
|
5145
5145
|
}[] | undefined;
|
|
5146
5146
|
required?: boolean | undefined;
|
|
@@ -5162,7 +5162,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5162
5162
|
hint?: string | undefined;
|
|
5163
5163
|
messages?: {
|
|
5164
5164
|
text: string;
|
|
5165
|
-
type: "
|
|
5165
|
+
type: "success" | "error" | "info" | "warning";
|
|
5166
5166
|
id?: number | undefined;
|
|
5167
5167
|
}[] | undefined;
|
|
5168
5168
|
required?: boolean | undefined;
|
|
@@ -5184,7 +5184,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5184
5184
|
hint?: string | undefined;
|
|
5185
5185
|
messages?: {
|
|
5186
5186
|
text: string;
|
|
5187
|
-
type: "
|
|
5187
|
+
type: "success" | "error" | "info" | "warning";
|
|
5188
5188
|
id?: number | undefined;
|
|
5189
5189
|
}[] | undefined;
|
|
5190
5190
|
required?: boolean | undefined;
|
|
@@ -5203,7 +5203,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5203
5203
|
hint?: string | undefined;
|
|
5204
5204
|
messages?: {
|
|
5205
5205
|
text: string;
|
|
5206
|
-
type: "
|
|
5206
|
+
type: "success" | "error" | "info" | "warning";
|
|
5207
5207
|
id?: number | undefined;
|
|
5208
5208
|
}[] | undefined;
|
|
5209
5209
|
required?: boolean | undefined;
|
|
@@ -5228,7 +5228,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5228
5228
|
hint?: string | undefined;
|
|
5229
5229
|
messages?: {
|
|
5230
5230
|
text: string;
|
|
5231
|
-
type: "
|
|
5231
|
+
type: "success" | "error" | "info" | "warning";
|
|
5232
5232
|
id?: number | undefined;
|
|
5233
5233
|
}[] | undefined;
|
|
5234
5234
|
required?: boolean | undefined;
|
|
@@ -5249,7 +5249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5249
5249
|
hint?: string | undefined;
|
|
5250
5250
|
messages?: {
|
|
5251
5251
|
text: string;
|
|
5252
|
-
type: "
|
|
5252
|
+
type: "success" | "error" | "info" | "warning";
|
|
5253
5253
|
id?: number | undefined;
|
|
5254
5254
|
}[] | undefined;
|
|
5255
5255
|
required?: boolean | undefined;
|
|
@@ -5270,7 +5270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5270
5270
|
hint?: string | undefined;
|
|
5271
5271
|
messages?: {
|
|
5272
5272
|
text: string;
|
|
5273
|
-
type: "
|
|
5273
|
+
type: "success" | "error" | "info" | "warning";
|
|
5274
5274
|
id?: number | undefined;
|
|
5275
5275
|
}[] | undefined;
|
|
5276
5276
|
required?: boolean | undefined;
|
|
@@ -5503,7 +5503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5503
5503
|
hint?: string | undefined;
|
|
5504
5504
|
messages?: {
|
|
5505
5505
|
text: string;
|
|
5506
|
-
type: "
|
|
5506
|
+
type: "success" | "error" | "info" | "warning";
|
|
5507
5507
|
id?: number | undefined;
|
|
5508
5508
|
}[] | undefined;
|
|
5509
5509
|
required?: boolean | undefined;
|
|
@@ -5521,7 +5521,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5521
5521
|
hint?: string | undefined;
|
|
5522
5522
|
messages?: {
|
|
5523
5523
|
text: string;
|
|
5524
|
-
type: "
|
|
5524
|
+
type: "success" | "error" | "info" | "warning";
|
|
5525
5525
|
id?: number | undefined;
|
|
5526
5526
|
}[] | undefined;
|
|
5527
5527
|
required?: boolean | undefined;
|
|
@@ -5545,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5545
5545
|
hint?: string | undefined;
|
|
5546
5546
|
messages?: {
|
|
5547
5547
|
text: string;
|
|
5548
|
-
type: "
|
|
5548
|
+
type: "success" | "error" | "info" | "warning";
|
|
5549
5549
|
id?: number | undefined;
|
|
5550
5550
|
}[] | undefined;
|
|
5551
5551
|
required?: boolean | undefined;
|
|
@@ -5569,7 +5569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5569
5569
|
hint?: string | undefined;
|
|
5570
5570
|
messages?: {
|
|
5571
5571
|
text: string;
|
|
5572
|
-
type: "
|
|
5572
|
+
type: "success" | "error" | "info" | "warning";
|
|
5573
5573
|
id?: number | undefined;
|
|
5574
5574
|
}[] | undefined;
|
|
5575
5575
|
required?: boolean | undefined;
|
|
@@ -5594,7 +5594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5594
5594
|
hint?: string | undefined;
|
|
5595
5595
|
messages?: {
|
|
5596
5596
|
text: string;
|
|
5597
|
-
type: "
|
|
5597
|
+
type: "success" | "error" | "info" | "warning";
|
|
5598
5598
|
id?: number | undefined;
|
|
5599
5599
|
}[] | undefined;
|
|
5600
5600
|
required?: boolean | undefined;
|
|
@@ -5609,7 +5609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5609
5609
|
hint?: string | undefined;
|
|
5610
5610
|
messages?: {
|
|
5611
5611
|
text: string;
|
|
5612
|
-
type: "
|
|
5612
|
+
type: "success" | "error" | "info" | "warning";
|
|
5613
5613
|
id?: number | undefined;
|
|
5614
5614
|
}[] | undefined;
|
|
5615
5615
|
required?: boolean | undefined;
|
|
@@ -5630,7 +5630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5630
5630
|
hint?: string | undefined;
|
|
5631
5631
|
messages?: {
|
|
5632
5632
|
text: string;
|
|
5633
|
-
type: "
|
|
5633
|
+
type: "success" | "error" | "info" | "warning";
|
|
5634
5634
|
id?: number | undefined;
|
|
5635
5635
|
}[] | undefined;
|
|
5636
5636
|
required?: boolean | undefined;
|
|
@@ -5655,7 +5655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5655
5655
|
hint?: string | undefined;
|
|
5656
5656
|
messages?: {
|
|
5657
5657
|
text: string;
|
|
5658
|
-
type: "
|
|
5658
|
+
type: "success" | "error" | "info" | "warning";
|
|
5659
5659
|
id?: number | undefined;
|
|
5660
5660
|
}[] | undefined;
|
|
5661
5661
|
required?: boolean | undefined;
|
|
@@ -5674,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5674
5674
|
hint?: string | undefined;
|
|
5675
5675
|
messages?: {
|
|
5676
5676
|
text: string;
|
|
5677
|
-
type: "
|
|
5677
|
+
type: "success" | "error" | "info" | "warning";
|
|
5678
5678
|
id?: number | undefined;
|
|
5679
5679
|
}[] | undefined;
|
|
5680
5680
|
required?: boolean | undefined;
|
|
@@ -5694,7 +5694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5694
5694
|
hint?: string | undefined;
|
|
5695
5695
|
messages?: {
|
|
5696
5696
|
text: string;
|
|
5697
|
-
type: "
|
|
5697
|
+
type: "success" | "error" | "info" | "warning";
|
|
5698
5698
|
id?: number | undefined;
|
|
5699
5699
|
}[] | undefined;
|
|
5700
5700
|
required?: boolean | undefined;
|
|
@@ -5713,7 +5713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5713
5713
|
hint?: string | undefined;
|
|
5714
5714
|
messages?: {
|
|
5715
5715
|
text: string;
|
|
5716
|
-
type: "
|
|
5716
|
+
type: "success" | "error" | "info" | "warning";
|
|
5717
5717
|
id?: number | undefined;
|
|
5718
5718
|
}[] | undefined;
|
|
5719
5719
|
required?: boolean | undefined;
|
|
@@ -5735,7 +5735,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5735
5735
|
hint?: string | undefined;
|
|
5736
5736
|
messages?: {
|
|
5737
5737
|
text: string;
|
|
5738
|
-
type: "
|
|
5738
|
+
type: "success" | "error" | "info" | "warning";
|
|
5739
5739
|
id?: number | undefined;
|
|
5740
5740
|
}[] | undefined;
|
|
5741
5741
|
required?: boolean | undefined;
|
|
@@ -5757,7 +5757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5757
5757
|
hint?: string | undefined;
|
|
5758
5758
|
messages?: {
|
|
5759
5759
|
text: string;
|
|
5760
|
-
type: "
|
|
5760
|
+
type: "success" | "error" | "info" | "warning";
|
|
5761
5761
|
id?: number | undefined;
|
|
5762
5762
|
}[] | undefined;
|
|
5763
5763
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5776
5776
|
hint?: string | undefined;
|
|
5777
5777
|
messages?: {
|
|
5778
5778
|
text: string;
|
|
5779
|
-
type: "
|
|
5779
|
+
type: "success" | "error" | "info" | "warning";
|
|
5780
5780
|
id?: number | undefined;
|
|
5781
5781
|
}[] | undefined;
|
|
5782
5782
|
required?: boolean | undefined;
|
|
@@ -5801,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5801
5801
|
hint?: string | undefined;
|
|
5802
5802
|
messages?: {
|
|
5803
5803
|
text: string;
|
|
5804
|
-
type: "
|
|
5804
|
+
type: "success" | "error" | "info" | "warning";
|
|
5805
5805
|
id?: number | undefined;
|
|
5806
5806
|
}[] | undefined;
|
|
5807
5807
|
required?: boolean | undefined;
|
|
@@ -5822,7 +5822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5822
5822
|
hint?: string | undefined;
|
|
5823
5823
|
messages?: {
|
|
5824
5824
|
text: string;
|
|
5825
|
-
type: "
|
|
5825
|
+
type: "success" | "error" | "info" | "warning";
|
|
5826
5826
|
id?: number | undefined;
|
|
5827
5827
|
}[] | undefined;
|
|
5828
5828
|
required?: boolean | undefined;
|
|
@@ -5843,7 +5843,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5843
5843
|
hint?: string | undefined;
|
|
5844
5844
|
messages?: {
|
|
5845
5845
|
text: string;
|
|
5846
|
-
type: "
|
|
5846
|
+
type: "success" | "error" | "info" | "warning";
|
|
5847
5847
|
id?: number | undefined;
|
|
5848
5848
|
}[] | undefined;
|
|
5849
5849
|
required?: boolean | undefined;
|
|
@@ -6074,7 +6074,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6074
6074
|
hint?: string | undefined;
|
|
6075
6075
|
messages?: {
|
|
6076
6076
|
text: string;
|
|
6077
|
-
type: "
|
|
6077
|
+
type: "success" | "error" | "info" | "warning";
|
|
6078
6078
|
id?: number | undefined;
|
|
6079
6079
|
}[] | undefined;
|
|
6080
6080
|
required?: boolean | undefined;
|
|
@@ -6092,7 +6092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6092
6092
|
hint?: string | undefined;
|
|
6093
6093
|
messages?: {
|
|
6094
6094
|
text: string;
|
|
6095
|
-
type: "
|
|
6095
|
+
type: "success" | "error" | "info" | "warning";
|
|
6096
6096
|
id?: number | undefined;
|
|
6097
6097
|
}[] | undefined;
|
|
6098
6098
|
required?: boolean | undefined;
|
|
@@ -6116,7 +6116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6116
6116
|
hint?: string | undefined;
|
|
6117
6117
|
messages?: {
|
|
6118
6118
|
text: string;
|
|
6119
|
-
type: "
|
|
6119
|
+
type: "success" | "error" | "info" | "warning";
|
|
6120
6120
|
id?: number | undefined;
|
|
6121
6121
|
}[] | undefined;
|
|
6122
6122
|
required?: boolean | undefined;
|
|
@@ -6140,7 +6140,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6140
6140
|
hint?: string | undefined;
|
|
6141
6141
|
messages?: {
|
|
6142
6142
|
text: string;
|
|
6143
|
-
type: "
|
|
6143
|
+
type: "success" | "error" | "info" | "warning";
|
|
6144
6144
|
id?: number | undefined;
|
|
6145
6145
|
}[] | undefined;
|
|
6146
6146
|
required?: boolean | undefined;
|
|
@@ -6169,7 +6169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6169
6169
|
hint?: string | undefined;
|
|
6170
6170
|
messages?: {
|
|
6171
6171
|
text: string;
|
|
6172
|
-
type: "
|
|
6172
|
+
type: "success" | "error" | "info" | "warning";
|
|
6173
6173
|
id?: number | undefined;
|
|
6174
6174
|
}[] | undefined;
|
|
6175
6175
|
required?: boolean | undefined;
|
|
@@ -6184,7 +6184,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6184
6184
|
hint?: string | undefined;
|
|
6185
6185
|
messages?: {
|
|
6186
6186
|
text: string;
|
|
6187
|
-
type: "
|
|
6187
|
+
type: "success" | "error" | "info" | "warning";
|
|
6188
6188
|
id?: number | undefined;
|
|
6189
6189
|
}[] | undefined;
|
|
6190
6190
|
required?: boolean | undefined;
|
|
@@ -6205,7 +6205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6205
6205
|
hint?: string | undefined;
|
|
6206
6206
|
messages?: {
|
|
6207
6207
|
text: string;
|
|
6208
|
-
type: "
|
|
6208
|
+
type: "success" | "error" | "info" | "warning";
|
|
6209
6209
|
id?: number | undefined;
|
|
6210
6210
|
}[] | undefined;
|
|
6211
6211
|
required?: boolean | undefined;
|
|
@@ -6230,7 +6230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6230
6230
|
hint?: string | undefined;
|
|
6231
6231
|
messages?: {
|
|
6232
6232
|
text: string;
|
|
6233
|
-
type: "
|
|
6233
|
+
type: "success" | "error" | "info" | "warning";
|
|
6234
6234
|
id?: number | undefined;
|
|
6235
6235
|
}[] | undefined;
|
|
6236
6236
|
required?: boolean | undefined;
|
|
@@ -6249,7 +6249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6249
6249
|
hint?: string | undefined;
|
|
6250
6250
|
messages?: {
|
|
6251
6251
|
text: string;
|
|
6252
|
-
type: "
|
|
6252
|
+
type: "success" | "error" | "info" | "warning";
|
|
6253
6253
|
id?: number | undefined;
|
|
6254
6254
|
}[] | undefined;
|
|
6255
6255
|
required?: boolean | undefined;
|
|
@@ -6269,7 +6269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6269
6269
|
hint?: string | undefined;
|
|
6270
6270
|
messages?: {
|
|
6271
6271
|
text: string;
|
|
6272
|
-
type: "
|
|
6272
|
+
type: "success" | "error" | "info" | "warning";
|
|
6273
6273
|
id?: number | undefined;
|
|
6274
6274
|
}[] | undefined;
|
|
6275
6275
|
required?: boolean | undefined;
|
|
@@ -6288,7 +6288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6288
6288
|
hint?: string | undefined;
|
|
6289
6289
|
messages?: {
|
|
6290
6290
|
text: string;
|
|
6291
|
-
type: "
|
|
6291
|
+
type: "success" | "error" | "info" | "warning";
|
|
6292
6292
|
id?: number | undefined;
|
|
6293
6293
|
}[] | undefined;
|
|
6294
6294
|
required?: boolean | undefined;
|
|
@@ -6310,7 +6310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6310
6310
|
hint?: string | undefined;
|
|
6311
6311
|
messages?: {
|
|
6312
6312
|
text: string;
|
|
6313
|
-
type: "
|
|
6313
|
+
type: "success" | "error" | "info" | "warning";
|
|
6314
6314
|
id?: number | undefined;
|
|
6315
6315
|
}[] | undefined;
|
|
6316
6316
|
required?: boolean | undefined;
|
|
@@ -6332,7 +6332,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6332
6332
|
hint?: string | undefined;
|
|
6333
6333
|
messages?: {
|
|
6334
6334
|
text: string;
|
|
6335
|
-
type: "
|
|
6335
|
+
type: "success" | "error" | "info" | "warning";
|
|
6336
6336
|
id?: number | undefined;
|
|
6337
6337
|
}[] | undefined;
|
|
6338
6338
|
required?: boolean | undefined;
|
|
@@ -6351,7 +6351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6351
6351
|
hint?: string | undefined;
|
|
6352
6352
|
messages?: {
|
|
6353
6353
|
text: string;
|
|
6354
|
-
type: "
|
|
6354
|
+
type: "success" | "error" | "info" | "warning";
|
|
6355
6355
|
id?: number | undefined;
|
|
6356
6356
|
}[] | undefined;
|
|
6357
6357
|
required?: boolean | undefined;
|
|
@@ -6376,7 +6376,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6376
6376
|
hint?: string | undefined;
|
|
6377
6377
|
messages?: {
|
|
6378
6378
|
text: string;
|
|
6379
|
-
type: "
|
|
6379
|
+
type: "success" | "error" | "info" | "warning";
|
|
6380
6380
|
id?: number | undefined;
|
|
6381
6381
|
}[] | undefined;
|
|
6382
6382
|
required?: boolean | undefined;
|
|
@@ -6397,7 +6397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6397
6397
|
hint?: string | undefined;
|
|
6398
6398
|
messages?: {
|
|
6399
6399
|
text: string;
|
|
6400
|
-
type: "
|
|
6400
|
+
type: "success" | "error" | "info" | "warning";
|
|
6401
6401
|
id?: number | undefined;
|
|
6402
6402
|
}[] | undefined;
|
|
6403
6403
|
required?: boolean | undefined;
|
|
@@ -6418,7 +6418,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6418
6418
|
hint?: string | undefined;
|
|
6419
6419
|
messages?: {
|
|
6420
6420
|
text: string;
|
|
6421
|
-
type: "
|
|
6421
|
+
type: "success" | "error" | "info" | "warning";
|
|
6422
6422
|
id?: number | undefined;
|
|
6423
6423
|
}[] | undefined;
|
|
6424
6424
|
required?: boolean | undefined;
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
};
|
|
6650
6650
|
output: {
|
|
6651
|
-
prompt: "
|
|
6651
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6652
6652
|
language: string;
|
|
6653
6653
|
}[];
|
|
6654
6654
|
outputFormat: "json";
|
|
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6686
|
$get: {
|
|
6687
6687
|
input: {
|
|
6688
6688
|
param: {
|
|
6689
|
-
prompt: "
|
|
6689
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6690
6690
|
language: string;
|
|
6691
6691
|
};
|
|
6692
6692
|
} & {
|
|
@@ -6708,7 +6708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6708
|
$put: {
|
|
6709
6709
|
input: {
|
|
6710
6710
|
param: {
|
|
6711
|
-
prompt: "
|
|
6711
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6712
6712
|
language: string;
|
|
6713
6713
|
};
|
|
6714
6714
|
} & {
|
|
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6732
|
$delete: {
|
|
6733
6733
|
input: {
|
|
6734
6734
|
param: {
|
|
6735
|
-
prompt: "
|
|
6735
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6736
6736
|
language: string;
|
|
6737
6737
|
};
|
|
6738
6738
|
} & {
|
|
@@ -7594,7 +7594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7594
7594
|
};
|
|
7595
7595
|
} | {
|
|
7596
7596
|
mode: "inline";
|
|
7597
|
-
status: "
|
|
7597
|
+
status: "success" | "error";
|
|
7598
7598
|
connection_id: string;
|
|
7599
7599
|
connection_name: string;
|
|
7600
7600
|
strategy: string;
|
|
@@ -8146,6 +8146,66 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8146
8146
|
status: 200;
|
|
8147
8147
|
};
|
|
8148
8148
|
};
|
|
8149
|
+
} & {
|
|
8150
|
+
"/:hook_id/try": {
|
|
8151
|
+
$post: {
|
|
8152
|
+
input: {
|
|
8153
|
+
param: {
|
|
8154
|
+
hook_id: string;
|
|
8155
|
+
};
|
|
8156
|
+
} & {
|
|
8157
|
+
header: {
|
|
8158
|
+
"tenant-id"?: string | undefined;
|
|
8159
|
+
};
|
|
8160
|
+
} & {
|
|
8161
|
+
json: {
|
|
8162
|
+
user_id: string;
|
|
8163
|
+
};
|
|
8164
|
+
};
|
|
8165
|
+
output: {};
|
|
8166
|
+
outputFormat: string;
|
|
8167
|
+
status: 400;
|
|
8168
|
+
} | {
|
|
8169
|
+
input: {
|
|
8170
|
+
param: {
|
|
8171
|
+
hook_id: string;
|
|
8172
|
+
};
|
|
8173
|
+
} & {
|
|
8174
|
+
header: {
|
|
8175
|
+
"tenant-id"?: string | undefined;
|
|
8176
|
+
};
|
|
8177
|
+
} & {
|
|
8178
|
+
json: {
|
|
8179
|
+
user_id: string;
|
|
8180
|
+
};
|
|
8181
|
+
};
|
|
8182
|
+
output: {};
|
|
8183
|
+
outputFormat: string;
|
|
8184
|
+
status: 404;
|
|
8185
|
+
} | {
|
|
8186
|
+
input: {
|
|
8187
|
+
param: {
|
|
8188
|
+
hook_id: string;
|
|
8189
|
+
};
|
|
8190
|
+
} & {
|
|
8191
|
+
header: {
|
|
8192
|
+
"tenant-id"?: string | undefined;
|
|
8193
|
+
};
|
|
8194
|
+
} & {
|
|
8195
|
+
json: {
|
|
8196
|
+
user_id: string;
|
|
8197
|
+
};
|
|
8198
|
+
};
|
|
8199
|
+
output: {
|
|
8200
|
+
ok: boolean;
|
|
8201
|
+
status?: number | undefined;
|
|
8202
|
+
body?: string | undefined;
|
|
8203
|
+
error?: string | undefined;
|
|
8204
|
+
};
|
|
8205
|
+
outputFormat: "json";
|
|
8206
|
+
status: 200;
|
|
8207
|
+
};
|
|
8208
|
+
};
|
|
8149
8209
|
}, "/hooks"> & import("hono/types").MergeSchemaPath<{
|
|
8150
8210
|
"/": {
|
|
8151
8211
|
$get: {
|
|
@@ -8821,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8821
8881
|
};
|
|
8822
8882
|
};
|
|
8823
8883
|
output: {
|
|
8824
|
-
type: "
|
|
8884
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8825
8885
|
date: string;
|
|
8826
8886
|
isMobile: boolean;
|
|
8827
8887
|
log_id: string;
|
|
@@ -8860,7 +8920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8860
8920
|
limit: number;
|
|
8861
8921
|
length: number;
|
|
8862
8922
|
logs: {
|
|
8863
|
-
type: "
|
|
8923
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8864
8924
|
date: string;
|
|
8865
8925
|
isMobile: boolean;
|
|
8866
8926
|
log_id: string;
|
|
@@ -8914,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8914
8974
|
};
|
|
8915
8975
|
};
|
|
8916
8976
|
output: {
|
|
8917
|
-
type: "
|
|
8977
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8918
8978
|
date: string;
|
|
8919
8979
|
isMobile: boolean;
|
|
8920
8980
|
log_id: string;
|
|
@@ -9302,7 +9362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9302
9362
|
addons?: {
|
|
9303
9363
|
[x: string]: any;
|
|
9304
9364
|
} | undefined;
|
|
9305
|
-
token_endpoint_auth_method?: "none" | "
|
|
9365
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9306
9366
|
client_metadata?: {
|
|
9307
9367
|
[x: string]: string;
|
|
9308
9368
|
} | undefined;
|
|
@@ -9398,7 +9458,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9398
9458
|
addons?: {
|
|
9399
9459
|
[x: string]: any;
|
|
9400
9460
|
} | undefined;
|
|
9401
|
-
token_endpoint_auth_method?: "none" | "
|
|
9461
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9402
9462
|
client_metadata?: {
|
|
9403
9463
|
[x: string]: string;
|
|
9404
9464
|
} | undefined;
|
|
@@ -9509,7 +9569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9509
9569
|
addons?: {
|
|
9510
9570
|
[x: string]: any;
|
|
9511
9571
|
} | undefined;
|
|
9512
|
-
token_endpoint_auth_method?: "none" | "
|
|
9572
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9513
9573
|
client_metadata?: {
|
|
9514
9574
|
[x: string]: string;
|
|
9515
9575
|
} | undefined;
|
|
@@ -9619,7 +9679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9619
9679
|
custom_login_page_preview?: string | undefined;
|
|
9620
9680
|
form_template?: string | undefined;
|
|
9621
9681
|
addons?: Record<string, any> | undefined;
|
|
9622
|
-
token_endpoint_auth_method?: "none" | "
|
|
9682
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9623
9683
|
client_metadata?: Record<string, string> | undefined;
|
|
9624
9684
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9625
9685
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9699,7 +9759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9699
9759
|
addons?: {
|
|
9700
9760
|
[x: string]: any;
|
|
9701
9761
|
} | undefined;
|
|
9702
|
-
token_endpoint_auth_method?: "none" | "
|
|
9762
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9703
9763
|
client_metadata?: {
|
|
9704
9764
|
[x: string]: string;
|
|
9705
9765
|
} | undefined;
|
|
@@ -9788,7 +9848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9788
9848
|
custom_login_page_preview?: string | undefined;
|
|
9789
9849
|
form_template?: string | undefined;
|
|
9790
9850
|
addons?: Record<string, any> | undefined;
|
|
9791
|
-
token_endpoint_auth_method?: "none" | "
|
|
9851
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9792
9852
|
client_metadata?: Record<string, string> | undefined;
|
|
9793
9853
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9794
9854
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9868,7 +9928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9868
9928
|
addons?: {
|
|
9869
9929
|
[x: string]: any;
|
|
9870
9930
|
} | undefined;
|
|
9871
|
-
token_endpoint_auth_method?: "none" | "
|
|
9931
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9872
9932
|
client_metadata?: {
|
|
9873
9933
|
[x: string]: string;
|
|
9874
9934
|
} | undefined;
|
|
@@ -11132,7 +11192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11132
11192
|
};
|
|
11133
11193
|
};
|
|
11134
11194
|
output: {
|
|
11135
|
-
type: "
|
|
11195
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11136
11196
|
date: string;
|
|
11137
11197
|
isMobile: boolean;
|
|
11138
11198
|
log_id: string;
|
|
@@ -11171,7 +11231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11171
11231
|
limit: number;
|
|
11172
11232
|
length: number;
|
|
11173
11233
|
logs: {
|
|
11174
|
-
type: "
|
|
11234
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11175
11235
|
date: string;
|
|
11176
11236
|
isMobile: boolean;
|
|
11177
11237
|
log_id: string;
|
|
@@ -11486,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11486
11546
|
};
|
|
11487
11547
|
} & {
|
|
11488
11548
|
json: {
|
|
11489
|
-
template: "
|
|
11549
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11490
11550
|
body: string;
|
|
11491
11551
|
from: string;
|
|
11492
11552
|
subject: string;
|
|
@@ -11507,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11507
11567
|
};
|
|
11508
11568
|
} & {
|
|
11509
11569
|
json: {
|
|
11510
|
-
template: "
|
|
11570
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11511
11571
|
body: string;
|
|
11512
11572
|
from: string;
|
|
11513
11573
|
subject: string;
|
|
@@ -11519,7 +11579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11519
11579
|
};
|
|
11520
11580
|
};
|
|
11521
11581
|
output: {
|
|
11522
|
-
template: "
|
|
11582
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11523
11583
|
body: string;
|
|
11524
11584
|
from: string;
|
|
11525
11585
|
subject: string;
|
|
@@ -11542,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11542
11602
|
};
|
|
11543
11603
|
};
|
|
11544
11604
|
output: {
|
|
11545
|
-
name: "
|
|
11605
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11546
11606
|
body: string;
|
|
11547
11607
|
subject: string;
|
|
11548
11608
|
}[];
|
|
@@ -11555,7 +11615,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11555
11615
|
$get: {
|
|
11556
11616
|
input: {
|
|
11557
11617
|
param: {
|
|
11558
|
-
templateName: "
|
|
11618
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11559
11619
|
};
|
|
11560
11620
|
} & {
|
|
11561
11621
|
header: {
|
|
@@ -11568,7 +11628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11568
11628
|
} | {
|
|
11569
11629
|
input: {
|
|
11570
11630
|
param: {
|
|
11571
|
-
templateName: "
|
|
11631
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11572
11632
|
};
|
|
11573
11633
|
} & {
|
|
11574
11634
|
header: {
|
|
@@ -11576,7 +11636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11576
11636
|
};
|
|
11577
11637
|
};
|
|
11578
11638
|
output: {
|
|
11579
|
-
template: "
|
|
11639
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11580
11640
|
body: string;
|
|
11581
11641
|
from: string;
|
|
11582
11642
|
subject: string;
|
|
@@ -11595,7 +11655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11595
11655
|
$put: {
|
|
11596
11656
|
input: {
|
|
11597
11657
|
param: {
|
|
11598
|
-
templateName: "
|
|
11658
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11599
11659
|
};
|
|
11600
11660
|
} & {
|
|
11601
11661
|
header: {
|
|
@@ -11603,7 +11663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11603
11663
|
};
|
|
11604
11664
|
} & {
|
|
11605
11665
|
json: {
|
|
11606
|
-
template: "
|
|
11666
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11607
11667
|
body: string;
|
|
11608
11668
|
subject: string;
|
|
11609
11669
|
syntax?: "liquid" | undefined;
|
|
@@ -11615,7 +11675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11675
|
};
|
|
11616
11676
|
};
|
|
11617
11677
|
output: {
|
|
11618
|
-
template: "
|
|
11678
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11619
11679
|
body: string;
|
|
11620
11680
|
from: string;
|
|
11621
11681
|
subject: string;
|
|
@@ -11634,7 +11694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11634
11694
|
$patch: {
|
|
11635
11695
|
input: {
|
|
11636
11696
|
param: {
|
|
11637
|
-
templateName: "
|
|
11697
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11638
11698
|
};
|
|
11639
11699
|
} & {
|
|
11640
11700
|
header: {
|
|
@@ -11642,7 +11702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11642
11702
|
};
|
|
11643
11703
|
} & {
|
|
11644
11704
|
json: {
|
|
11645
|
-
template?: "
|
|
11705
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11646
11706
|
body?: string | undefined;
|
|
11647
11707
|
from?: string | undefined;
|
|
11648
11708
|
subject?: string | undefined;
|
|
@@ -11659,7 +11719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11659
11719
|
} | {
|
|
11660
11720
|
input: {
|
|
11661
11721
|
param: {
|
|
11662
|
-
templateName: "
|
|
11722
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11663
11723
|
};
|
|
11664
11724
|
} & {
|
|
11665
11725
|
header: {
|
|
@@ -11667,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11667
11727
|
};
|
|
11668
11728
|
} & {
|
|
11669
11729
|
json: {
|
|
11670
|
-
template?: "
|
|
11730
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11671
11731
|
body?: string | undefined;
|
|
11672
11732
|
from?: string | undefined;
|
|
11673
11733
|
subject?: string | undefined;
|
|
@@ -11679,7 +11739,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11679
11739
|
};
|
|
11680
11740
|
};
|
|
11681
11741
|
output: {
|
|
11682
|
-
template: "
|
|
11742
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11683
11743
|
body: string;
|
|
11684
11744
|
from: string;
|
|
11685
11745
|
subject: string;
|
|
@@ -11698,7 +11758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11698
11758
|
$delete: {
|
|
11699
11759
|
input: {
|
|
11700
11760
|
param: {
|
|
11701
|
-
templateName: "
|
|
11761
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11702
11762
|
};
|
|
11703
11763
|
} & {
|
|
11704
11764
|
header: {
|
|
@@ -11711,7 +11771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11711
11771
|
} | {
|
|
11712
11772
|
input: {
|
|
11713
11773
|
param: {
|
|
11714
|
-
templateName: "
|
|
11774
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11715
11775
|
};
|
|
11716
11776
|
} & {
|
|
11717
11777
|
header: {
|
|
@@ -11728,7 +11788,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11728
11788
|
$post: {
|
|
11729
11789
|
input: {
|
|
11730
11790
|
param: {
|
|
11731
|
-
templateName: "
|
|
11791
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11732
11792
|
};
|
|
11733
11793
|
} & {
|
|
11734
11794
|
header: {
|
|
@@ -12735,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12735
12795
|
json: {
|
|
12736
12796
|
bindings: {
|
|
12737
12797
|
ref: {
|
|
12738
|
-
type?: "
|
|
12798
|
+
type?: "action_name" | "action_id" | undefined;
|
|
12739
12799
|
value?: string | undefined;
|
|
12740
12800
|
id?: string | undefined;
|
|
12741
12801
|
name?: string | undefined;
|
|
@@ -13822,7 +13882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13822
13882
|
scope?: string | undefined;
|
|
13823
13883
|
grant_types?: string[] | undefined;
|
|
13824
13884
|
response_types?: string[] | undefined;
|
|
13825
|
-
token_endpoint_auth_method?: "none" | "
|
|
13885
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13826
13886
|
jwks_uri?: string | undefined;
|
|
13827
13887
|
jwks?: Record<string, unknown> | undefined;
|
|
13828
13888
|
software_id?: string | undefined;
|
|
@@ -13911,7 +13971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13911
13971
|
scope?: string | undefined;
|
|
13912
13972
|
grant_types?: string[] | undefined;
|
|
13913
13973
|
response_types?: string[] | undefined;
|
|
13914
|
-
token_endpoint_auth_method?: "none" | "
|
|
13974
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13915
13975
|
jwks_uri?: string | undefined;
|
|
13916
13976
|
jwks?: Record<string, unknown> | undefined;
|
|
13917
13977
|
software_id?: string | undefined;
|
|
@@ -13968,7 +14028,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13968
14028
|
client_id: string;
|
|
13969
14029
|
redirect_url?: string | undefined;
|
|
13970
14030
|
login_hint?: string | undefined;
|
|
13971
|
-
screen_hint?: "
|
|
14031
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13972
14032
|
};
|
|
13973
14033
|
};
|
|
13974
14034
|
output: {};
|
|
@@ -13980,7 +14040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13980
14040
|
client_id: string;
|
|
13981
14041
|
redirect_url?: string | undefined;
|
|
13982
14042
|
login_hint?: string | undefined;
|
|
13983
|
-
screen_hint?: "
|
|
14043
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13984
14044
|
};
|
|
13985
14045
|
};
|
|
13986
14046
|
output: {
|
|
@@ -14259,17 +14319,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14259
14319
|
authParams: {
|
|
14260
14320
|
username?: string | undefined;
|
|
14261
14321
|
state?: string | undefined;
|
|
14262
|
-
audience?: string | undefined;
|
|
14263
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14264
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14265
14322
|
scope?: string | undefined;
|
|
14266
|
-
|
|
14267
|
-
|
|
14323
|
+
code_challenge?: string | undefined;
|
|
14324
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14268
14325
|
redirect_uri?: string | undefined;
|
|
14326
|
+
nonce?: string | undefined;
|
|
14269
14327
|
act_as?: string | undefined;
|
|
14328
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14329
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14330
|
+
audience?: string | undefined;
|
|
14331
|
+
organization?: string | undefined;
|
|
14270
14332
|
prompt?: string | undefined;
|
|
14271
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14272
|
-
code_challenge?: string | undefined;
|
|
14273
14333
|
ui_locales?: string | undefined;
|
|
14274
14334
|
max_age?: number | undefined;
|
|
14275
14335
|
acr_values?: string | undefined;
|
|
@@ -14295,17 +14355,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14295
14355
|
authParams: {
|
|
14296
14356
|
username?: string | undefined;
|
|
14297
14357
|
state?: string | undefined;
|
|
14298
|
-
audience?: string | undefined;
|
|
14299
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14300
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14301
14358
|
scope?: string | undefined;
|
|
14302
|
-
|
|
14303
|
-
|
|
14359
|
+
code_challenge?: string | undefined;
|
|
14360
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14304
14361
|
redirect_uri?: string | undefined;
|
|
14362
|
+
nonce?: string | undefined;
|
|
14305
14363
|
act_as?: string | undefined;
|
|
14364
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14365
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14366
|
+
audience?: string | undefined;
|
|
14367
|
+
organization?: string | undefined;
|
|
14306
14368
|
prompt?: string | undefined;
|
|
14307
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14308
|
-
code_challenge?: string | undefined;
|
|
14309
14369
|
ui_locales?: string | undefined;
|
|
14310
14370
|
max_age?: number | undefined;
|
|
14311
14371
|
acr_values?: string | undefined;
|
|
@@ -14437,14 +14497,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14437
14497
|
input: {
|
|
14438
14498
|
form: {
|
|
14439
14499
|
token: string;
|
|
14440
|
-
token_type_hint?: "
|
|
14500
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14441
14501
|
client_id?: string | undefined;
|
|
14442
14502
|
client_secret?: string | undefined;
|
|
14443
14503
|
};
|
|
14444
14504
|
} & {
|
|
14445
14505
|
json: {
|
|
14446
14506
|
token: string;
|
|
14447
|
-
token_type_hint?: "
|
|
14507
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14448
14508
|
client_id?: string | undefined;
|
|
14449
14509
|
client_secret?: string | undefined;
|
|
14450
14510
|
};
|
|
@@ -14456,14 +14516,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14456
14516
|
input: {
|
|
14457
14517
|
form: {
|
|
14458
14518
|
token: string;
|
|
14459
|
-
token_type_hint?: "
|
|
14519
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14460
14520
|
client_id?: string | undefined;
|
|
14461
14521
|
client_secret?: string | undefined;
|
|
14462
14522
|
};
|
|
14463
14523
|
} & {
|
|
14464
14524
|
json: {
|
|
14465
14525
|
token: string;
|
|
14466
|
-
token_type_hint?: "
|
|
14526
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14467
14527
|
client_id?: string | undefined;
|
|
14468
14528
|
client_secret?: string | undefined;
|
|
14469
14529
|
};
|
|
@@ -14478,14 +14538,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14478
14538
|
input: {
|
|
14479
14539
|
form: {
|
|
14480
14540
|
token: string;
|
|
14481
|
-
token_type_hint?: "
|
|
14541
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14482
14542
|
client_id?: string | undefined;
|
|
14483
14543
|
client_secret?: string | undefined;
|
|
14484
14544
|
};
|
|
14485
14545
|
} & {
|
|
14486
14546
|
json: {
|
|
14487
14547
|
token: string;
|
|
14488
|
-
token_type_hint?: "
|
|
14548
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14489
14549
|
client_id?: string | undefined;
|
|
14490
14550
|
client_secret?: string | undefined;
|
|
14491
14551
|
};
|
|
@@ -14535,7 +14595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14535
14595
|
client_id: string;
|
|
14536
14596
|
username: string;
|
|
14537
14597
|
otp: string;
|
|
14538
|
-
realm: "
|
|
14598
|
+
realm: "email" | "sms";
|
|
14539
14599
|
} | {
|
|
14540
14600
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14541
14601
|
subject_token: string;
|
|
@@ -14582,7 +14642,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14582
14642
|
client_id: string;
|
|
14583
14643
|
username: string;
|
|
14584
14644
|
otp: string;
|
|
14585
|
-
realm: "
|
|
14645
|
+
realm: "email" | "sms";
|
|
14586
14646
|
} | {
|
|
14587
14647
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14588
14648
|
subject_token: string;
|
|
@@ -14634,7 +14694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14634
14694
|
client_id: string;
|
|
14635
14695
|
username: string;
|
|
14636
14696
|
otp: string;
|
|
14637
|
-
realm: "
|
|
14697
|
+
realm: "email" | "sms";
|
|
14638
14698
|
} | {
|
|
14639
14699
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14640
14700
|
subject_token: string;
|
|
@@ -14681,7 +14741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14681
14741
|
client_id: string;
|
|
14682
14742
|
username: string;
|
|
14683
14743
|
otp: string;
|
|
14684
|
-
realm: "
|
|
14744
|
+
realm: "email" | "sms";
|
|
14685
14745
|
} | {
|
|
14686
14746
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14687
14747
|
subject_token: string;
|
|
@@ -14741,7 +14801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14741
14801
|
client_id: string;
|
|
14742
14802
|
username: string;
|
|
14743
14803
|
otp: string;
|
|
14744
|
-
realm: "
|
|
14804
|
+
realm: "email" | "sms";
|
|
14745
14805
|
} | {
|
|
14746
14806
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14747
14807
|
subject_token: string;
|
|
@@ -14788,7 +14848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14788
14848
|
client_id: string;
|
|
14789
14849
|
username: string;
|
|
14790
14850
|
otp: string;
|
|
14791
|
-
realm: "
|
|
14851
|
+
realm: "email" | "sms";
|
|
14792
14852
|
} | {
|
|
14793
14853
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14794
14854
|
subject_token: string;
|
|
@@ -14843,7 +14903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14843
14903
|
client_id: string;
|
|
14844
14904
|
username: string;
|
|
14845
14905
|
otp: string;
|
|
14846
|
-
realm: "
|
|
14906
|
+
realm: "email" | "sms";
|
|
14847
14907
|
} | {
|
|
14848
14908
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14849
14909
|
subject_token: string;
|
|
@@ -14890,7 +14950,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14890
14950
|
client_id: string;
|
|
14891
14951
|
username: string;
|
|
14892
14952
|
otp: string;
|
|
14893
|
-
realm: "
|
|
14953
|
+
realm: "email" | "sms";
|
|
14894
14954
|
} | {
|
|
14895
14955
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14896
14956
|
subject_token: string;
|
|
@@ -14945,7 +15005,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14945
15005
|
client_id: string;
|
|
14946
15006
|
username: string;
|
|
14947
15007
|
otp: string;
|
|
14948
|
-
realm: "
|
|
15008
|
+
realm: "email" | "sms";
|
|
14949
15009
|
} | {
|
|
14950
15010
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14951
15011
|
subject_token: string;
|
|
@@ -14992,7 +15052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14992
15052
|
client_id: string;
|
|
14993
15053
|
username: string;
|
|
14994
15054
|
otp: string;
|
|
14995
|
-
realm: "
|
|
15055
|
+
realm: "email" | "sms";
|
|
14996
15056
|
} | {
|
|
14997
15057
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14998
15058
|
subject_token: string;
|
|
@@ -16212,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16212
16272
|
$get: {
|
|
16213
16273
|
input: {
|
|
16214
16274
|
param: {
|
|
16215
|
-
screen: "signup" | "
|
|
16275
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16216
16276
|
};
|
|
16217
16277
|
} & {
|
|
16218
16278
|
query: {
|
|
@@ -16228,7 +16288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16228
16288
|
} | {
|
|
16229
16289
|
input: {
|
|
16230
16290
|
param: {
|
|
16231
|
-
screen: "signup" | "
|
|
16291
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16232
16292
|
};
|
|
16233
16293
|
} & {
|
|
16234
16294
|
query: {
|
|
@@ -16244,7 +16304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16244
16304
|
} | {
|
|
16245
16305
|
input: {
|
|
16246
16306
|
param: {
|
|
16247
|
-
screen: "signup" | "
|
|
16307
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16248
16308
|
};
|
|
16249
16309
|
} & {
|
|
16250
16310
|
query: {
|
|
@@ -16264,7 +16324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16264
16324
|
$post: {
|
|
16265
16325
|
input: {
|
|
16266
16326
|
param: {
|
|
16267
|
-
screen: "signup" | "
|
|
16327
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16268
16328
|
};
|
|
16269
16329
|
} & {
|
|
16270
16330
|
query: {
|
|
@@ -16282,7 +16342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16282
16342
|
} | {
|
|
16283
16343
|
input: {
|
|
16284
16344
|
param: {
|
|
16285
|
-
screen: "signup" | "
|
|
16345
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16286
16346
|
};
|
|
16287
16347
|
} & {
|
|
16288
16348
|
query: {
|
|
@@ -16300,7 +16360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16300
16360
|
} | {
|
|
16301
16361
|
input: {
|
|
16302
16362
|
param: {
|
|
16303
|
-
screen: "signup" | "
|
|
16363
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16304
16364
|
};
|
|
16305
16365
|
} & {
|
|
16306
16366
|
query: {
|