authhero 5.17.1 → 5.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/p-35c8b265.entry.js +1 -0
- package/dist/authhero.cjs +118 -122
- package/dist/authhero.d.ts +221 -195
- package/dist/authhero.mjs +8767 -8675
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/emails/defaults/Layout.d.ts +3 -3
- package/dist/types/emails/defaults/PrimaryButton.d.ts +5 -2
- package/dist/types/index.d.ts +212 -195
- package/dist/types/middlewares/index.d.ts +3 -0
- package/dist/types/middlewares/prefer.d.ts +12 -0
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +17 -0
- 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/index.d.ts +185 -168
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
- package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
- package/dist/types/types/Variables.d.ts +2 -0
- package/package.json +2 -2
- package/dist/assets/u/widget/p-f0f9eca3.entry.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
80
|
};
|
|
81
81
|
} & {
|
|
82
82
|
json: {
|
|
83
|
-
type: "
|
|
83
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
84
84
|
phone_number?: string | undefined;
|
|
85
85
|
totp_secret?: string | undefined;
|
|
86
86
|
credential_id?: string | undefined;
|
|
@@ -220,7 +220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
220
220
|
};
|
|
221
221
|
};
|
|
222
222
|
output: {
|
|
223
|
-
name: "email" | "
|
|
223
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
224
224
|
enabled: boolean;
|
|
225
225
|
trial_expired?: boolean | undefined;
|
|
226
226
|
}[];
|
|
@@ -375,7 +375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
375
375
|
$get: {
|
|
376
376
|
input: {
|
|
377
377
|
param: {
|
|
378
|
-
factor_name: "email" | "
|
|
378
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
379
379
|
};
|
|
380
380
|
} & {
|
|
381
381
|
header: {
|
|
@@ -383,7 +383,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
383
383
|
};
|
|
384
384
|
};
|
|
385
385
|
output: {
|
|
386
|
-
name: "email" | "
|
|
386
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
387
387
|
enabled: boolean;
|
|
388
388
|
trial_expired?: boolean | undefined;
|
|
389
389
|
};
|
|
@@ -396,7 +396,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
396
396
|
$put: {
|
|
397
397
|
input: {
|
|
398
398
|
param: {
|
|
399
|
-
factor_name: "email" | "
|
|
399
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
400
400
|
};
|
|
401
401
|
} & {
|
|
402
402
|
header: {
|
|
@@ -408,7 +408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
408
408
|
};
|
|
409
409
|
};
|
|
410
410
|
output: {
|
|
411
|
-
name: "email" | "
|
|
411
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
412
412
|
enabled: boolean;
|
|
413
413
|
trial_expired?: boolean | undefined;
|
|
414
414
|
};
|
|
@@ -934,7 +934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
934
934
|
};
|
|
935
935
|
output: {};
|
|
936
936
|
outputFormat: string;
|
|
937
|
-
status:
|
|
937
|
+
status: 204;
|
|
938
938
|
};
|
|
939
939
|
};
|
|
940
940
|
} & {
|
|
@@ -1153,10 +1153,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1153
1153
|
invitee: {
|
|
1154
1154
|
email?: string | undefined;
|
|
1155
1155
|
};
|
|
1156
|
+
id?: string | undefined;
|
|
1156
1157
|
app_metadata?: Record<string, any> | undefined;
|
|
1157
1158
|
user_metadata?: Record<string, any> | undefined;
|
|
1158
1159
|
connection_id?: string | undefined;
|
|
1159
|
-
id?: string | undefined;
|
|
1160
1160
|
roles?: string[] | undefined;
|
|
1161
1161
|
ttl_sec?: number | undefined;
|
|
1162
1162
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1341,8 +1341,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1341
1341
|
};
|
|
1342
1342
|
} & {
|
|
1343
1343
|
json: {
|
|
1344
|
-
show_as_button?: boolean | undefined;
|
|
1345
1344
|
assign_membership_on_login?: boolean | undefined;
|
|
1345
|
+
show_as_button?: boolean | undefined;
|
|
1346
1346
|
is_signup_enabled?: boolean | undefined;
|
|
1347
1347
|
};
|
|
1348
1348
|
};
|
|
@@ -2584,7 +2584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2584
2584
|
hint?: string | undefined;
|
|
2585
2585
|
messages?: {
|
|
2586
2586
|
text: string;
|
|
2587
|
-
type: "
|
|
2587
|
+
type: "error" | "success" | "info" | "warning";
|
|
2588
2588
|
id?: number | undefined;
|
|
2589
2589
|
}[] | undefined;
|
|
2590
2590
|
required?: boolean | undefined;
|
|
@@ -2602,7 +2602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2602
2602
|
hint?: string | undefined;
|
|
2603
2603
|
messages?: {
|
|
2604
2604
|
text: string;
|
|
2605
|
-
type: "
|
|
2605
|
+
type: "error" | "success" | "info" | "warning";
|
|
2606
2606
|
id?: number | undefined;
|
|
2607
2607
|
}[] | undefined;
|
|
2608
2608
|
required?: boolean | undefined;
|
|
@@ -2626,7 +2626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2626
2626
|
hint?: string | undefined;
|
|
2627
2627
|
messages?: {
|
|
2628
2628
|
text: string;
|
|
2629
|
-
type: "
|
|
2629
|
+
type: "error" | "success" | "info" | "warning";
|
|
2630
2630
|
id?: number | undefined;
|
|
2631
2631
|
}[] | undefined;
|
|
2632
2632
|
required?: boolean | undefined;
|
|
@@ -2650,7 +2650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2650
2650
|
hint?: string | undefined;
|
|
2651
2651
|
messages?: {
|
|
2652
2652
|
text: string;
|
|
2653
|
-
type: "
|
|
2653
|
+
type: "error" | "success" | "info" | "warning";
|
|
2654
2654
|
id?: number | undefined;
|
|
2655
2655
|
}[] | undefined;
|
|
2656
2656
|
required?: boolean | undefined;
|
|
@@ -2679,7 +2679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2679
2679
|
hint?: string | undefined;
|
|
2680
2680
|
messages?: {
|
|
2681
2681
|
text: string;
|
|
2682
|
-
type: "
|
|
2682
|
+
type: "error" | "success" | "info" | "warning";
|
|
2683
2683
|
id?: number | undefined;
|
|
2684
2684
|
}[] | undefined;
|
|
2685
2685
|
required?: boolean | undefined;
|
|
@@ -2694,7 +2694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2694
2694
|
hint?: string | undefined;
|
|
2695
2695
|
messages?: {
|
|
2696
2696
|
text: string;
|
|
2697
|
-
type: "
|
|
2697
|
+
type: "error" | "success" | "info" | "warning";
|
|
2698
2698
|
id?: number | undefined;
|
|
2699
2699
|
}[] | undefined;
|
|
2700
2700
|
required?: boolean | undefined;
|
|
@@ -2715,7 +2715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2715
2715
|
hint?: string | undefined;
|
|
2716
2716
|
messages?: {
|
|
2717
2717
|
text: string;
|
|
2718
|
-
type: "
|
|
2718
|
+
type: "error" | "success" | "info" | "warning";
|
|
2719
2719
|
id?: number | undefined;
|
|
2720
2720
|
}[] | undefined;
|
|
2721
2721
|
required?: boolean | undefined;
|
|
@@ -2740,7 +2740,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2740
2740
|
hint?: string | undefined;
|
|
2741
2741
|
messages?: {
|
|
2742
2742
|
text: string;
|
|
2743
|
-
type: "
|
|
2743
|
+
type: "error" | "success" | "info" | "warning";
|
|
2744
2744
|
id?: number | undefined;
|
|
2745
2745
|
}[] | undefined;
|
|
2746
2746
|
required?: boolean | undefined;
|
|
@@ -2759,7 +2759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2759
2759
|
hint?: string | undefined;
|
|
2760
2760
|
messages?: {
|
|
2761
2761
|
text: string;
|
|
2762
|
-
type: "
|
|
2762
|
+
type: "error" | "success" | "info" | "warning";
|
|
2763
2763
|
id?: number | undefined;
|
|
2764
2764
|
}[] | undefined;
|
|
2765
2765
|
required?: boolean | undefined;
|
|
@@ -2779,7 +2779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2779
2779
|
hint?: string | undefined;
|
|
2780
2780
|
messages?: {
|
|
2781
2781
|
text: string;
|
|
2782
|
-
type: "
|
|
2782
|
+
type: "error" | "success" | "info" | "warning";
|
|
2783
2783
|
id?: number | undefined;
|
|
2784
2784
|
}[] | undefined;
|
|
2785
2785
|
required?: boolean | undefined;
|
|
@@ -2798,7 +2798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2798
2798
|
hint?: string | undefined;
|
|
2799
2799
|
messages?: {
|
|
2800
2800
|
text: string;
|
|
2801
|
-
type: "
|
|
2801
|
+
type: "error" | "success" | "info" | "warning";
|
|
2802
2802
|
id?: number | undefined;
|
|
2803
2803
|
}[] | undefined;
|
|
2804
2804
|
required?: boolean | undefined;
|
|
@@ -2820,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2820
2820
|
hint?: string | undefined;
|
|
2821
2821
|
messages?: {
|
|
2822
2822
|
text: string;
|
|
2823
|
-
type: "
|
|
2823
|
+
type: "error" | "success" | "info" | "warning";
|
|
2824
2824
|
id?: number | undefined;
|
|
2825
2825
|
}[] | undefined;
|
|
2826
2826
|
required?: boolean | undefined;
|
|
@@ -2842,7 +2842,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2842
2842
|
hint?: string | undefined;
|
|
2843
2843
|
messages?: {
|
|
2844
2844
|
text: string;
|
|
2845
|
-
type: "
|
|
2845
|
+
type: "error" | "success" | "info" | "warning";
|
|
2846
2846
|
id?: number | undefined;
|
|
2847
2847
|
}[] | undefined;
|
|
2848
2848
|
required?: boolean | undefined;
|
|
@@ -2861,7 +2861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2861
2861
|
hint?: string | undefined;
|
|
2862
2862
|
messages?: {
|
|
2863
2863
|
text: string;
|
|
2864
|
-
type: "
|
|
2864
|
+
type: "error" | "success" | "info" | "warning";
|
|
2865
2865
|
id?: number | undefined;
|
|
2866
2866
|
}[] | undefined;
|
|
2867
2867
|
required?: boolean | undefined;
|
|
@@ -2886,7 +2886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2886
2886
|
hint?: string | undefined;
|
|
2887
2887
|
messages?: {
|
|
2888
2888
|
text: string;
|
|
2889
|
-
type: "
|
|
2889
|
+
type: "error" | "success" | "info" | "warning";
|
|
2890
2890
|
id?: number | undefined;
|
|
2891
2891
|
}[] | undefined;
|
|
2892
2892
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2907,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2907
2907
|
hint?: string | undefined;
|
|
2908
2908
|
messages?: {
|
|
2909
2909
|
text: string;
|
|
2910
|
-
type: "
|
|
2910
|
+
type: "error" | "success" | "info" | "warning";
|
|
2911
2911
|
id?: number | undefined;
|
|
2912
2912
|
}[] | undefined;
|
|
2913
2913
|
required?: boolean | undefined;
|
|
@@ -2928,7 +2928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2928
2928
|
hint?: string | undefined;
|
|
2929
2929
|
messages?: {
|
|
2930
2930
|
text: string;
|
|
2931
|
-
type: "
|
|
2931
|
+
type: "error" | "success" | "info" | "warning";
|
|
2932
2932
|
id?: number | undefined;
|
|
2933
2933
|
}[] | undefined;
|
|
2934
2934
|
required?: boolean | undefined;
|
|
@@ -3161,7 +3161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3161
3161
|
hint?: string | undefined;
|
|
3162
3162
|
messages?: {
|
|
3163
3163
|
text: string;
|
|
3164
|
-
type: "
|
|
3164
|
+
type: "error" | "success" | "info" | "warning";
|
|
3165
3165
|
id?: number | undefined;
|
|
3166
3166
|
}[] | undefined;
|
|
3167
3167
|
required?: boolean | undefined;
|
|
@@ -3179,7 +3179,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3179
3179
|
hint?: string | undefined;
|
|
3180
3180
|
messages?: {
|
|
3181
3181
|
text: string;
|
|
3182
|
-
type: "
|
|
3182
|
+
type: "error" | "success" | "info" | "warning";
|
|
3183
3183
|
id?: number | undefined;
|
|
3184
3184
|
}[] | undefined;
|
|
3185
3185
|
required?: boolean | undefined;
|
|
@@ -3203,7 +3203,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3203
3203
|
hint?: string | undefined;
|
|
3204
3204
|
messages?: {
|
|
3205
3205
|
text: string;
|
|
3206
|
-
type: "
|
|
3206
|
+
type: "error" | "success" | "info" | "warning";
|
|
3207
3207
|
id?: number | undefined;
|
|
3208
3208
|
}[] | undefined;
|
|
3209
3209
|
required?: boolean | undefined;
|
|
@@ -3227,7 +3227,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3227
3227
|
hint?: string | undefined;
|
|
3228
3228
|
messages?: {
|
|
3229
3229
|
text: string;
|
|
3230
|
-
type: "
|
|
3230
|
+
type: "error" | "success" | "info" | "warning";
|
|
3231
3231
|
id?: number | undefined;
|
|
3232
3232
|
}[] | undefined;
|
|
3233
3233
|
required?: boolean | undefined;
|
|
@@ -3256,7 +3256,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3256
3256
|
hint?: string | undefined;
|
|
3257
3257
|
messages?: {
|
|
3258
3258
|
text: string;
|
|
3259
|
-
type: "
|
|
3259
|
+
type: "error" | "success" | "info" | "warning";
|
|
3260
3260
|
id?: number | undefined;
|
|
3261
3261
|
}[] | undefined;
|
|
3262
3262
|
required?: boolean | undefined;
|
|
@@ -3271,7 +3271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3271
3271
|
hint?: string | undefined;
|
|
3272
3272
|
messages?: {
|
|
3273
3273
|
text: string;
|
|
3274
|
-
type: "
|
|
3274
|
+
type: "error" | "success" | "info" | "warning";
|
|
3275
3275
|
id?: number | undefined;
|
|
3276
3276
|
}[] | undefined;
|
|
3277
3277
|
required?: boolean | undefined;
|
|
@@ -3292,7 +3292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3292
3292
|
hint?: string | undefined;
|
|
3293
3293
|
messages?: {
|
|
3294
3294
|
text: string;
|
|
3295
|
-
type: "
|
|
3295
|
+
type: "error" | "success" | "info" | "warning";
|
|
3296
3296
|
id?: number | undefined;
|
|
3297
3297
|
}[] | undefined;
|
|
3298
3298
|
required?: boolean | undefined;
|
|
@@ -3317,7 +3317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3317
3317
|
hint?: string | undefined;
|
|
3318
3318
|
messages?: {
|
|
3319
3319
|
text: string;
|
|
3320
|
-
type: "
|
|
3320
|
+
type: "error" | "success" | "info" | "warning";
|
|
3321
3321
|
id?: number | undefined;
|
|
3322
3322
|
}[] | undefined;
|
|
3323
3323
|
required?: boolean | undefined;
|
|
@@ -3336,7 +3336,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3336
3336
|
hint?: string | undefined;
|
|
3337
3337
|
messages?: {
|
|
3338
3338
|
text: string;
|
|
3339
|
-
type: "
|
|
3339
|
+
type: "error" | "success" | "info" | "warning";
|
|
3340
3340
|
id?: number | undefined;
|
|
3341
3341
|
}[] | undefined;
|
|
3342
3342
|
required?: boolean | undefined;
|
|
@@ -3356,7 +3356,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3356
3356
|
hint?: string | undefined;
|
|
3357
3357
|
messages?: {
|
|
3358
3358
|
text: string;
|
|
3359
|
-
type: "
|
|
3359
|
+
type: "error" | "success" | "info" | "warning";
|
|
3360
3360
|
id?: number | undefined;
|
|
3361
3361
|
}[] | undefined;
|
|
3362
3362
|
required?: boolean | undefined;
|
|
@@ -3375,7 +3375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3375
3375
|
hint?: string | undefined;
|
|
3376
3376
|
messages?: {
|
|
3377
3377
|
text: string;
|
|
3378
|
-
type: "
|
|
3378
|
+
type: "error" | "success" | "info" | "warning";
|
|
3379
3379
|
id?: number | undefined;
|
|
3380
3380
|
}[] | undefined;
|
|
3381
3381
|
required?: boolean | undefined;
|
|
@@ -3397,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3397
3397
|
hint?: string | undefined;
|
|
3398
3398
|
messages?: {
|
|
3399
3399
|
text: string;
|
|
3400
|
-
type: "
|
|
3400
|
+
type: "error" | "success" | "info" | "warning";
|
|
3401
3401
|
id?: number | undefined;
|
|
3402
3402
|
}[] | undefined;
|
|
3403
3403
|
required?: boolean | undefined;
|
|
@@ -3419,7 +3419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3419
3419
|
hint?: string | undefined;
|
|
3420
3420
|
messages?: {
|
|
3421
3421
|
text: string;
|
|
3422
|
-
type: "
|
|
3422
|
+
type: "error" | "success" | "info" | "warning";
|
|
3423
3423
|
id?: number | undefined;
|
|
3424
3424
|
}[] | undefined;
|
|
3425
3425
|
required?: boolean | undefined;
|
|
@@ -3438,7 +3438,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3438
3438
|
hint?: string | undefined;
|
|
3439
3439
|
messages?: {
|
|
3440
3440
|
text: string;
|
|
3441
|
-
type: "
|
|
3441
|
+
type: "error" | "success" | "info" | "warning";
|
|
3442
3442
|
id?: number | undefined;
|
|
3443
3443
|
}[] | undefined;
|
|
3444
3444
|
required?: boolean | undefined;
|
|
@@ -3463,7 +3463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3463
3463
|
hint?: string | undefined;
|
|
3464
3464
|
messages?: {
|
|
3465
3465
|
text: string;
|
|
3466
|
-
type: "
|
|
3466
|
+
type: "error" | "success" | "info" | "warning";
|
|
3467
3467
|
id?: number | undefined;
|
|
3468
3468
|
}[] | undefined;
|
|
3469
3469
|
required?: boolean | undefined;
|
|
@@ -3484,7 +3484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3484
3484
|
hint?: string | undefined;
|
|
3485
3485
|
messages?: {
|
|
3486
3486
|
text: string;
|
|
3487
|
-
type: "
|
|
3487
|
+
type: "error" | "success" | "info" | "warning";
|
|
3488
3488
|
id?: number | undefined;
|
|
3489
3489
|
}[] | undefined;
|
|
3490
3490
|
required?: boolean | undefined;
|
|
@@ -3505,7 +3505,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3505
3505
|
hint?: string | undefined;
|
|
3506
3506
|
messages?: {
|
|
3507
3507
|
text: string;
|
|
3508
|
-
type: "
|
|
3508
|
+
type: "error" | "success" | "info" | "warning";
|
|
3509
3509
|
id?: number | undefined;
|
|
3510
3510
|
}[] | undefined;
|
|
3511
3511
|
required?: boolean | undefined;
|
|
@@ -3753,7 +3753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3753
3753
|
hint?: string | undefined;
|
|
3754
3754
|
messages?: {
|
|
3755
3755
|
text: string;
|
|
3756
|
-
type: "
|
|
3756
|
+
type: "error" | "success" | "info" | "warning";
|
|
3757
3757
|
id?: number | undefined;
|
|
3758
3758
|
}[] | undefined;
|
|
3759
3759
|
required?: boolean | undefined;
|
|
@@ -3771,7 +3771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3771
3771
|
hint?: string | undefined;
|
|
3772
3772
|
messages?: {
|
|
3773
3773
|
text: string;
|
|
3774
|
-
type: "
|
|
3774
|
+
type: "error" | "success" | "info" | "warning";
|
|
3775
3775
|
id?: number | undefined;
|
|
3776
3776
|
}[] | undefined;
|
|
3777
3777
|
required?: boolean | undefined;
|
|
@@ -3795,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3795
3795
|
hint?: string | undefined;
|
|
3796
3796
|
messages?: {
|
|
3797
3797
|
text: string;
|
|
3798
|
-
type: "
|
|
3798
|
+
type: "error" | "success" | "info" | "warning";
|
|
3799
3799
|
id?: number | undefined;
|
|
3800
3800
|
}[] | undefined;
|
|
3801
3801
|
required?: boolean | undefined;
|
|
@@ -3819,7 +3819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3819
3819
|
hint?: string | undefined;
|
|
3820
3820
|
messages?: {
|
|
3821
3821
|
text: string;
|
|
3822
|
-
type: "
|
|
3822
|
+
type: "error" | "success" | "info" | "warning";
|
|
3823
3823
|
id?: number | undefined;
|
|
3824
3824
|
}[] | undefined;
|
|
3825
3825
|
required?: boolean | undefined;
|
|
@@ -3848,7 +3848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3848
3848
|
hint?: string | undefined;
|
|
3849
3849
|
messages?: {
|
|
3850
3850
|
text: string;
|
|
3851
|
-
type: "
|
|
3851
|
+
type: "error" | "success" | "info" | "warning";
|
|
3852
3852
|
id?: number | undefined;
|
|
3853
3853
|
}[] | undefined;
|
|
3854
3854
|
required?: boolean | undefined;
|
|
@@ -3863,7 +3863,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3863
3863
|
hint?: string | undefined;
|
|
3864
3864
|
messages?: {
|
|
3865
3865
|
text: string;
|
|
3866
|
-
type: "
|
|
3866
|
+
type: "error" | "success" | "info" | "warning";
|
|
3867
3867
|
id?: number | undefined;
|
|
3868
3868
|
}[] | undefined;
|
|
3869
3869
|
required?: boolean | undefined;
|
|
@@ -3884,7 +3884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3884
3884
|
hint?: string | undefined;
|
|
3885
3885
|
messages?: {
|
|
3886
3886
|
text: string;
|
|
3887
|
-
type: "
|
|
3887
|
+
type: "error" | "success" | "info" | "warning";
|
|
3888
3888
|
id?: number | undefined;
|
|
3889
3889
|
}[] | undefined;
|
|
3890
3890
|
required?: boolean | undefined;
|
|
@@ -3909,7 +3909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3909
3909
|
hint?: string | undefined;
|
|
3910
3910
|
messages?: {
|
|
3911
3911
|
text: string;
|
|
3912
|
-
type: "
|
|
3912
|
+
type: "error" | "success" | "info" | "warning";
|
|
3913
3913
|
id?: number | undefined;
|
|
3914
3914
|
}[] | undefined;
|
|
3915
3915
|
required?: boolean | undefined;
|
|
@@ -3928,7 +3928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3928
3928
|
hint?: string | undefined;
|
|
3929
3929
|
messages?: {
|
|
3930
3930
|
text: string;
|
|
3931
|
-
type: "
|
|
3931
|
+
type: "error" | "success" | "info" | "warning";
|
|
3932
3932
|
id?: number | undefined;
|
|
3933
3933
|
}[] | undefined;
|
|
3934
3934
|
required?: boolean | undefined;
|
|
@@ -3948,7 +3948,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3948
3948
|
hint?: string | undefined;
|
|
3949
3949
|
messages?: {
|
|
3950
3950
|
text: string;
|
|
3951
|
-
type: "
|
|
3951
|
+
type: "error" | "success" | "info" | "warning";
|
|
3952
3952
|
id?: number | undefined;
|
|
3953
3953
|
}[] | undefined;
|
|
3954
3954
|
required?: boolean | undefined;
|
|
@@ -3967,7 +3967,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3967
3967
|
hint?: string | undefined;
|
|
3968
3968
|
messages?: {
|
|
3969
3969
|
text: string;
|
|
3970
|
-
type: "
|
|
3970
|
+
type: "error" | "success" | "info" | "warning";
|
|
3971
3971
|
id?: number | undefined;
|
|
3972
3972
|
}[] | undefined;
|
|
3973
3973
|
required?: boolean | undefined;
|
|
@@ -3989,7 +3989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3989
3989
|
hint?: string | undefined;
|
|
3990
3990
|
messages?: {
|
|
3991
3991
|
text: string;
|
|
3992
|
-
type: "
|
|
3992
|
+
type: "error" | "success" | "info" | "warning";
|
|
3993
3993
|
id?: number | undefined;
|
|
3994
3994
|
}[] | undefined;
|
|
3995
3995
|
required?: boolean | undefined;
|
|
@@ -4011,7 +4011,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4011
4011
|
hint?: string | undefined;
|
|
4012
4012
|
messages?: {
|
|
4013
4013
|
text: string;
|
|
4014
|
-
type: "
|
|
4014
|
+
type: "error" | "success" | "info" | "warning";
|
|
4015
4015
|
id?: number | undefined;
|
|
4016
4016
|
}[] | undefined;
|
|
4017
4017
|
required?: boolean | undefined;
|
|
@@ -4030,7 +4030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4030
4030
|
hint?: string | undefined;
|
|
4031
4031
|
messages?: {
|
|
4032
4032
|
text: string;
|
|
4033
|
-
type: "
|
|
4033
|
+
type: "error" | "success" | "info" | "warning";
|
|
4034
4034
|
id?: number | undefined;
|
|
4035
4035
|
}[] | undefined;
|
|
4036
4036
|
required?: boolean | undefined;
|
|
@@ -4055,7 +4055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4055
4055
|
hint?: string | undefined;
|
|
4056
4056
|
messages?: {
|
|
4057
4057
|
text: string;
|
|
4058
|
-
type: "
|
|
4058
|
+
type: "error" | "success" | "info" | "warning";
|
|
4059
4059
|
id?: number | undefined;
|
|
4060
4060
|
}[] | undefined;
|
|
4061
4061
|
required?: boolean | undefined;
|
|
@@ -4076,7 +4076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4076
4076
|
hint?: string | undefined;
|
|
4077
4077
|
messages?: {
|
|
4078
4078
|
text: string;
|
|
4079
|
-
type: "
|
|
4079
|
+
type: "error" | "success" | "info" | "warning";
|
|
4080
4080
|
id?: number | undefined;
|
|
4081
4081
|
}[] | undefined;
|
|
4082
4082
|
required?: boolean | undefined;
|
|
@@ -4097,7 +4097,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4097
4097
|
hint?: string | undefined;
|
|
4098
4098
|
messages?: {
|
|
4099
4099
|
text: string;
|
|
4100
|
-
type: "
|
|
4100
|
+
type: "error" | "success" | "info" | "warning";
|
|
4101
4101
|
id?: number | undefined;
|
|
4102
4102
|
}[] | undefined;
|
|
4103
4103
|
required?: boolean | undefined;
|
|
@@ -4351,7 +4351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4351
4351
|
hint?: string | undefined;
|
|
4352
4352
|
messages?: {
|
|
4353
4353
|
text: string;
|
|
4354
|
-
type: "
|
|
4354
|
+
type: "error" | "success" | "info" | "warning";
|
|
4355
4355
|
id?: number | undefined;
|
|
4356
4356
|
}[] | undefined;
|
|
4357
4357
|
required?: boolean | undefined;
|
|
@@ -4369,7 +4369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4369
4369
|
hint?: string | undefined;
|
|
4370
4370
|
messages?: {
|
|
4371
4371
|
text: string;
|
|
4372
|
-
type: "
|
|
4372
|
+
type: "error" | "success" | "info" | "warning";
|
|
4373
4373
|
id?: number | undefined;
|
|
4374
4374
|
}[] | undefined;
|
|
4375
4375
|
required?: boolean | undefined;
|
|
@@ -4393,7 +4393,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4393
4393
|
hint?: string | undefined;
|
|
4394
4394
|
messages?: {
|
|
4395
4395
|
text: string;
|
|
4396
|
-
type: "
|
|
4396
|
+
type: "error" | "success" | "info" | "warning";
|
|
4397
4397
|
id?: number | undefined;
|
|
4398
4398
|
}[] | undefined;
|
|
4399
4399
|
required?: boolean | undefined;
|
|
@@ -4417,7 +4417,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4417
4417
|
hint?: string | undefined;
|
|
4418
4418
|
messages?: {
|
|
4419
4419
|
text: string;
|
|
4420
|
-
type: "
|
|
4420
|
+
type: "error" | "success" | "info" | "warning";
|
|
4421
4421
|
id?: number | undefined;
|
|
4422
4422
|
}[] | undefined;
|
|
4423
4423
|
required?: boolean | undefined;
|
|
@@ -4442,7 +4442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4442
4442
|
hint?: string | undefined;
|
|
4443
4443
|
messages?: {
|
|
4444
4444
|
text: string;
|
|
4445
|
-
type: "
|
|
4445
|
+
type: "error" | "success" | "info" | "warning";
|
|
4446
4446
|
id?: number | undefined;
|
|
4447
4447
|
}[] | undefined;
|
|
4448
4448
|
required?: boolean | undefined;
|
|
@@ -4457,7 +4457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4457
4457
|
hint?: string | undefined;
|
|
4458
4458
|
messages?: {
|
|
4459
4459
|
text: string;
|
|
4460
|
-
type: "
|
|
4460
|
+
type: "error" | "success" | "info" | "warning";
|
|
4461
4461
|
id?: number | undefined;
|
|
4462
4462
|
}[] | undefined;
|
|
4463
4463
|
required?: boolean | undefined;
|
|
@@ -4478,7 +4478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4478
4478
|
hint?: string | undefined;
|
|
4479
4479
|
messages?: {
|
|
4480
4480
|
text: string;
|
|
4481
|
-
type: "
|
|
4481
|
+
type: "error" | "success" | "info" | "warning";
|
|
4482
4482
|
id?: number | undefined;
|
|
4483
4483
|
}[] | undefined;
|
|
4484
4484
|
required?: boolean | undefined;
|
|
@@ -4503,7 +4503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4503
4503
|
hint?: string | undefined;
|
|
4504
4504
|
messages?: {
|
|
4505
4505
|
text: string;
|
|
4506
|
-
type: "
|
|
4506
|
+
type: "error" | "success" | "info" | "warning";
|
|
4507
4507
|
id?: number | undefined;
|
|
4508
4508
|
}[] | undefined;
|
|
4509
4509
|
required?: boolean | undefined;
|
|
@@ -4522,7 +4522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4522
4522
|
hint?: string | undefined;
|
|
4523
4523
|
messages?: {
|
|
4524
4524
|
text: string;
|
|
4525
|
-
type: "
|
|
4525
|
+
type: "error" | "success" | "info" | "warning";
|
|
4526
4526
|
id?: number | undefined;
|
|
4527
4527
|
}[] | undefined;
|
|
4528
4528
|
required?: boolean | undefined;
|
|
@@ -4542,7 +4542,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4542
4542
|
hint?: string | undefined;
|
|
4543
4543
|
messages?: {
|
|
4544
4544
|
text: string;
|
|
4545
|
-
type: "
|
|
4545
|
+
type: "error" | "success" | "info" | "warning";
|
|
4546
4546
|
id?: number | undefined;
|
|
4547
4547
|
}[] | undefined;
|
|
4548
4548
|
required?: boolean | undefined;
|
|
@@ -4561,7 +4561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4561
4561
|
hint?: string | undefined;
|
|
4562
4562
|
messages?: {
|
|
4563
4563
|
text: string;
|
|
4564
|
-
type: "
|
|
4564
|
+
type: "error" | "success" | "info" | "warning";
|
|
4565
4565
|
id?: number | undefined;
|
|
4566
4566
|
}[] | undefined;
|
|
4567
4567
|
required?: boolean | undefined;
|
|
@@ -4583,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4583
4583
|
hint?: string | undefined;
|
|
4584
4584
|
messages?: {
|
|
4585
4585
|
text: string;
|
|
4586
|
-
type: "
|
|
4586
|
+
type: "error" | "success" | "info" | "warning";
|
|
4587
4587
|
id?: number | undefined;
|
|
4588
4588
|
}[] | undefined;
|
|
4589
4589
|
required?: boolean | undefined;
|
|
@@ -4605,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4605
4605
|
hint?: string | undefined;
|
|
4606
4606
|
messages?: {
|
|
4607
4607
|
text: string;
|
|
4608
|
-
type: "
|
|
4608
|
+
type: "error" | "success" | "info" | "warning";
|
|
4609
4609
|
id?: number | undefined;
|
|
4610
4610
|
}[] | undefined;
|
|
4611
4611
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4624,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4624
4624
|
hint?: string | undefined;
|
|
4625
4625
|
messages?: {
|
|
4626
4626
|
text: string;
|
|
4627
|
-
type: "
|
|
4627
|
+
type: "error" | "success" | "info" | "warning";
|
|
4628
4628
|
id?: number | undefined;
|
|
4629
4629
|
}[] | undefined;
|
|
4630
4630
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4649
4649
|
hint?: string | undefined;
|
|
4650
4650
|
messages?: {
|
|
4651
4651
|
text: string;
|
|
4652
|
-
type: "
|
|
4652
|
+
type: "error" | "success" | "info" | "warning";
|
|
4653
4653
|
id?: number | undefined;
|
|
4654
4654
|
}[] | undefined;
|
|
4655
4655
|
required?: boolean | undefined;
|
|
@@ -4670,7 +4670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4670
4670
|
hint?: string | undefined;
|
|
4671
4671
|
messages?: {
|
|
4672
4672
|
text: string;
|
|
4673
|
-
type: "
|
|
4673
|
+
type: "error" | "success" | "info" | "warning";
|
|
4674
4674
|
id?: number | undefined;
|
|
4675
4675
|
}[] | undefined;
|
|
4676
4676
|
required?: boolean | undefined;
|
|
@@ -4691,7 +4691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4691
4691
|
hint?: string | undefined;
|
|
4692
4692
|
messages?: {
|
|
4693
4693
|
text: string;
|
|
4694
|
-
type: "
|
|
4694
|
+
type: "error" | "success" | "info" | "warning";
|
|
4695
4695
|
id?: number | undefined;
|
|
4696
4696
|
}[] | undefined;
|
|
4697
4697
|
required?: boolean | undefined;
|
|
@@ -4922,7 +4922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4922
4922
|
hint?: string | undefined;
|
|
4923
4923
|
messages?: {
|
|
4924
4924
|
text: string;
|
|
4925
|
-
type: "
|
|
4925
|
+
type: "error" | "success" | "info" | "warning";
|
|
4926
4926
|
id?: number | undefined;
|
|
4927
4927
|
}[] | undefined;
|
|
4928
4928
|
required?: boolean | undefined;
|
|
@@ -4940,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4940
4940
|
hint?: string | undefined;
|
|
4941
4941
|
messages?: {
|
|
4942
4942
|
text: string;
|
|
4943
|
-
type: "
|
|
4943
|
+
type: "error" | "success" | "info" | "warning";
|
|
4944
4944
|
id?: number | undefined;
|
|
4945
4945
|
}[] | undefined;
|
|
4946
4946
|
required?: boolean | undefined;
|
|
@@ -4964,7 +4964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4964
4964
|
hint?: string | undefined;
|
|
4965
4965
|
messages?: {
|
|
4966
4966
|
text: string;
|
|
4967
|
-
type: "
|
|
4967
|
+
type: "error" | "success" | "info" | "warning";
|
|
4968
4968
|
id?: number | undefined;
|
|
4969
4969
|
}[] | undefined;
|
|
4970
4970
|
required?: boolean | undefined;
|
|
@@ -4988,7 +4988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4988
4988
|
hint?: string | undefined;
|
|
4989
4989
|
messages?: {
|
|
4990
4990
|
text: string;
|
|
4991
|
-
type: "
|
|
4991
|
+
type: "error" | "success" | "info" | "warning";
|
|
4992
4992
|
id?: number | undefined;
|
|
4993
4993
|
}[] | undefined;
|
|
4994
4994
|
required?: boolean | undefined;
|
|
@@ -5017,7 +5017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5017
5017
|
hint?: string | undefined;
|
|
5018
5018
|
messages?: {
|
|
5019
5019
|
text: string;
|
|
5020
|
-
type: "
|
|
5020
|
+
type: "error" | "success" | "info" | "warning";
|
|
5021
5021
|
id?: number | undefined;
|
|
5022
5022
|
}[] | undefined;
|
|
5023
5023
|
required?: boolean | undefined;
|
|
@@ -5032,7 +5032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5032
5032
|
hint?: string | undefined;
|
|
5033
5033
|
messages?: {
|
|
5034
5034
|
text: string;
|
|
5035
|
-
type: "
|
|
5035
|
+
type: "error" | "success" | "info" | "warning";
|
|
5036
5036
|
id?: number | undefined;
|
|
5037
5037
|
}[] | undefined;
|
|
5038
5038
|
required?: boolean | undefined;
|
|
@@ -5053,7 +5053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5053
5053
|
hint?: string | undefined;
|
|
5054
5054
|
messages?: {
|
|
5055
5055
|
text: string;
|
|
5056
|
-
type: "
|
|
5056
|
+
type: "error" | "success" | "info" | "warning";
|
|
5057
5057
|
id?: number | undefined;
|
|
5058
5058
|
}[] | undefined;
|
|
5059
5059
|
required?: boolean | undefined;
|
|
@@ -5078,7 +5078,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5078
5078
|
hint?: string | undefined;
|
|
5079
5079
|
messages?: {
|
|
5080
5080
|
text: string;
|
|
5081
|
-
type: "
|
|
5081
|
+
type: "error" | "success" | "info" | "warning";
|
|
5082
5082
|
id?: number | undefined;
|
|
5083
5083
|
}[] | undefined;
|
|
5084
5084
|
required?: boolean | undefined;
|
|
@@ -5097,7 +5097,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5097
5097
|
hint?: string | undefined;
|
|
5098
5098
|
messages?: {
|
|
5099
5099
|
text: string;
|
|
5100
|
-
type: "
|
|
5100
|
+
type: "error" | "success" | "info" | "warning";
|
|
5101
5101
|
id?: number | undefined;
|
|
5102
5102
|
}[] | undefined;
|
|
5103
5103
|
required?: boolean | undefined;
|
|
@@ -5117,7 +5117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5117
5117
|
hint?: string | undefined;
|
|
5118
5118
|
messages?: {
|
|
5119
5119
|
text: string;
|
|
5120
|
-
type: "
|
|
5120
|
+
type: "error" | "success" | "info" | "warning";
|
|
5121
5121
|
id?: number | undefined;
|
|
5122
5122
|
}[] | undefined;
|
|
5123
5123
|
required?: boolean | undefined;
|
|
@@ -5136,7 +5136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5136
5136
|
hint?: string | undefined;
|
|
5137
5137
|
messages?: {
|
|
5138
5138
|
text: string;
|
|
5139
|
-
type: "
|
|
5139
|
+
type: "error" | "success" | "info" | "warning";
|
|
5140
5140
|
id?: number | undefined;
|
|
5141
5141
|
}[] | undefined;
|
|
5142
5142
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5158,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5158
5158
|
hint?: string | undefined;
|
|
5159
5159
|
messages?: {
|
|
5160
5160
|
text: string;
|
|
5161
|
-
type: "
|
|
5161
|
+
type: "error" | "success" | "info" | "warning";
|
|
5162
5162
|
id?: number | undefined;
|
|
5163
5163
|
}[] | undefined;
|
|
5164
5164
|
required?: boolean | undefined;
|
|
@@ -5180,7 +5180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5180
5180
|
hint?: string | undefined;
|
|
5181
5181
|
messages?: {
|
|
5182
5182
|
text: string;
|
|
5183
|
-
type: "
|
|
5183
|
+
type: "error" | "success" | "info" | "warning";
|
|
5184
5184
|
id?: number | undefined;
|
|
5185
5185
|
}[] | undefined;
|
|
5186
5186
|
required?: boolean | undefined;
|
|
@@ -5199,7 +5199,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5199
5199
|
hint?: string | undefined;
|
|
5200
5200
|
messages?: {
|
|
5201
5201
|
text: string;
|
|
5202
|
-
type: "
|
|
5202
|
+
type: "error" | "success" | "info" | "warning";
|
|
5203
5203
|
id?: number | undefined;
|
|
5204
5204
|
}[] | undefined;
|
|
5205
5205
|
required?: boolean | undefined;
|
|
@@ -5224,7 +5224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5224
5224
|
hint?: string | undefined;
|
|
5225
5225
|
messages?: {
|
|
5226
5226
|
text: string;
|
|
5227
|
-
type: "
|
|
5227
|
+
type: "error" | "success" | "info" | "warning";
|
|
5228
5228
|
id?: number | undefined;
|
|
5229
5229
|
}[] | undefined;
|
|
5230
5230
|
required?: boolean | undefined;
|
|
@@ -5245,7 +5245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5245
5245
|
hint?: string | undefined;
|
|
5246
5246
|
messages?: {
|
|
5247
5247
|
text: string;
|
|
5248
|
-
type: "
|
|
5248
|
+
type: "error" | "success" | "info" | "warning";
|
|
5249
5249
|
id?: number | undefined;
|
|
5250
5250
|
}[] | undefined;
|
|
5251
5251
|
required?: boolean | undefined;
|
|
@@ -5266,7 +5266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5266
5266
|
hint?: string | undefined;
|
|
5267
5267
|
messages?: {
|
|
5268
5268
|
text: string;
|
|
5269
|
-
type: "
|
|
5269
|
+
type: "error" | "success" | "info" | "warning";
|
|
5270
5270
|
id?: number | undefined;
|
|
5271
5271
|
}[] | undefined;
|
|
5272
5272
|
required?: boolean | undefined;
|
|
@@ -5499,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5499
5499
|
hint?: string | undefined;
|
|
5500
5500
|
messages?: {
|
|
5501
5501
|
text: string;
|
|
5502
|
-
type: "
|
|
5502
|
+
type: "error" | "success" | "info" | "warning";
|
|
5503
5503
|
id?: number | undefined;
|
|
5504
5504
|
}[] | undefined;
|
|
5505
5505
|
required?: boolean | undefined;
|
|
@@ -5517,7 +5517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5517
5517
|
hint?: string | undefined;
|
|
5518
5518
|
messages?: {
|
|
5519
5519
|
text: string;
|
|
5520
|
-
type: "
|
|
5520
|
+
type: "error" | "success" | "info" | "warning";
|
|
5521
5521
|
id?: number | undefined;
|
|
5522
5522
|
}[] | undefined;
|
|
5523
5523
|
required?: boolean | undefined;
|
|
@@ -5541,7 +5541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5541
5541
|
hint?: string | undefined;
|
|
5542
5542
|
messages?: {
|
|
5543
5543
|
text: string;
|
|
5544
|
-
type: "
|
|
5544
|
+
type: "error" | "success" | "info" | "warning";
|
|
5545
5545
|
id?: number | undefined;
|
|
5546
5546
|
}[] | undefined;
|
|
5547
5547
|
required?: boolean | undefined;
|
|
@@ -5565,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5565
5565
|
hint?: string | undefined;
|
|
5566
5566
|
messages?: {
|
|
5567
5567
|
text: string;
|
|
5568
|
-
type: "
|
|
5568
|
+
type: "error" | "success" | "info" | "warning";
|
|
5569
5569
|
id?: number | undefined;
|
|
5570
5570
|
}[] | undefined;
|
|
5571
5571
|
required?: boolean | undefined;
|
|
@@ -5590,7 +5590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5590
5590
|
hint?: string | undefined;
|
|
5591
5591
|
messages?: {
|
|
5592
5592
|
text: string;
|
|
5593
|
-
type: "
|
|
5593
|
+
type: "error" | "success" | "info" | "warning";
|
|
5594
5594
|
id?: number | undefined;
|
|
5595
5595
|
}[] | undefined;
|
|
5596
5596
|
required?: boolean | undefined;
|
|
@@ -5605,7 +5605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5605
5605
|
hint?: string | undefined;
|
|
5606
5606
|
messages?: {
|
|
5607
5607
|
text: string;
|
|
5608
|
-
type: "
|
|
5608
|
+
type: "error" | "success" | "info" | "warning";
|
|
5609
5609
|
id?: number | undefined;
|
|
5610
5610
|
}[] | undefined;
|
|
5611
5611
|
required?: boolean | undefined;
|
|
@@ -5626,7 +5626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5626
5626
|
hint?: string | undefined;
|
|
5627
5627
|
messages?: {
|
|
5628
5628
|
text: string;
|
|
5629
|
-
type: "
|
|
5629
|
+
type: "error" | "success" | "info" | "warning";
|
|
5630
5630
|
id?: number | undefined;
|
|
5631
5631
|
}[] | undefined;
|
|
5632
5632
|
required?: boolean | undefined;
|
|
@@ -5651,7 +5651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5651
5651
|
hint?: string | undefined;
|
|
5652
5652
|
messages?: {
|
|
5653
5653
|
text: string;
|
|
5654
|
-
type: "
|
|
5654
|
+
type: "error" | "success" | "info" | "warning";
|
|
5655
5655
|
id?: number | undefined;
|
|
5656
5656
|
}[] | undefined;
|
|
5657
5657
|
required?: boolean | undefined;
|
|
@@ -5670,7 +5670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5670
5670
|
hint?: string | undefined;
|
|
5671
5671
|
messages?: {
|
|
5672
5672
|
text: string;
|
|
5673
|
-
type: "
|
|
5673
|
+
type: "error" | "success" | "info" | "warning";
|
|
5674
5674
|
id?: number | undefined;
|
|
5675
5675
|
}[] | undefined;
|
|
5676
5676
|
required?: boolean | undefined;
|
|
@@ -5690,7 +5690,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5690
5690
|
hint?: string | undefined;
|
|
5691
5691
|
messages?: {
|
|
5692
5692
|
text: string;
|
|
5693
|
-
type: "
|
|
5693
|
+
type: "error" | "success" | "info" | "warning";
|
|
5694
5694
|
id?: number | undefined;
|
|
5695
5695
|
}[] | undefined;
|
|
5696
5696
|
required?: boolean | undefined;
|
|
@@ -5709,7 +5709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5709
5709
|
hint?: string | undefined;
|
|
5710
5710
|
messages?: {
|
|
5711
5711
|
text: string;
|
|
5712
|
-
type: "
|
|
5712
|
+
type: "error" | "success" | "info" | "warning";
|
|
5713
5713
|
id?: number | undefined;
|
|
5714
5714
|
}[] | undefined;
|
|
5715
5715
|
required?: boolean | undefined;
|
|
@@ -5731,7 +5731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5731
5731
|
hint?: string | undefined;
|
|
5732
5732
|
messages?: {
|
|
5733
5733
|
text: string;
|
|
5734
|
-
type: "
|
|
5734
|
+
type: "error" | "success" | "info" | "warning";
|
|
5735
5735
|
id?: number | undefined;
|
|
5736
5736
|
}[] | undefined;
|
|
5737
5737
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5753
5753
|
hint?: string | undefined;
|
|
5754
5754
|
messages?: {
|
|
5755
5755
|
text: string;
|
|
5756
|
-
type: "
|
|
5756
|
+
type: "error" | "success" | "info" | "warning";
|
|
5757
5757
|
id?: number | undefined;
|
|
5758
5758
|
}[] | undefined;
|
|
5759
5759
|
required?: boolean | undefined;
|
|
@@ -5772,7 +5772,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5772
5772
|
hint?: string | undefined;
|
|
5773
5773
|
messages?: {
|
|
5774
5774
|
text: string;
|
|
5775
|
-
type: "
|
|
5775
|
+
type: "error" | "success" | "info" | "warning";
|
|
5776
5776
|
id?: number | undefined;
|
|
5777
5777
|
}[] | undefined;
|
|
5778
5778
|
required?: boolean | undefined;
|
|
@@ -5797,7 +5797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5797
5797
|
hint?: string | undefined;
|
|
5798
5798
|
messages?: {
|
|
5799
5799
|
text: string;
|
|
5800
|
-
type: "
|
|
5800
|
+
type: "error" | "success" | "info" | "warning";
|
|
5801
5801
|
id?: number | undefined;
|
|
5802
5802
|
}[] | undefined;
|
|
5803
5803
|
required?: boolean | undefined;
|
|
@@ -5818,7 +5818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5818
5818
|
hint?: string | undefined;
|
|
5819
5819
|
messages?: {
|
|
5820
5820
|
text: string;
|
|
5821
|
-
type: "
|
|
5821
|
+
type: "error" | "success" | "info" | "warning";
|
|
5822
5822
|
id?: number | undefined;
|
|
5823
5823
|
}[] | undefined;
|
|
5824
5824
|
required?: boolean | undefined;
|
|
@@ -5839,7 +5839,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5839
5839
|
hint?: string | undefined;
|
|
5840
5840
|
messages?: {
|
|
5841
5841
|
text: string;
|
|
5842
|
-
type: "
|
|
5842
|
+
type: "error" | "success" | "info" | "warning";
|
|
5843
5843
|
id?: number | undefined;
|
|
5844
5844
|
}[] | undefined;
|
|
5845
5845
|
required?: boolean | undefined;
|
|
@@ -6070,7 +6070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6070
6070
|
hint?: string | undefined;
|
|
6071
6071
|
messages?: {
|
|
6072
6072
|
text: string;
|
|
6073
|
-
type: "
|
|
6073
|
+
type: "error" | "success" | "info" | "warning";
|
|
6074
6074
|
id?: number | undefined;
|
|
6075
6075
|
}[] | undefined;
|
|
6076
6076
|
required?: boolean | undefined;
|
|
@@ -6088,7 +6088,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6088
6088
|
hint?: string | undefined;
|
|
6089
6089
|
messages?: {
|
|
6090
6090
|
text: string;
|
|
6091
|
-
type: "
|
|
6091
|
+
type: "error" | "success" | "info" | "warning";
|
|
6092
6092
|
id?: number | undefined;
|
|
6093
6093
|
}[] | undefined;
|
|
6094
6094
|
required?: boolean | undefined;
|
|
@@ -6112,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6112
6112
|
hint?: string | undefined;
|
|
6113
6113
|
messages?: {
|
|
6114
6114
|
text: string;
|
|
6115
|
-
type: "
|
|
6115
|
+
type: "error" | "success" | "info" | "warning";
|
|
6116
6116
|
id?: number | undefined;
|
|
6117
6117
|
}[] | undefined;
|
|
6118
6118
|
required?: boolean | undefined;
|
|
@@ -6136,7 +6136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6136
6136
|
hint?: string | undefined;
|
|
6137
6137
|
messages?: {
|
|
6138
6138
|
text: string;
|
|
6139
|
-
type: "
|
|
6139
|
+
type: "error" | "success" | "info" | "warning";
|
|
6140
6140
|
id?: number | undefined;
|
|
6141
6141
|
}[] | undefined;
|
|
6142
6142
|
required?: boolean | undefined;
|
|
@@ -6165,7 +6165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6165
6165
|
hint?: string | undefined;
|
|
6166
6166
|
messages?: {
|
|
6167
6167
|
text: string;
|
|
6168
|
-
type: "
|
|
6168
|
+
type: "error" | "success" | "info" | "warning";
|
|
6169
6169
|
id?: number | undefined;
|
|
6170
6170
|
}[] | undefined;
|
|
6171
6171
|
required?: boolean | undefined;
|
|
@@ -6180,7 +6180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6180
6180
|
hint?: string | undefined;
|
|
6181
6181
|
messages?: {
|
|
6182
6182
|
text: string;
|
|
6183
|
-
type: "
|
|
6183
|
+
type: "error" | "success" | "info" | "warning";
|
|
6184
6184
|
id?: number | undefined;
|
|
6185
6185
|
}[] | undefined;
|
|
6186
6186
|
required?: boolean | undefined;
|
|
@@ -6201,7 +6201,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6201
6201
|
hint?: string | undefined;
|
|
6202
6202
|
messages?: {
|
|
6203
6203
|
text: string;
|
|
6204
|
-
type: "
|
|
6204
|
+
type: "error" | "success" | "info" | "warning";
|
|
6205
6205
|
id?: number | undefined;
|
|
6206
6206
|
}[] | undefined;
|
|
6207
6207
|
required?: boolean | undefined;
|
|
@@ -6226,7 +6226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6226
6226
|
hint?: string | undefined;
|
|
6227
6227
|
messages?: {
|
|
6228
6228
|
text: string;
|
|
6229
|
-
type: "
|
|
6229
|
+
type: "error" | "success" | "info" | "warning";
|
|
6230
6230
|
id?: number | undefined;
|
|
6231
6231
|
}[] | undefined;
|
|
6232
6232
|
required?: boolean | undefined;
|
|
@@ -6245,7 +6245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6245
6245
|
hint?: string | undefined;
|
|
6246
6246
|
messages?: {
|
|
6247
6247
|
text: string;
|
|
6248
|
-
type: "
|
|
6248
|
+
type: "error" | "success" | "info" | "warning";
|
|
6249
6249
|
id?: number | undefined;
|
|
6250
6250
|
}[] | undefined;
|
|
6251
6251
|
required?: boolean | undefined;
|
|
@@ -6265,7 +6265,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6265
6265
|
hint?: string | undefined;
|
|
6266
6266
|
messages?: {
|
|
6267
6267
|
text: string;
|
|
6268
|
-
type: "
|
|
6268
|
+
type: "error" | "success" | "info" | "warning";
|
|
6269
6269
|
id?: number | undefined;
|
|
6270
6270
|
}[] | undefined;
|
|
6271
6271
|
required?: boolean | undefined;
|
|
@@ -6284,7 +6284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6284
6284
|
hint?: string | undefined;
|
|
6285
6285
|
messages?: {
|
|
6286
6286
|
text: string;
|
|
6287
|
-
type: "
|
|
6287
|
+
type: "error" | "success" | "info" | "warning";
|
|
6288
6288
|
id?: number | undefined;
|
|
6289
6289
|
}[] | undefined;
|
|
6290
6290
|
required?: boolean | undefined;
|
|
@@ -6306,7 +6306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6306
6306
|
hint?: string | undefined;
|
|
6307
6307
|
messages?: {
|
|
6308
6308
|
text: string;
|
|
6309
|
-
type: "
|
|
6309
|
+
type: "error" | "success" | "info" | "warning";
|
|
6310
6310
|
id?: number | undefined;
|
|
6311
6311
|
}[] | undefined;
|
|
6312
6312
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6328,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6328
6328
|
hint?: string | undefined;
|
|
6329
6329
|
messages?: {
|
|
6330
6330
|
text: string;
|
|
6331
|
-
type: "
|
|
6331
|
+
type: "error" | "success" | "info" | "warning";
|
|
6332
6332
|
id?: number | undefined;
|
|
6333
6333
|
}[] | undefined;
|
|
6334
6334
|
required?: boolean | undefined;
|
|
@@ -6347,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6347
6347
|
hint?: string | undefined;
|
|
6348
6348
|
messages?: {
|
|
6349
6349
|
text: string;
|
|
6350
|
-
type: "
|
|
6350
|
+
type: "error" | "success" | "info" | "warning";
|
|
6351
6351
|
id?: number | undefined;
|
|
6352
6352
|
}[] | undefined;
|
|
6353
6353
|
required?: boolean | undefined;
|
|
@@ -6372,7 +6372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6372
6372
|
hint?: string | undefined;
|
|
6373
6373
|
messages?: {
|
|
6374
6374
|
text: string;
|
|
6375
|
-
type: "
|
|
6375
|
+
type: "error" | "success" | "info" | "warning";
|
|
6376
6376
|
id?: number | undefined;
|
|
6377
6377
|
}[] | undefined;
|
|
6378
6378
|
required?: boolean | undefined;
|
|
@@ -6393,7 +6393,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6393
6393
|
hint?: string | undefined;
|
|
6394
6394
|
messages?: {
|
|
6395
6395
|
text: string;
|
|
6396
|
-
type: "
|
|
6396
|
+
type: "error" | "success" | "info" | "warning";
|
|
6397
6397
|
id?: number | undefined;
|
|
6398
6398
|
}[] | undefined;
|
|
6399
6399
|
required?: boolean | undefined;
|
|
@@ -6414,7 +6414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6414
6414
|
hint?: string | undefined;
|
|
6415
6415
|
messages?: {
|
|
6416
6416
|
text: string;
|
|
6417
|
-
type: "
|
|
6417
|
+
type: "error" | "success" | "info" | "warning";
|
|
6418
6418
|
id?: number | undefined;
|
|
6419
6419
|
}[] | undefined;
|
|
6420
6420
|
required?: boolean | undefined;
|
|
@@ -6644,7 +6644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6644
6644
|
};
|
|
6645
6645
|
};
|
|
6646
6646
|
output: {
|
|
6647
|
-
prompt: "
|
|
6647
|
+
prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6648
6648
|
language: string;
|
|
6649
6649
|
}[];
|
|
6650
6650
|
outputFormat: "json";
|
|
@@ -6682,7 +6682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6682
6682
|
$get: {
|
|
6683
6683
|
input: {
|
|
6684
6684
|
param: {
|
|
6685
|
-
prompt: "
|
|
6685
|
+
prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6686
6686
|
language: string;
|
|
6687
6687
|
};
|
|
6688
6688
|
} & {
|
|
@@ -6704,7 +6704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6704
6704
|
$put: {
|
|
6705
6705
|
input: {
|
|
6706
6706
|
param: {
|
|
6707
|
-
prompt: "
|
|
6707
|
+
prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6708
6708
|
language: string;
|
|
6709
6709
|
};
|
|
6710
6710
|
} & {
|
|
@@ -6728,7 +6728,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6728
6728
|
$delete: {
|
|
6729
6729
|
input: {
|
|
6730
6730
|
param: {
|
|
6731
|
-
prompt: "
|
|
6731
|
+
prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6732
6732
|
language: string;
|
|
6733
6733
|
};
|
|
6734
6734
|
} & {
|
|
@@ -6867,7 +6867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6867
6867
|
} | undefined;
|
|
6868
6868
|
} | undefined;
|
|
6869
6869
|
passkey_options?: {
|
|
6870
|
-
challenge_ui?: "
|
|
6870
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
6871
6871
|
local_enrollment_enabled?: boolean | undefined;
|
|
6872
6872
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
6873
6873
|
} | undefined;
|
|
@@ -7001,7 +7001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7001
7001
|
} | undefined;
|
|
7002
7002
|
} | undefined;
|
|
7003
7003
|
passkey_options?: {
|
|
7004
|
-
challenge_ui?: "
|
|
7004
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7005
7005
|
local_enrollment_enabled?: boolean | undefined;
|
|
7006
7006
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7007
7007
|
} | undefined;
|
|
@@ -7150,7 +7150,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7150
7150
|
} | undefined;
|
|
7151
7151
|
} | undefined;
|
|
7152
7152
|
passkey_options?: {
|
|
7153
|
-
challenge_ui?: "
|
|
7153
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7154
7154
|
local_enrollment_enabled?: boolean | undefined;
|
|
7155
7155
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7156
7156
|
} | undefined;
|
|
@@ -7329,7 +7329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7329
7329
|
} | undefined;
|
|
7330
7330
|
} | undefined;
|
|
7331
7331
|
passkey_options?: {
|
|
7332
|
-
challenge_ui?: "
|
|
7332
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7333
7333
|
local_enrollment_enabled?: boolean | undefined;
|
|
7334
7334
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7335
7335
|
} | undefined;
|
|
@@ -7487,7 +7487,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7487
7487
|
} | undefined;
|
|
7488
7488
|
} | undefined;
|
|
7489
7489
|
passkey_options?: {
|
|
7490
|
-
challenge_ui?: "
|
|
7490
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7491
7491
|
local_enrollment_enabled?: boolean | undefined;
|
|
7492
7492
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7493
7493
|
} | undefined;
|
|
@@ -7590,7 +7590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7590
7590
|
};
|
|
7591
7591
|
} | {
|
|
7592
7592
|
mode: "inline";
|
|
7593
|
-
status: "
|
|
7593
|
+
status: "error" | "success";
|
|
7594
7594
|
connection_id: string;
|
|
7595
7595
|
connection_name: string;
|
|
7596
7596
|
strategy: string;
|
|
@@ -8477,7 +8477,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8477
8477
|
created_at: string;
|
|
8478
8478
|
updated_at: string;
|
|
8479
8479
|
name: string;
|
|
8480
|
-
provider: "auth0" | "
|
|
8480
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8481
8481
|
connection: string;
|
|
8482
8482
|
enabled: boolean;
|
|
8483
8483
|
credentials: {
|
|
@@ -8509,7 +8509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8509
8509
|
created_at: string;
|
|
8510
8510
|
updated_at: string;
|
|
8511
8511
|
name: string;
|
|
8512
|
-
provider: "auth0" | "
|
|
8512
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8513
8513
|
connection: string;
|
|
8514
8514
|
enabled: boolean;
|
|
8515
8515
|
credentials: {
|
|
@@ -8535,7 +8535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8535
8535
|
} & {
|
|
8536
8536
|
json: {
|
|
8537
8537
|
name: string;
|
|
8538
|
-
provider: "auth0" | "
|
|
8538
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8539
8539
|
connection: string;
|
|
8540
8540
|
credentials: {
|
|
8541
8541
|
domain: string;
|
|
@@ -8552,7 +8552,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8552
8552
|
created_at: string;
|
|
8553
8553
|
updated_at: string;
|
|
8554
8554
|
name: string;
|
|
8555
|
-
provider: "auth0" | "
|
|
8555
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8556
8556
|
connection: string;
|
|
8557
8557
|
enabled: boolean;
|
|
8558
8558
|
credentials: {
|
|
@@ -8583,7 +8583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8583
8583
|
json: {
|
|
8584
8584
|
id?: string | undefined;
|
|
8585
8585
|
name?: string | undefined;
|
|
8586
|
-
provider?: "auth0" | "
|
|
8586
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8587
8587
|
connection?: string | undefined;
|
|
8588
8588
|
enabled?: boolean | undefined;
|
|
8589
8589
|
credentials?: {
|
|
@@ -8599,7 +8599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8599
8599
|
created_at: string;
|
|
8600
8600
|
updated_at: string;
|
|
8601
8601
|
name: string;
|
|
8602
|
-
provider: "auth0" | "
|
|
8602
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8603
8603
|
connection: string;
|
|
8604
8604
|
enabled: boolean;
|
|
8605
8605
|
credentials: {
|
|
@@ -8817,7 +8817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8817
8817
|
};
|
|
8818
8818
|
};
|
|
8819
8819
|
output: {
|
|
8820
|
-
type: "
|
|
8820
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8821
8821
|
date: string;
|
|
8822
8822
|
isMobile: boolean;
|
|
8823
8823
|
log_id: string;
|
|
@@ -8856,7 +8856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8856
8856
|
limit: number;
|
|
8857
8857
|
length: number;
|
|
8858
8858
|
logs: {
|
|
8859
|
-
type: "
|
|
8859
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8860
8860
|
date: string;
|
|
8861
8861
|
isMobile: boolean;
|
|
8862
8862
|
log_id: string;
|
|
@@ -8910,7 +8910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8910
8910
|
};
|
|
8911
8911
|
};
|
|
8912
8912
|
output: {
|
|
8913
|
-
type: "
|
|
8913
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8914
8914
|
date: string;
|
|
8915
8915
|
isMobile: boolean;
|
|
8916
8916
|
log_id: string;
|
|
@@ -9959,7 +9959,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9959
9959
|
} | undefined;
|
|
9960
9960
|
} | undefined;
|
|
9961
9961
|
passkey_options?: {
|
|
9962
|
-
challenge_ui?: "
|
|
9962
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
9963
9963
|
local_enrollment_enabled?: boolean | undefined;
|
|
9964
9964
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9965
9965
|
} | undefined;
|
|
@@ -10113,7 +10113,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10113
10113
|
} | undefined;
|
|
10114
10114
|
} | undefined;
|
|
10115
10115
|
passkey_options?: {
|
|
10116
|
-
challenge_ui?: "
|
|
10116
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10117
10117
|
local_enrollment_enabled?: boolean | undefined;
|
|
10118
10118
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10119
10119
|
} | undefined;
|
|
@@ -11054,7 +11054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11054
11054
|
};
|
|
11055
11055
|
};
|
|
11056
11056
|
output: {
|
|
11057
|
-
type: "
|
|
11057
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11058
11058
|
date: string;
|
|
11059
11059
|
isMobile: boolean;
|
|
11060
11060
|
log_id: string;
|
|
@@ -11093,7 +11093,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11093
11093
|
limit: number;
|
|
11094
11094
|
length: number;
|
|
11095
11095
|
logs: {
|
|
11096
|
-
type: "
|
|
11096
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11097
11097
|
date: string;
|
|
11098
11098
|
isMobile: boolean;
|
|
11099
11099
|
log_id: string;
|
|
@@ -11455,6 +11455,23 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11455
11455
|
status: 201;
|
|
11456
11456
|
};
|
|
11457
11457
|
};
|
|
11458
|
+
} & {
|
|
11459
|
+
"/defaults": {
|
|
11460
|
+
$get: {
|
|
11461
|
+
input: {
|
|
11462
|
+
header: {
|
|
11463
|
+
"tenant-id"?: string | undefined;
|
|
11464
|
+
};
|
|
11465
|
+
};
|
|
11466
|
+
output: {
|
|
11467
|
+
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";
|
|
11468
|
+
body: string;
|
|
11469
|
+
subject: string;
|
|
11470
|
+
}[];
|
|
11471
|
+
outputFormat: "json";
|
|
11472
|
+
status: 200;
|
|
11473
|
+
};
|
|
11474
|
+
};
|
|
11458
11475
|
} & {
|
|
11459
11476
|
"/:templateName": {
|
|
11460
11477
|
$get: {
|
|
@@ -11861,7 +11878,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11861
11878
|
primary: boolean;
|
|
11862
11879
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11863
11880
|
verification_method?: "txt" | undefined;
|
|
11864
|
-
custom_client_ip_header?: "null" | "
|
|
11881
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11865
11882
|
domain_metadata?: {
|
|
11866
11883
|
[x: string]: string;
|
|
11867
11884
|
} | undefined;
|
|
@@ -11902,7 +11919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11902
11919
|
primary: boolean;
|
|
11903
11920
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11904
11921
|
verification_method?: "txt" | undefined;
|
|
11905
|
-
custom_client_ip_header?: "null" | "
|
|
11922
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11906
11923
|
domain_metadata?: {
|
|
11907
11924
|
[x: string]: string;
|
|
11908
11925
|
} | undefined;
|
|
@@ -11957,7 +11974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11957
11974
|
domain?: string | undefined;
|
|
11958
11975
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
11959
11976
|
verification_method?: "txt" | undefined;
|
|
11960
|
-
custom_client_ip_header?: "null" | "
|
|
11977
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11961
11978
|
domain_metadata?: Record<string, string> | undefined;
|
|
11962
11979
|
custom_domain_id?: string | undefined;
|
|
11963
11980
|
primary?: boolean | undefined;
|
|
@@ -11984,7 +12001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11984
12001
|
primary: boolean;
|
|
11985
12002
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11986
12003
|
verification_method?: "txt" | undefined;
|
|
11987
|
-
custom_client_ip_header?: "null" | "
|
|
12004
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
11988
12005
|
domain_metadata?: {
|
|
11989
12006
|
[x: string]: string;
|
|
11990
12007
|
} | undefined;
|
|
@@ -12020,7 +12037,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12020
12037
|
custom_domain_id?: string | undefined;
|
|
12021
12038
|
verification_method?: "txt" | undefined;
|
|
12022
12039
|
tls_policy?: "recommended" | undefined;
|
|
12023
|
-
custom_client_ip_header?: "null" | "
|
|
12040
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12024
12041
|
domain_metadata?: Record<string, string> | undefined;
|
|
12025
12042
|
};
|
|
12026
12043
|
};
|
|
@@ -12031,7 +12048,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12031
12048
|
primary: boolean;
|
|
12032
12049
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12033
12050
|
verification_method?: "txt" | undefined;
|
|
12034
|
-
custom_client_ip_header?: "null" | "
|
|
12051
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12035
12052
|
domain_metadata?: {
|
|
12036
12053
|
[x: string]: string;
|
|
12037
12054
|
} | undefined;
|
|
@@ -12077,7 +12094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12077
12094
|
primary: boolean;
|
|
12078
12095
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12079
12096
|
verification_method?: "txt" | undefined;
|
|
12080
|
-
custom_client_ip_header?: "null" | "
|
|
12097
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12081
12098
|
domain_metadata?: {
|
|
12082
12099
|
[x: string]: string;
|
|
12083
12100
|
} | undefined;
|
|
@@ -12118,7 +12135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12118
12135
|
primary: boolean;
|
|
12119
12136
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12120
12137
|
verification_method?: "txt" | undefined;
|
|
12121
|
-
custom_client_ip_header?: "null" | "
|
|
12138
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12122
12139
|
domain_metadata?: {
|
|
12123
12140
|
[x: string]: string;
|
|
12124
12141
|
} | undefined;
|
|
@@ -12164,7 +12181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12164
12181
|
base_focus_color: string;
|
|
12165
12182
|
base_hover_color: string;
|
|
12166
12183
|
body_text: string;
|
|
12167
|
-
captcha_widget_theme: "
|
|
12184
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12168
12185
|
error: string;
|
|
12169
12186
|
header: string;
|
|
12170
12187
|
icons: string;
|
|
@@ -12215,7 +12232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12215
12232
|
background_color: string;
|
|
12216
12233
|
background_image_url: string;
|
|
12217
12234
|
page_layout: "center" | "left" | "right";
|
|
12218
|
-
logo_placement?: "
|
|
12235
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12219
12236
|
};
|
|
12220
12237
|
widget: {
|
|
12221
12238
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12254,7 +12271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12254
12271
|
base_focus_color: string;
|
|
12255
12272
|
base_hover_color: string;
|
|
12256
12273
|
body_text: string;
|
|
12257
|
-
captcha_widget_theme: "
|
|
12274
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12258
12275
|
error: string;
|
|
12259
12276
|
header: string;
|
|
12260
12277
|
icons: string;
|
|
@@ -12305,7 +12322,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12305
12322
|
background_color: string;
|
|
12306
12323
|
background_image_url: string;
|
|
12307
12324
|
page_layout: "center" | "left" | "right";
|
|
12308
|
-
logo_placement?: "
|
|
12325
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12309
12326
|
};
|
|
12310
12327
|
widget: {
|
|
12311
12328
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12333,7 +12350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12333
12350
|
base_focus_color: string;
|
|
12334
12351
|
base_hover_color: string;
|
|
12335
12352
|
body_text: string;
|
|
12336
|
-
captcha_widget_theme: "
|
|
12353
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12337
12354
|
error: string;
|
|
12338
12355
|
header: string;
|
|
12339
12356
|
icons: string;
|
|
@@ -12384,7 +12401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12384
12401
|
background_color: string;
|
|
12385
12402
|
background_image_url: string;
|
|
12386
12403
|
page_layout: "center" | "left" | "right";
|
|
12387
|
-
logo_placement?: "
|
|
12404
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
12388
12405
|
};
|
|
12389
12406
|
widget: {
|
|
12390
12407
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12423,7 +12440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12423
12440
|
font?: {
|
|
12424
12441
|
url: string;
|
|
12425
12442
|
} | undefined;
|
|
12426
|
-
dark_mode?: "
|
|
12443
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12427
12444
|
};
|
|
12428
12445
|
outputFormat: "json";
|
|
12429
12446
|
status: 200;
|
|
@@ -12453,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12453
12470
|
font?: {
|
|
12454
12471
|
url: string;
|
|
12455
12472
|
} | undefined;
|
|
12456
|
-
dark_mode?: "
|
|
12473
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12457
12474
|
};
|
|
12458
12475
|
};
|
|
12459
12476
|
output: {
|
|
@@ -12472,7 +12489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12472
12489
|
font?: {
|
|
12473
12490
|
url: string;
|
|
12474
12491
|
} | undefined;
|
|
12475
|
-
dark_mode?: "
|
|
12492
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12476
12493
|
};
|
|
12477
12494
|
outputFormat: "json";
|
|
12478
12495
|
status: 200;
|
|
@@ -14124,18 +14141,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14124
14141
|
send: "code" | "link";
|
|
14125
14142
|
authParams: {
|
|
14126
14143
|
username?: string | undefined;
|
|
14127
|
-
scope?: string | undefined;
|
|
14128
|
-
audience?: string | undefined;
|
|
14129
|
-
organization?: string | undefined;
|
|
14130
|
-
code_challenge?: string | undefined;
|
|
14131
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14132
|
-
redirect_uri?: string | undefined;
|
|
14133
|
-
nonce?: string | undefined;
|
|
14134
14144
|
state?: string | undefined;
|
|
14135
|
-
|
|
14145
|
+
audience?: string | undefined;
|
|
14146
|
+
scope?: string | undefined;
|
|
14136
14147
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14137
14148
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14149
|
+
act_as?: string | undefined;
|
|
14150
|
+
redirect_uri?: string | undefined;
|
|
14151
|
+
organization?: string | undefined;
|
|
14152
|
+
nonce?: string | undefined;
|
|
14138
14153
|
prompt?: string | undefined;
|
|
14154
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14155
|
+
code_challenge?: string | undefined;
|
|
14139
14156
|
ui_locales?: string | undefined;
|
|
14140
14157
|
max_age?: number | undefined;
|
|
14141
14158
|
acr_values?: string | undefined;
|
|
@@ -14160,18 +14177,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14160
14177
|
send: "code" | "link";
|
|
14161
14178
|
authParams: {
|
|
14162
14179
|
username?: string | undefined;
|
|
14163
|
-
scope?: string | undefined;
|
|
14164
|
-
audience?: string | undefined;
|
|
14165
|
-
organization?: string | undefined;
|
|
14166
|
-
code_challenge?: string | undefined;
|
|
14167
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14168
|
-
redirect_uri?: string | undefined;
|
|
14169
|
-
nonce?: string | undefined;
|
|
14170
14180
|
state?: string | undefined;
|
|
14171
|
-
|
|
14181
|
+
audience?: string | undefined;
|
|
14182
|
+
scope?: string | undefined;
|
|
14172
14183
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14173
14184
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14185
|
+
act_as?: string | undefined;
|
|
14186
|
+
redirect_uri?: string | undefined;
|
|
14187
|
+
organization?: string | undefined;
|
|
14188
|
+
nonce?: string | undefined;
|
|
14174
14189
|
prompt?: string | undefined;
|
|
14190
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14191
|
+
code_challenge?: string | undefined;
|
|
14175
14192
|
ui_locales?: string | undefined;
|
|
14176
14193
|
max_age?: number | undefined;
|
|
14177
14194
|
acr_values?: string | undefined;
|
|
@@ -14303,14 +14320,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14303
14320
|
input: {
|
|
14304
14321
|
form: {
|
|
14305
14322
|
token: string;
|
|
14306
|
-
token_type_hint?: "
|
|
14323
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14307
14324
|
client_id?: string | undefined;
|
|
14308
14325
|
client_secret?: string | undefined;
|
|
14309
14326
|
};
|
|
14310
14327
|
} & {
|
|
14311
14328
|
json: {
|
|
14312
14329
|
token: string;
|
|
14313
|
-
token_type_hint?: "
|
|
14330
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14314
14331
|
client_id?: string | undefined;
|
|
14315
14332
|
client_secret?: string | undefined;
|
|
14316
14333
|
};
|
|
@@ -14322,14 +14339,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14322
14339
|
input: {
|
|
14323
14340
|
form: {
|
|
14324
14341
|
token: string;
|
|
14325
|
-
token_type_hint?: "
|
|
14342
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14326
14343
|
client_id?: string | undefined;
|
|
14327
14344
|
client_secret?: string | undefined;
|
|
14328
14345
|
};
|
|
14329
14346
|
} & {
|
|
14330
14347
|
json: {
|
|
14331
14348
|
token: string;
|
|
14332
|
-
token_type_hint?: "
|
|
14349
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14333
14350
|
client_id?: string | undefined;
|
|
14334
14351
|
client_secret?: string | undefined;
|
|
14335
14352
|
};
|
|
@@ -14344,14 +14361,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14344
14361
|
input: {
|
|
14345
14362
|
form: {
|
|
14346
14363
|
token: string;
|
|
14347
|
-
token_type_hint?: "
|
|
14364
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14348
14365
|
client_id?: string | undefined;
|
|
14349
14366
|
client_secret?: string | undefined;
|
|
14350
14367
|
};
|
|
14351
14368
|
} & {
|
|
14352
14369
|
json: {
|
|
14353
14370
|
token: string;
|
|
14354
|
-
token_type_hint?: "
|
|
14371
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14355
14372
|
client_id?: string | undefined;
|
|
14356
14373
|
client_secret?: string | undefined;
|
|
14357
14374
|
};
|
|
@@ -15589,7 +15606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15589
15606
|
} & {
|
|
15590
15607
|
form: {
|
|
15591
15608
|
username: string;
|
|
15592
|
-
login_selection?: "
|
|
15609
|
+
login_selection?: "password" | "code" | undefined;
|
|
15593
15610
|
};
|
|
15594
15611
|
};
|
|
15595
15612
|
output: {};
|
|
@@ -15603,7 +15620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15603
15620
|
} & {
|
|
15604
15621
|
form: {
|
|
15605
15622
|
username: string;
|
|
15606
|
-
login_selection?: "
|
|
15623
|
+
login_selection?: "password" | "code" | undefined;
|
|
15607
15624
|
};
|
|
15608
15625
|
};
|
|
15609
15626
|
output: {};
|
|
@@ -15968,7 +15985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15968
15985
|
$get: {
|
|
15969
15986
|
input: {
|
|
15970
15987
|
param: {
|
|
15971
|
-
screen: "signup" | "
|
|
15988
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15972
15989
|
};
|
|
15973
15990
|
} & {
|
|
15974
15991
|
query: {
|
|
@@ -15984,7 +16001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15984
16001
|
} | {
|
|
15985
16002
|
input: {
|
|
15986
16003
|
param: {
|
|
15987
|
-
screen: "signup" | "
|
|
16004
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15988
16005
|
};
|
|
15989
16006
|
} & {
|
|
15990
16007
|
query: {
|
|
@@ -16000,7 +16017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16000
16017
|
} | {
|
|
16001
16018
|
input: {
|
|
16002
16019
|
param: {
|
|
16003
|
-
screen: "signup" | "
|
|
16020
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16004
16021
|
};
|
|
16005
16022
|
} & {
|
|
16006
16023
|
query: {
|