authhero 8.2.1 → 8.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +313 -245
- package/dist/authhero.mjs +6391 -6337
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/createEncryptedDataAdapter.d.ts +40 -0
- package/dist/types/adapters/index.d.ts +4 -2
- package/dist/types/index.d.ts +225 -225
- package/dist/types/utils/field-encryption.d.ts +30 -0
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
84
|
};
|
|
85
85
|
} & {
|
|
86
86
|
json: {
|
|
87
|
-
type: "email" | "
|
|
87
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
88
88
|
phone_number?: string | undefined;
|
|
89
89
|
totp_secret?: string | undefined;
|
|
90
90
|
credential_id?: string | undefined;
|
|
@@ -224,7 +224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
output: {
|
|
227
|
-
name: "
|
|
227
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
228
228
|
enabled: boolean;
|
|
229
229
|
trial_expired?: boolean | undefined;
|
|
230
230
|
}[];
|
|
@@ -379,7 +379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
379
379
|
$get: {
|
|
380
380
|
input: {
|
|
381
381
|
param: {
|
|
382
|
-
factor_name: "
|
|
382
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
383
383
|
};
|
|
384
384
|
} & {
|
|
385
385
|
header: {
|
|
@@ -387,7 +387,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
387
387
|
};
|
|
388
388
|
};
|
|
389
389
|
output: {
|
|
390
|
-
name: "
|
|
390
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
391
391
|
enabled: boolean;
|
|
392
392
|
trial_expired?: boolean | undefined;
|
|
393
393
|
};
|
|
@@ -400,7 +400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
400
400
|
$put: {
|
|
401
401
|
input: {
|
|
402
402
|
param: {
|
|
403
|
-
factor_name: "
|
|
403
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
404
404
|
};
|
|
405
405
|
} & {
|
|
406
406
|
header: {
|
|
@@ -412,7 +412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
output: {
|
|
415
|
-
name: "
|
|
415
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
416
416
|
enabled: boolean;
|
|
417
417
|
trial_expired?: boolean | undefined;
|
|
418
418
|
};
|
|
@@ -1158,9 +1158,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1158
1158
|
email?: string | undefined;
|
|
1159
1159
|
};
|
|
1160
1160
|
id?: string | undefined;
|
|
1161
|
-
connection_id?: string | undefined;
|
|
1162
1161
|
app_metadata?: Record<string, any> | undefined;
|
|
1163
1162
|
user_metadata?: Record<string, any> | undefined;
|
|
1163
|
+
connection_id?: string | undefined;
|
|
1164
1164
|
roles?: string[] | undefined;
|
|
1165
1165
|
ttl_sec?: number | undefined;
|
|
1166
1166
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1345,8 +1345,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1345
1345
|
};
|
|
1346
1346
|
} & {
|
|
1347
1347
|
json: {
|
|
1348
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1349
1348
|
show_as_button?: boolean | undefined;
|
|
1349
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1350
1350
|
is_signup_enabled?: boolean | undefined;
|
|
1351
1351
|
};
|
|
1352
1352
|
};
|
|
@@ -2588,7 +2588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2588
2588
|
hint?: string | undefined;
|
|
2589
2589
|
messages?: {
|
|
2590
2590
|
text: string;
|
|
2591
|
-
type: "
|
|
2591
|
+
type: "error" | "success" | "info" | "warning";
|
|
2592
2592
|
id?: number | undefined;
|
|
2593
2593
|
}[] | undefined;
|
|
2594
2594
|
required?: boolean | undefined;
|
|
@@ -2606,7 +2606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2606
2606
|
hint?: string | undefined;
|
|
2607
2607
|
messages?: {
|
|
2608
2608
|
text: string;
|
|
2609
|
-
type: "
|
|
2609
|
+
type: "error" | "success" | "info" | "warning";
|
|
2610
2610
|
id?: number | undefined;
|
|
2611
2611
|
}[] | undefined;
|
|
2612
2612
|
required?: boolean | undefined;
|
|
@@ -2630,7 +2630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2630
2630
|
hint?: string | undefined;
|
|
2631
2631
|
messages?: {
|
|
2632
2632
|
text: string;
|
|
2633
|
-
type: "
|
|
2633
|
+
type: "error" | "success" | "info" | "warning";
|
|
2634
2634
|
id?: number | undefined;
|
|
2635
2635
|
}[] | undefined;
|
|
2636
2636
|
required?: boolean | undefined;
|
|
@@ -2654,7 +2654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2654
2654
|
hint?: string | undefined;
|
|
2655
2655
|
messages?: {
|
|
2656
2656
|
text: string;
|
|
2657
|
-
type: "
|
|
2657
|
+
type: "error" | "success" | "info" | "warning";
|
|
2658
2658
|
id?: number | undefined;
|
|
2659
2659
|
}[] | undefined;
|
|
2660
2660
|
required?: boolean | undefined;
|
|
@@ -2683,7 +2683,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2683
2683
|
hint?: string | undefined;
|
|
2684
2684
|
messages?: {
|
|
2685
2685
|
text: string;
|
|
2686
|
-
type: "
|
|
2686
|
+
type: "error" | "success" | "info" | "warning";
|
|
2687
2687
|
id?: number | undefined;
|
|
2688
2688
|
}[] | undefined;
|
|
2689
2689
|
required?: boolean | undefined;
|
|
@@ -2698,7 +2698,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2698
2698
|
hint?: string | undefined;
|
|
2699
2699
|
messages?: {
|
|
2700
2700
|
text: string;
|
|
2701
|
-
type: "
|
|
2701
|
+
type: "error" | "success" | "info" | "warning";
|
|
2702
2702
|
id?: number | undefined;
|
|
2703
2703
|
}[] | undefined;
|
|
2704
2704
|
required?: boolean | undefined;
|
|
@@ -2719,7 +2719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2719
2719
|
hint?: string | undefined;
|
|
2720
2720
|
messages?: {
|
|
2721
2721
|
text: string;
|
|
2722
|
-
type: "
|
|
2722
|
+
type: "error" | "success" | "info" | "warning";
|
|
2723
2723
|
id?: number | undefined;
|
|
2724
2724
|
}[] | undefined;
|
|
2725
2725
|
required?: boolean | undefined;
|
|
@@ -2744,7 +2744,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2744
2744
|
hint?: string | undefined;
|
|
2745
2745
|
messages?: {
|
|
2746
2746
|
text: string;
|
|
2747
|
-
type: "
|
|
2747
|
+
type: "error" | "success" | "info" | "warning";
|
|
2748
2748
|
id?: number | undefined;
|
|
2749
2749
|
}[] | undefined;
|
|
2750
2750
|
required?: boolean | undefined;
|
|
@@ -2763,7 +2763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2763
2763
|
hint?: string | undefined;
|
|
2764
2764
|
messages?: {
|
|
2765
2765
|
text: string;
|
|
2766
|
-
type: "
|
|
2766
|
+
type: "error" | "success" | "info" | "warning";
|
|
2767
2767
|
id?: number | undefined;
|
|
2768
2768
|
}[] | undefined;
|
|
2769
2769
|
required?: boolean | undefined;
|
|
@@ -2783,7 +2783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2783
2783
|
hint?: string | undefined;
|
|
2784
2784
|
messages?: {
|
|
2785
2785
|
text: string;
|
|
2786
|
-
type: "
|
|
2786
|
+
type: "error" | "success" | "info" | "warning";
|
|
2787
2787
|
id?: number | undefined;
|
|
2788
2788
|
}[] | undefined;
|
|
2789
2789
|
required?: boolean | undefined;
|
|
@@ -2802,7 +2802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2802
2802
|
hint?: string | undefined;
|
|
2803
2803
|
messages?: {
|
|
2804
2804
|
text: string;
|
|
2805
|
-
type: "
|
|
2805
|
+
type: "error" | "success" | "info" | "warning";
|
|
2806
2806
|
id?: number | undefined;
|
|
2807
2807
|
}[] | undefined;
|
|
2808
2808
|
required?: boolean | undefined;
|
|
@@ -2824,7 +2824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2824
2824
|
hint?: string | undefined;
|
|
2825
2825
|
messages?: {
|
|
2826
2826
|
text: string;
|
|
2827
|
-
type: "
|
|
2827
|
+
type: "error" | "success" | "info" | "warning";
|
|
2828
2828
|
id?: number | undefined;
|
|
2829
2829
|
}[] | undefined;
|
|
2830
2830
|
required?: boolean | undefined;
|
|
@@ -2846,7 +2846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2846
2846
|
hint?: string | undefined;
|
|
2847
2847
|
messages?: {
|
|
2848
2848
|
text: string;
|
|
2849
|
-
type: "
|
|
2849
|
+
type: "error" | "success" | "info" | "warning";
|
|
2850
2850
|
id?: number | undefined;
|
|
2851
2851
|
}[] | undefined;
|
|
2852
2852
|
required?: boolean | undefined;
|
|
@@ -2865,7 +2865,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2865
2865
|
hint?: string | undefined;
|
|
2866
2866
|
messages?: {
|
|
2867
2867
|
text: string;
|
|
2868
|
-
type: "
|
|
2868
|
+
type: "error" | "success" | "info" | "warning";
|
|
2869
2869
|
id?: number | undefined;
|
|
2870
2870
|
}[] | undefined;
|
|
2871
2871
|
required?: boolean | undefined;
|
|
@@ -2890,7 +2890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2890
2890
|
hint?: string | undefined;
|
|
2891
2891
|
messages?: {
|
|
2892
2892
|
text: string;
|
|
2893
|
-
type: "
|
|
2893
|
+
type: "error" | "success" | "info" | "warning";
|
|
2894
2894
|
id?: number | undefined;
|
|
2895
2895
|
}[] | undefined;
|
|
2896
2896
|
required?: boolean | undefined;
|
|
@@ -2911,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2911
2911
|
hint?: string | undefined;
|
|
2912
2912
|
messages?: {
|
|
2913
2913
|
text: string;
|
|
2914
|
-
type: "
|
|
2914
|
+
type: "error" | "success" | "info" | "warning";
|
|
2915
2915
|
id?: number | undefined;
|
|
2916
2916
|
}[] | undefined;
|
|
2917
2917
|
required?: boolean | undefined;
|
|
@@ -2932,7 +2932,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2932
2932
|
hint?: string | undefined;
|
|
2933
2933
|
messages?: {
|
|
2934
2934
|
text: string;
|
|
2935
|
-
type: "
|
|
2935
|
+
type: "error" | "success" | "info" | "warning";
|
|
2936
2936
|
id?: number | undefined;
|
|
2937
2937
|
}[] | undefined;
|
|
2938
2938
|
required?: boolean | undefined;
|
|
@@ -3165,7 +3165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3165
3165
|
hint?: string | undefined;
|
|
3166
3166
|
messages?: {
|
|
3167
3167
|
text: string;
|
|
3168
|
-
type: "
|
|
3168
|
+
type: "error" | "success" | "info" | "warning";
|
|
3169
3169
|
id?: number | undefined;
|
|
3170
3170
|
}[] | undefined;
|
|
3171
3171
|
required?: boolean | undefined;
|
|
@@ -3183,7 +3183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3183
3183
|
hint?: string | undefined;
|
|
3184
3184
|
messages?: {
|
|
3185
3185
|
text: string;
|
|
3186
|
-
type: "
|
|
3186
|
+
type: "error" | "success" | "info" | "warning";
|
|
3187
3187
|
id?: number | undefined;
|
|
3188
3188
|
}[] | undefined;
|
|
3189
3189
|
required?: boolean | undefined;
|
|
@@ -3207,7 +3207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3207
3207
|
hint?: string | undefined;
|
|
3208
3208
|
messages?: {
|
|
3209
3209
|
text: string;
|
|
3210
|
-
type: "
|
|
3210
|
+
type: "error" | "success" | "info" | "warning";
|
|
3211
3211
|
id?: number | undefined;
|
|
3212
3212
|
}[] | undefined;
|
|
3213
3213
|
required?: boolean | undefined;
|
|
@@ -3231,7 +3231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3231
3231
|
hint?: string | undefined;
|
|
3232
3232
|
messages?: {
|
|
3233
3233
|
text: string;
|
|
3234
|
-
type: "
|
|
3234
|
+
type: "error" | "success" | "info" | "warning";
|
|
3235
3235
|
id?: number | undefined;
|
|
3236
3236
|
}[] | undefined;
|
|
3237
3237
|
required?: boolean | undefined;
|
|
@@ -3260,7 +3260,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3260
3260
|
hint?: string | undefined;
|
|
3261
3261
|
messages?: {
|
|
3262
3262
|
text: string;
|
|
3263
|
-
type: "
|
|
3263
|
+
type: "error" | "success" | "info" | "warning";
|
|
3264
3264
|
id?: number | undefined;
|
|
3265
3265
|
}[] | undefined;
|
|
3266
3266
|
required?: boolean | undefined;
|
|
@@ -3275,7 +3275,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3275
3275
|
hint?: string | undefined;
|
|
3276
3276
|
messages?: {
|
|
3277
3277
|
text: string;
|
|
3278
|
-
type: "
|
|
3278
|
+
type: "error" | "success" | "info" | "warning";
|
|
3279
3279
|
id?: number | undefined;
|
|
3280
3280
|
}[] | undefined;
|
|
3281
3281
|
required?: boolean | undefined;
|
|
@@ -3296,7 +3296,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3296
3296
|
hint?: string | undefined;
|
|
3297
3297
|
messages?: {
|
|
3298
3298
|
text: string;
|
|
3299
|
-
type: "
|
|
3299
|
+
type: "error" | "success" | "info" | "warning";
|
|
3300
3300
|
id?: number | undefined;
|
|
3301
3301
|
}[] | undefined;
|
|
3302
3302
|
required?: boolean | undefined;
|
|
@@ -3321,7 +3321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3321
3321
|
hint?: string | undefined;
|
|
3322
3322
|
messages?: {
|
|
3323
3323
|
text: string;
|
|
3324
|
-
type: "
|
|
3324
|
+
type: "error" | "success" | "info" | "warning";
|
|
3325
3325
|
id?: number | undefined;
|
|
3326
3326
|
}[] | undefined;
|
|
3327
3327
|
required?: boolean | undefined;
|
|
@@ -3340,7 +3340,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3340
3340
|
hint?: string | undefined;
|
|
3341
3341
|
messages?: {
|
|
3342
3342
|
text: string;
|
|
3343
|
-
type: "
|
|
3343
|
+
type: "error" | "success" | "info" | "warning";
|
|
3344
3344
|
id?: number | undefined;
|
|
3345
3345
|
}[] | undefined;
|
|
3346
3346
|
required?: boolean | undefined;
|
|
@@ -3360,7 +3360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3360
3360
|
hint?: string | undefined;
|
|
3361
3361
|
messages?: {
|
|
3362
3362
|
text: string;
|
|
3363
|
-
type: "
|
|
3363
|
+
type: "error" | "success" | "info" | "warning";
|
|
3364
3364
|
id?: number | undefined;
|
|
3365
3365
|
}[] | undefined;
|
|
3366
3366
|
required?: boolean | undefined;
|
|
@@ -3379,7 +3379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3379
3379
|
hint?: string | undefined;
|
|
3380
3380
|
messages?: {
|
|
3381
3381
|
text: string;
|
|
3382
|
-
type: "
|
|
3382
|
+
type: "error" | "success" | "info" | "warning";
|
|
3383
3383
|
id?: number | undefined;
|
|
3384
3384
|
}[] | undefined;
|
|
3385
3385
|
required?: boolean | undefined;
|
|
@@ -3401,7 +3401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3401
3401
|
hint?: string | undefined;
|
|
3402
3402
|
messages?: {
|
|
3403
3403
|
text: string;
|
|
3404
|
-
type: "
|
|
3404
|
+
type: "error" | "success" | "info" | "warning";
|
|
3405
3405
|
id?: number | undefined;
|
|
3406
3406
|
}[] | undefined;
|
|
3407
3407
|
required?: boolean | undefined;
|
|
@@ -3423,7 +3423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3423
3423
|
hint?: string | undefined;
|
|
3424
3424
|
messages?: {
|
|
3425
3425
|
text: string;
|
|
3426
|
-
type: "
|
|
3426
|
+
type: "error" | "success" | "info" | "warning";
|
|
3427
3427
|
id?: number | undefined;
|
|
3428
3428
|
}[] | undefined;
|
|
3429
3429
|
required?: boolean | undefined;
|
|
@@ -3442,7 +3442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3442
3442
|
hint?: string | undefined;
|
|
3443
3443
|
messages?: {
|
|
3444
3444
|
text: string;
|
|
3445
|
-
type: "
|
|
3445
|
+
type: "error" | "success" | "info" | "warning";
|
|
3446
3446
|
id?: number | undefined;
|
|
3447
3447
|
}[] | undefined;
|
|
3448
3448
|
required?: boolean | undefined;
|
|
@@ -3467,7 +3467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3467
3467
|
hint?: string | undefined;
|
|
3468
3468
|
messages?: {
|
|
3469
3469
|
text: string;
|
|
3470
|
-
type: "
|
|
3470
|
+
type: "error" | "success" | "info" | "warning";
|
|
3471
3471
|
id?: number | undefined;
|
|
3472
3472
|
}[] | undefined;
|
|
3473
3473
|
required?: boolean | undefined;
|
|
@@ -3488,7 +3488,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3488
3488
|
hint?: string | undefined;
|
|
3489
3489
|
messages?: {
|
|
3490
3490
|
text: string;
|
|
3491
|
-
type: "
|
|
3491
|
+
type: "error" | "success" | "info" | "warning";
|
|
3492
3492
|
id?: number | undefined;
|
|
3493
3493
|
}[] | undefined;
|
|
3494
3494
|
required?: boolean | undefined;
|
|
@@ -3509,7 +3509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3509
3509
|
hint?: string | undefined;
|
|
3510
3510
|
messages?: {
|
|
3511
3511
|
text: string;
|
|
3512
|
-
type: "
|
|
3512
|
+
type: "error" | "success" | "info" | "warning";
|
|
3513
3513
|
id?: number | undefined;
|
|
3514
3514
|
}[] | undefined;
|
|
3515
3515
|
required?: boolean | undefined;
|
|
@@ -3757,7 +3757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3757
3757
|
hint?: string | undefined;
|
|
3758
3758
|
messages?: {
|
|
3759
3759
|
text: string;
|
|
3760
|
-
type: "
|
|
3760
|
+
type: "error" | "success" | "info" | "warning";
|
|
3761
3761
|
id?: number | undefined;
|
|
3762
3762
|
}[] | undefined;
|
|
3763
3763
|
required?: boolean | undefined;
|
|
@@ -3775,7 +3775,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3775
3775
|
hint?: string | undefined;
|
|
3776
3776
|
messages?: {
|
|
3777
3777
|
text: string;
|
|
3778
|
-
type: "
|
|
3778
|
+
type: "error" | "success" | "info" | "warning";
|
|
3779
3779
|
id?: number | undefined;
|
|
3780
3780
|
}[] | undefined;
|
|
3781
3781
|
required?: boolean | undefined;
|
|
@@ -3799,7 +3799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3799
3799
|
hint?: string | undefined;
|
|
3800
3800
|
messages?: {
|
|
3801
3801
|
text: string;
|
|
3802
|
-
type: "
|
|
3802
|
+
type: "error" | "success" | "info" | "warning";
|
|
3803
3803
|
id?: number | undefined;
|
|
3804
3804
|
}[] | undefined;
|
|
3805
3805
|
required?: boolean | undefined;
|
|
@@ -3823,7 +3823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3823
3823
|
hint?: string | undefined;
|
|
3824
3824
|
messages?: {
|
|
3825
3825
|
text: string;
|
|
3826
|
-
type: "
|
|
3826
|
+
type: "error" | "success" | "info" | "warning";
|
|
3827
3827
|
id?: number | undefined;
|
|
3828
3828
|
}[] | undefined;
|
|
3829
3829
|
required?: boolean | undefined;
|
|
@@ -3852,7 +3852,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3852
3852
|
hint?: string | undefined;
|
|
3853
3853
|
messages?: {
|
|
3854
3854
|
text: string;
|
|
3855
|
-
type: "
|
|
3855
|
+
type: "error" | "success" | "info" | "warning";
|
|
3856
3856
|
id?: number | undefined;
|
|
3857
3857
|
}[] | undefined;
|
|
3858
3858
|
required?: boolean | undefined;
|
|
@@ -3867,7 +3867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3867
3867
|
hint?: string | undefined;
|
|
3868
3868
|
messages?: {
|
|
3869
3869
|
text: string;
|
|
3870
|
-
type: "
|
|
3870
|
+
type: "error" | "success" | "info" | "warning";
|
|
3871
3871
|
id?: number | undefined;
|
|
3872
3872
|
}[] | undefined;
|
|
3873
3873
|
required?: boolean | undefined;
|
|
@@ -3888,7 +3888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3888
3888
|
hint?: string | undefined;
|
|
3889
3889
|
messages?: {
|
|
3890
3890
|
text: string;
|
|
3891
|
-
type: "
|
|
3891
|
+
type: "error" | "success" | "info" | "warning";
|
|
3892
3892
|
id?: number | undefined;
|
|
3893
3893
|
}[] | undefined;
|
|
3894
3894
|
required?: boolean | undefined;
|
|
@@ -3913,7 +3913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3913
3913
|
hint?: string | undefined;
|
|
3914
3914
|
messages?: {
|
|
3915
3915
|
text: string;
|
|
3916
|
-
type: "
|
|
3916
|
+
type: "error" | "success" | "info" | "warning";
|
|
3917
3917
|
id?: number | undefined;
|
|
3918
3918
|
}[] | undefined;
|
|
3919
3919
|
required?: boolean | undefined;
|
|
@@ -3932,7 +3932,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3932
3932
|
hint?: string | undefined;
|
|
3933
3933
|
messages?: {
|
|
3934
3934
|
text: string;
|
|
3935
|
-
type: "
|
|
3935
|
+
type: "error" | "success" | "info" | "warning";
|
|
3936
3936
|
id?: number | undefined;
|
|
3937
3937
|
}[] | undefined;
|
|
3938
3938
|
required?: boolean | undefined;
|
|
@@ -3952,7 +3952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3952
3952
|
hint?: string | undefined;
|
|
3953
3953
|
messages?: {
|
|
3954
3954
|
text: string;
|
|
3955
|
-
type: "
|
|
3955
|
+
type: "error" | "success" | "info" | "warning";
|
|
3956
3956
|
id?: number | undefined;
|
|
3957
3957
|
}[] | undefined;
|
|
3958
3958
|
required?: boolean | undefined;
|
|
@@ -3971,7 +3971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3971
3971
|
hint?: string | undefined;
|
|
3972
3972
|
messages?: {
|
|
3973
3973
|
text: string;
|
|
3974
|
-
type: "
|
|
3974
|
+
type: "error" | "success" | "info" | "warning";
|
|
3975
3975
|
id?: number | undefined;
|
|
3976
3976
|
}[] | undefined;
|
|
3977
3977
|
required?: boolean | undefined;
|
|
@@ -3993,7 +3993,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3993
3993
|
hint?: string | undefined;
|
|
3994
3994
|
messages?: {
|
|
3995
3995
|
text: string;
|
|
3996
|
-
type: "
|
|
3996
|
+
type: "error" | "success" | "info" | "warning";
|
|
3997
3997
|
id?: number | undefined;
|
|
3998
3998
|
}[] | undefined;
|
|
3999
3999
|
required?: boolean | undefined;
|
|
@@ -4015,7 +4015,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4015
4015
|
hint?: string | undefined;
|
|
4016
4016
|
messages?: {
|
|
4017
4017
|
text: string;
|
|
4018
|
-
type: "
|
|
4018
|
+
type: "error" | "success" | "info" | "warning";
|
|
4019
4019
|
id?: number | undefined;
|
|
4020
4020
|
}[] | undefined;
|
|
4021
4021
|
required?: boolean | undefined;
|
|
@@ -4034,7 +4034,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4034
4034
|
hint?: string | undefined;
|
|
4035
4035
|
messages?: {
|
|
4036
4036
|
text: string;
|
|
4037
|
-
type: "
|
|
4037
|
+
type: "error" | "success" | "info" | "warning";
|
|
4038
4038
|
id?: number | undefined;
|
|
4039
4039
|
}[] | undefined;
|
|
4040
4040
|
required?: boolean | undefined;
|
|
@@ -4059,7 +4059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4059
4059
|
hint?: string | undefined;
|
|
4060
4060
|
messages?: {
|
|
4061
4061
|
text: string;
|
|
4062
|
-
type: "
|
|
4062
|
+
type: "error" | "success" | "info" | "warning";
|
|
4063
4063
|
id?: number | undefined;
|
|
4064
4064
|
}[] | undefined;
|
|
4065
4065
|
required?: boolean | undefined;
|
|
@@ -4080,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4080
4080
|
hint?: string | undefined;
|
|
4081
4081
|
messages?: {
|
|
4082
4082
|
text: string;
|
|
4083
|
-
type: "
|
|
4083
|
+
type: "error" | "success" | "info" | "warning";
|
|
4084
4084
|
id?: number | undefined;
|
|
4085
4085
|
}[] | undefined;
|
|
4086
4086
|
required?: boolean | undefined;
|
|
@@ -4101,7 +4101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4101
4101
|
hint?: string | undefined;
|
|
4102
4102
|
messages?: {
|
|
4103
4103
|
text: string;
|
|
4104
|
-
type: "
|
|
4104
|
+
type: "error" | "success" | "info" | "warning";
|
|
4105
4105
|
id?: number | undefined;
|
|
4106
4106
|
}[] | undefined;
|
|
4107
4107
|
required?: boolean | undefined;
|
|
@@ -4355,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4355
4355
|
hint?: string | undefined;
|
|
4356
4356
|
messages?: {
|
|
4357
4357
|
text: string;
|
|
4358
|
-
type: "
|
|
4358
|
+
type: "error" | "success" | "info" | "warning";
|
|
4359
4359
|
id?: number | undefined;
|
|
4360
4360
|
}[] | undefined;
|
|
4361
4361
|
required?: boolean | undefined;
|
|
@@ -4373,7 +4373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4373
4373
|
hint?: string | undefined;
|
|
4374
4374
|
messages?: {
|
|
4375
4375
|
text: string;
|
|
4376
|
-
type: "
|
|
4376
|
+
type: "error" | "success" | "info" | "warning";
|
|
4377
4377
|
id?: number | undefined;
|
|
4378
4378
|
}[] | undefined;
|
|
4379
4379
|
required?: boolean | undefined;
|
|
@@ -4397,7 +4397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4397
4397
|
hint?: string | undefined;
|
|
4398
4398
|
messages?: {
|
|
4399
4399
|
text: string;
|
|
4400
|
-
type: "
|
|
4400
|
+
type: "error" | "success" | "info" | "warning";
|
|
4401
4401
|
id?: number | undefined;
|
|
4402
4402
|
}[] | undefined;
|
|
4403
4403
|
required?: boolean | undefined;
|
|
@@ -4421,7 +4421,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4421
4421
|
hint?: string | undefined;
|
|
4422
4422
|
messages?: {
|
|
4423
4423
|
text: string;
|
|
4424
|
-
type: "
|
|
4424
|
+
type: "error" | "success" | "info" | "warning";
|
|
4425
4425
|
id?: number | undefined;
|
|
4426
4426
|
}[] | undefined;
|
|
4427
4427
|
required?: boolean | undefined;
|
|
@@ -4446,7 +4446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4446
4446
|
hint?: string | undefined;
|
|
4447
4447
|
messages?: {
|
|
4448
4448
|
text: string;
|
|
4449
|
-
type: "
|
|
4449
|
+
type: "error" | "success" | "info" | "warning";
|
|
4450
4450
|
id?: number | undefined;
|
|
4451
4451
|
}[] | undefined;
|
|
4452
4452
|
required?: boolean | undefined;
|
|
@@ -4461,7 +4461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4461
4461
|
hint?: string | undefined;
|
|
4462
4462
|
messages?: {
|
|
4463
4463
|
text: string;
|
|
4464
|
-
type: "
|
|
4464
|
+
type: "error" | "success" | "info" | "warning";
|
|
4465
4465
|
id?: number | undefined;
|
|
4466
4466
|
}[] | undefined;
|
|
4467
4467
|
required?: boolean | undefined;
|
|
@@ -4482,7 +4482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4482
4482
|
hint?: string | undefined;
|
|
4483
4483
|
messages?: {
|
|
4484
4484
|
text: string;
|
|
4485
|
-
type: "
|
|
4485
|
+
type: "error" | "success" | "info" | "warning";
|
|
4486
4486
|
id?: number | undefined;
|
|
4487
4487
|
}[] | undefined;
|
|
4488
4488
|
required?: boolean | undefined;
|
|
@@ -4507,7 +4507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4507
4507
|
hint?: string | undefined;
|
|
4508
4508
|
messages?: {
|
|
4509
4509
|
text: string;
|
|
4510
|
-
type: "
|
|
4510
|
+
type: "error" | "success" | "info" | "warning";
|
|
4511
4511
|
id?: number | undefined;
|
|
4512
4512
|
}[] | undefined;
|
|
4513
4513
|
required?: boolean | undefined;
|
|
@@ -4526,7 +4526,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4526
4526
|
hint?: string | undefined;
|
|
4527
4527
|
messages?: {
|
|
4528
4528
|
text: string;
|
|
4529
|
-
type: "
|
|
4529
|
+
type: "error" | "success" | "info" | "warning";
|
|
4530
4530
|
id?: number | undefined;
|
|
4531
4531
|
}[] | undefined;
|
|
4532
4532
|
required?: boolean | undefined;
|
|
@@ -4546,7 +4546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4546
4546
|
hint?: string | undefined;
|
|
4547
4547
|
messages?: {
|
|
4548
4548
|
text: string;
|
|
4549
|
-
type: "
|
|
4549
|
+
type: "error" | "success" | "info" | "warning";
|
|
4550
4550
|
id?: number | undefined;
|
|
4551
4551
|
}[] | undefined;
|
|
4552
4552
|
required?: boolean | undefined;
|
|
@@ -4565,7 +4565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4565
4565
|
hint?: string | undefined;
|
|
4566
4566
|
messages?: {
|
|
4567
4567
|
text: string;
|
|
4568
|
-
type: "
|
|
4568
|
+
type: "error" | "success" | "info" | "warning";
|
|
4569
4569
|
id?: number | undefined;
|
|
4570
4570
|
}[] | undefined;
|
|
4571
4571
|
required?: boolean | undefined;
|
|
@@ -4587,7 +4587,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4587
4587
|
hint?: string | undefined;
|
|
4588
4588
|
messages?: {
|
|
4589
4589
|
text: string;
|
|
4590
|
-
type: "
|
|
4590
|
+
type: "error" | "success" | "info" | "warning";
|
|
4591
4591
|
id?: number | undefined;
|
|
4592
4592
|
}[] | undefined;
|
|
4593
4593
|
required?: boolean | undefined;
|
|
@@ -4609,7 +4609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4609
4609
|
hint?: string | undefined;
|
|
4610
4610
|
messages?: {
|
|
4611
4611
|
text: string;
|
|
4612
|
-
type: "
|
|
4612
|
+
type: "error" | "success" | "info" | "warning";
|
|
4613
4613
|
id?: number | undefined;
|
|
4614
4614
|
}[] | undefined;
|
|
4615
4615
|
required?: boolean | undefined;
|
|
@@ -4628,7 +4628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4628
4628
|
hint?: string | undefined;
|
|
4629
4629
|
messages?: {
|
|
4630
4630
|
text: string;
|
|
4631
|
-
type: "
|
|
4631
|
+
type: "error" | "success" | "info" | "warning";
|
|
4632
4632
|
id?: number | undefined;
|
|
4633
4633
|
}[] | undefined;
|
|
4634
4634
|
required?: boolean | undefined;
|
|
@@ -4653,7 +4653,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4653
4653
|
hint?: string | undefined;
|
|
4654
4654
|
messages?: {
|
|
4655
4655
|
text: string;
|
|
4656
|
-
type: "
|
|
4656
|
+
type: "error" | "success" | "info" | "warning";
|
|
4657
4657
|
id?: number | undefined;
|
|
4658
4658
|
}[] | undefined;
|
|
4659
4659
|
required?: boolean | undefined;
|
|
@@ -4674,7 +4674,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4674
4674
|
hint?: string | undefined;
|
|
4675
4675
|
messages?: {
|
|
4676
4676
|
text: string;
|
|
4677
|
-
type: "
|
|
4677
|
+
type: "error" | "success" | "info" | "warning";
|
|
4678
4678
|
id?: number | undefined;
|
|
4679
4679
|
}[] | undefined;
|
|
4680
4680
|
required?: boolean | undefined;
|
|
@@ -4695,7 +4695,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4695
4695
|
hint?: string | undefined;
|
|
4696
4696
|
messages?: {
|
|
4697
4697
|
text: string;
|
|
4698
|
-
type: "
|
|
4698
|
+
type: "error" | "success" | "info" | "warning";
|
|
4699
4699
|
id?: number | undefined;
|
|
4700
4700
|
}[] | undefined;
|
|
4701
4701
|
required?: boolean | undefined;
|
|
@@ -4926,7 +4926,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4926
4926
|
hint?: string | undefined;
|
|
4927
4927
|
messages?: {
|
|
4928
4928
|
text: string;
|
|
4929
|
-
type: "
|
|
4929
|
+
type: "error" | "success" | "info" | "warning";
|
|
4930
4930
|
id?: number | undefined;
|
|
4931
4931
|
}[] | undefined;
|
|
4932
4932
|
required?: boolean | undefined;
|
|
@@ -4944,7 +4944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4944
4944
|
hint?: string | undefined;
|
|
4945
4945
|
messages?: {
|
|
4946
4946
|
text: string;
|
|
4947
|
-
type: "
|
|
4947
|
+
type: "error" | "success" | "info" | "warning";
|
|
4948
4948
|
id?: number | undefined;
|
|
4949
4949
|
}[] | undefined;
|
|
4950
4950
|
required?: boolean | undefined;
|
|
@@ -4968,7 +4968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4968
4968
|
hint?: string | undefined;
|
|
4969
4969
|
messages?: {
|
|
4970
4970
|
text: string;
|
|
4971
|
-
type: "
|
|
4971
|
+
type: "error" | "success" | "info" | "warning";
|
|
4972
4972
|
id?: number | undefined;
|
|
4973
4973
|
}[] | undefined;
|
|
4974
4974
|
required?: boolean | undefined;
|
|
@@ -4992,7 +4992,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4992
4992
|
hint?: string | undefined;
|
|
4993
4993
|
messages?: {
|
|
4994
4994
|
text: string;
|
|
4995
|
-
type: "
|
|
4995
|
+
type: "error" | "success" | "info" | "warning";
|
|
4996
4996
|
id?: number | undefined;
|
|
4997
4997
|
}[] | undefined;
|
|
4998
4998
|
required?: boolean | undefined;
|
|
@@ -5021,7 +5021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5021
5021
|
hint?: string | undefined;
|
|
5022
5022
|
messages?: {
|
|
5023
5023
|
text: string;
|
|
5024
|
-
type: "
|
|
5024
|
+
type: "error" | "success" | "info" | "warning";
|
|
5025
5025
|
id?: number | undefined;
|
|
5026
5026
|
}[] | undefined;
|
|
5027
5027
|
required?: boolean | undefined;
|
|
@@ -5036,7 +5036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5036
5036
|
hint?: string | undefined;
|
|
5037
5037
|
messages?: {
|
|
5038
5038
|
text: string;
|
|
5039
|
-
type: "
|
|
5039
|
+
type: "error" | "success" | "info" | "warning";
|
|
5040
5040
|
id?: number | undefined;
|
|
5041
5041
|
}[] | undefined;
|
|
5042
5042
|
required?: boolean | undefined;
|
|
@@ -5057,7 +5057,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5057
5057
|
hint?: string | undefined;
|
|
5058
5058
|
messages?: {
|
|
5059
5059
|
text: string;
|
|
5060
|
-
type: "
|
|
5060
|
+
type: "error" | "success" | "info" | "warning";
|
|
5061
5061
|
id?: number | undefined;
|
|
5062
5062
|
}[] | undefined;
|
|
5063
5063
|
required?: boolean | undefined;
|
|
@@ -5082,7 +5082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5082
5082
|
hint?: string | undefined;
|
|
5083
5083
|
messages?: {
|
|
5084
5084
|
text: string;
|
|
5085
|
-
type: "
|
|
5085
|
+
type: "error" | "success" | "info" | "warning";
|
|
5086
5086
|
id?: number | undefined;
|
|
5087
5087
|
}[] | undefined;
|
|
5088
5088
|
required?: boolean | undefined;
|
|
@@ -5101,7 +5101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5101
5101
|
hint?: string | undefined;
|
|
5102
5102
|
messages?: {
|
|
5103
5103
|
text: string;
|
|
5104
|
-
type: "
|
|
5104
|
+
type: "error" | "success" | "info" | "warning";
|
|
5105
5105
|
id?: number | undefined;
|
|
5106
5106
|
}[] | undefined;
|
|
5107
5107
|
required?: boolean | undefined;
|
|
@@ -5121,7 +5121,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5121
5121
|
hint?: string | undefined;
|
|
5122
5122
|
messages?: {
|
|
5123
5123
|
text: string;
|
|
5124
|
-
type: "
|
|
5124
|
+
type: "error" | "success" | "info" | "warning";
|
|
5125
5125
|
id?: number | undefined;
|
|
5126
5126
|
}[] | undefined;
|
|
5127
5127
|
required?: boolean | undefined;
|
|
@@ -5140,7 +5140,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5140
5140
|
hint?: string | undefined;
|
|
5141
5141
|
messages?: {
|
|
5142
5142
|
text: string;
|
|
5143
|
-
type: "
|
|
5143
|
+
type: "error" | "success" | "info" | "warning";
|
|
5144
5144
|
id?: number | undefined;
|
|
5145
5145
|
}[] | undefined;
|
|
5146
5146
|
required?: boolean | undefined;
|
|
@@ -5162,7 +5162,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5162
5162
|
hint?: string | undefined;
|
|
5163
5163
|
messages?: {
|
|
5164
5164
|
text: string;
|
|
5165
|
-
type: "
|
|
5165
|
+
type: "error" | "success" | "info" | "warning";
|
|
5166
5166
|
id?: number | undefined;
|
|
5167
5167
|
}[] | undefined;
|
|
5168
5168
|
required?: boolean | undefined;
|
|
@@ -5184,7 +5184,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5184
5184
|
hint?: string | undefined;
|
|
5185
5185
|
messages?: {
|
|
5186
5186
|
text: string;
|
|
5187
|
-
type: "
|
|
5187
|
+
type: "error" | "success" | "info" | "warning";
|
|
5188
5188
|
id?: number | undefined;
|
|
5189
5189
|
}[] | undefined;
|
|
5190
5190
|
required?: boolean | undefined;
|
|
@@ -5203,7 +5203,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5203
5203
|
hint?: string | undefined;
|
|
5204
5204
|
messages?: {
|
|
5205
5205
|
text: string;
|
|
5206
|
-
type: "
|
|
5206
|
+
type: "error" | "success" | "info" | "warning";
|
|
5207
5207
|
id?: number | undefined;
|
|
5208
5208
|
}[] | undefined;
|
|
5209
5209
|
required?: boolean | undefined;
|
|
@@ -5228,7 +5228,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5228
5228
|
hint?: string | undefined;
|
|
5229
5229
|
messages?: {
|
|
5230
5230
|
text: string;
|
|
5231
|
-
type: "
|
|
5231
|
+
type: "error" | "success" | "info" | "warning";
|
|
5232
5232
|
id?: number | undefined;
|
|
5233
5233
|
}[] | undefined;
|
|
5234
5234
|
required?: boolean | undefined;
|
|
@@ -5249,7 +5249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5249
5249
|
hint?: string | undefined;
|
|
5250
5250
|
messages?: {
|
|
5251
5251
|
text: string;
|
|
5252
|
-
type: "
|
|
5252
|
+
type: "error" | "success" | "info" | "warning";
|
|
5253
5253
|
id?: number | undefined;
|
|
5254
5254
|
}[] | undefined;
|
|
5255
5255
|
required?: boolean | undefined;
|
|
@@ -5270,7 +5270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5270
5270
|
hint?: string | undefined;
|
|
5271
5271
|
messages?: {
|
|
5272
5272
|
text: string;
|
|
5273
|
-
type: "
|
|
5273
|
+
type: "error" | "success" | "info" | "warning";
|
|
5274
5274
|
id?: number | undefined;
|
|
5275
5275
|
}[] | undefined;
|
|
5276
5276
|
required?: boolean | undefined;
|
|
@@ -5503,7 +5503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5503
5503
|
hint?: string | undefined;
|
|
5504
5504
|
messages?: {
|
|
5505
5505
|
text: string;
|
|
5506
|
-
type: "
|
|
5506
|
+
type: "error" | "success" | "info" | "warning";
|
|
5507
5507
|
id?: number | undefined;
|
|
5508
5508
|
}[] | undefined;
|
|
5509
5509
|
required?: boolean | undefined;
|
|
@@ -5521,7 +5521,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5521
5521
|
hint?: string | undefined;
|
|
5522
5522
|
messages?: {
|
|
5523
5523
|
text: string;
|
|
5524
|
-
type: "
|
|
5524
|
+
type: "error" | "success" | "info" | "warning";
|
|
5525
5525
|
id?: number | undefined;
|
|
5526
5526
|
}[] | undefined;
|
|
5527
5527
|
required?: boolean | undefined;
|
|
@@ -5545,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5545
5545
|
hint?: string | undefined;
|
|
5546
5546
|
messages?: {
|
|
5547
5547
|
text: string;
|
|
5548
|
-
type: "
|
|
5548
|
+
type: "error" | "success" | "info" | "warning";
|
|
5549
5549
|
id?: number | undefined;
|
|
5550
5550
|
}[] | undefined;
|
|
5551
5551
|
required?: boolean | undefined;
|
|
@@ -5569,7 +5569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5569
5569
|
hint?: string | undefined;
|
|
5570
5570
|
messages?: {
|
|
5571
5571
|
text: string;
|
|
5572
|
-
type: "
|
|
5572
|
+
type: "error" | "success" | "info" | "warning";
|
|
5573
5573
|
id?: number | undefined;
|
|
5574
5574
|
}[] | undefined;
|
|
5575
5575
|
required?: boolean | undefined;
|
|
@@ -5594,7 +5594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5594
5594
|
hint?: string | undefined;
|
|
5595
5595
|
messages?: {
|
|
5596
5596
|
text: string;
|
|
5597
|
-
type: "
|
|
5597
|
+
type: "error" | "success" | "info" | "warning";
|
|
5598
5598
|
id?: number | undefined;
|
|
5599
5599
|
}[] | undefined;
|
|
5600
5600
|
required?: boolean | undefined;
|
|
@@ -5609,7 +5609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5609
5609
|
hint?: string | undefined;
|
|
5610
5610
|
messages?: {
|
|
5611
5611
|
text: string;
|
|
5612
|
-
type: "
|
|
5612
|
+
type: "error" | "success" | "info" | "warning";
|
|
5613
5613
|
id?: number | undefined;
|
|
5614
5614
|
}[] | undefined;
|
|
5615
5615
|
required?: boolean | undefined;
|
|
@@ -5630,7 +5630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5630
5630
|
hint?: string | undefined;
|
|
5631
5631
|
messages?: {
|
|
5632
5632
|
text: string;
|
|
5633
|
-
type: "
|
|
5633
|
+
type: "error" | "success" | "info" | "warning";
|
|
5634
5634
|
id?: number | undefined;
|
|
5635
5635
|
}[] | undefined;
|
|
5636
5636
|
required?: boolean | undefined;
|
|
@@ -5655,7 +5655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5655
5655
|
hint?: string | undefined;
|
|
5656
5656
|
messages?: {
|
|
5657
5657
|
text: string;
|
|
5658
|
-
type: "
|
|
5658
|
+
type: "error" | "success" | "info" | "warning";
|
|
5659
5659
|
id?: number | undefined;
|
|
5660
5660
|
}[] | undefined;
|
|
5661
5661
|
required?: boolean | undefined;
|
|
@@ -5674,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5674
5674
|
hint?: string | undefined;
|
|
5675
5675
|
messages?: {
|
|
5676
5676
|
text: string;
|
|
5677
|
-
type: "
|
|
5677
|
+
type: "error" | "success" | "info" | "warning";
|
|
5678
5678
|
id?: number | undefined;
|
|
5679
5679
|
}[] | undefined;
|
|
5680
5680
|
required?: boolean | undefined;
|
|
@@ -5694,7 +5694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5694
5694
|
hint?: string | undefined;
|
|
5695
5695
|
messages?: {
|
|
5696
5696
|
text: string;
|
|
5697
|
-
type: "
|
|
5697
|
+
type: "error" | "success" | "info" | "warning";
|
|
5698
5698
|
id?: number | undefined;
|
|
5699
5699
|
}[] | undefined;
|
|
5700
5700
|
required?: boolean | undefined;
|
|
@@ -5713,7 +5713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5713
5713
|
hint?: string | undefined;
|
|
5714
5714
|
messages?: {
|
|
5715
5715
|
text: string;
|
|
5716
|
-
type: "
|
|
5716
|
+
type: "error" | "success" | "info" | "warning";
|
|
5717
5717
|
id?: number | undefined;
|
|
5718
5718
|
}[] | undefined;
|
|
5719
5719
|
required?: boolean | undefined;
|
|
@@ -5735,7 +5735,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5735
5735
|
hint?: string | undefined;
|
|
5736
5736
|
messages?: {
|
|
5737
5737
|
text: string;
|
|
5738
|
-
type: "
|
|
5738
|
+
type: "error" | "success" | "info" | "warning";
|
|
5739
5739
|
id?: number | undefined;
|
|
5740
5740
|
}[] | undefined;
|
|
5741
5741
|
required?: boolean | undefined;
|
|
@@ -5757,7 +5757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5757
5757
|
hint?: string | undefined;
|
|
5758
5758
|
messages?: {
|
|
5759
5759
|
text: string;
|
|
5760
|
-
type: "
|
|
5760
|
+
type: "error" | "success" | "info" | "warning";
|
|
5761
5761
|
id?: number | undefined;
|
|
5762
5762
|
}[] | undefined;
|
|
5763
5763
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5776
5776
|
hint?: string | undefined;
|
|
5777
5777
|
messages?: {
|
|
5778
5778
|
text: string;
|
|
5779
|
-
type: "
|
|
5779
|
+
type: "error" | "success" | "info" | "warning";
|
|
5780
5780
|
id?: number | undefined;
|
|
5781
5781
|
}[] | undefined;
|
|
5782
5782
|
required?: boolean | undefined;
|
|
@@ -5801,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5801
5801
|
hint?: string | undefined;
|
|
5802
5802
|
messages?: {
|
|
5803
5803
|
text: string;
|
|
5804
|
-
type: "
|
|
5804
|
+
type: "error" | "success" | "info" | "warning";
|
|
5805
5805
|
id?: number | undefined;
|
|
5806
5806
|
}[] | undefined;
|
|
5807
5807
|
required?: boolean | undefined;
|
|
@@ -5822,7 +5822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5822
5822
|
hint?: string | undefined;
|
|
5823
5823
|
messages?: {
|
|
5824
5824
|
text: string;
|
|
5825
|
-
type: "
|
|
5825
|
+
type: "error" | "success" | "info" | "warning";
|
|
5826
5826
|
id?: number | undefined;
|
|
5827
5827
|
}[] | undefined;
|
|
5828
5828
|
required?: boolean | undefined;
|
|
@@ -5843,7 +5843,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5843
5843
|
hint?: string | undefined;
|
|
5844
5844
|
messages?: {
|
|
5845
5845
|
text: string;
|
|
5846
|
-
type: "
|
|
5846
|
+
type: "error" | "success" | "info" | "warning";
|
|
5847
5847
|
id?: number | undefined;
|
|
5848
5848
|
}[] | undefined;
|
|
5849
5849
|
required?: boolean | undefined;
|
|
@@ -6074,7 +6074,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6074
6074
|
hint?: string | undefined;
|
|
6075
6075
|
messages?: {
|
|
6076
6076
|
text: string;
|
|
6077
|
-
type: "
|
|
6077
|
+
type: "error" | "success" | "info" | "warning";
|
|
6078
6078
|
id?: number | undefined;
|
|
6079
6079
|
}[] | undefined;
|
|
6080
6080
|
required?: boolean | undefined;
|
|
@@ -6092,7 +6092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6092
6092
|
hint?: string | undefined;
|
|
6093
6093
|
messages?: {
|
|
6094
6094
|
text: string;
|
|
6095
|
-
type: "
|
|
6095
|
+
type: "error" | "success" | "info" | "warning";
|
|
6096
6096
|
id?: number | undefined;
|
|
6097
6097
|
}[] | undefined;
|
|
6098
6098
|
required?: boolean | undefined;
|
|
@@ -6116,7 +6116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6116
6116
|
hint?: string | undefined;
|
|
6117
6117
|
messages?: {
|
|
6118
6118
|
text: string;
|
|
6119
|
-
type: "
|
|
6119
|
+
type: "error" | "success" | "info" | "warning";
|
|
6120
6120
|
id?: number | undefined;
|
|
6121
6121
|
}[] | undefined;
|
|
6122
6122
|
required?: boolean | undefined;
|
|
@@ -6140,7 +6140,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6140
6140
|
hint?: string | undefined;
|
|
6141
6141
|
messages?: {
|
|
6142
6142
|
text: string;
|
|
6143
|
-
type: "
|
|
6143
|
+
type: "error" | "success" | "info" | "warning";
|
|
6144
6144
|
id?: number | undefined;
|
|
6145
6145
|
}[] | undefined;
|
|
6146
6146
|
required?: boolean | undefined;
|
|
@@ -6169,7 +6169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6169
6169
|
hint?: string | undefined;
|
|
6170
6170
|
messages?: {
|
|
6171
6171
|
text: string;
|
|
6172
|
-
type: "
|
|
6172
|
+
type: "error" | "success" | "info" | "warning";
|
|
6173
6173
|
id?: number | undefined;
|
|
6174
6174
|
}[] | undefined;
|
|
6175
6175
|
required?: boolean | undefined;
|
|
@@ -6184,7 +6184,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6184
6184
|
hint?: string | undefined;
|
|
6185
6185
|
messages?: {
|
|
6186
6186
|
text: string;
|
|
6187
|
-
type: "
|
|
6187
|
+
type: "error" | "success" | "info" | "warning";
|
|
6188
6188
|
id?: number | undefined;
|
|
6189
6189
|
}[] | undefined;
|
|
6190
6190
|
required?: boolean | undefined;
|
|
@@ -6205,7 +6205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6205
6205
|
hint?: string | undefined;
|
|
6206
6206
|
messages?: {
|
|
6207
6207
|
text: string;
|
|
6208
|
-
type: "
|
|
6208
|
+
type: "error" | "success" | "info" | "warning";
|
|
6209
6209
|
id?: number | undefined;
|
|
6210
6210
|
}[] | undefined;
|
|
6211
6211
|
required?: boolean | undefined;
|
|
@@ -6230,7 +6230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6230
6230
|
hint?: string | undefined;
|
|
6231
6231
|
messages?: {
|
|
6232
6232
|
text: string;
|
|
6233
|
-
type: "
|
|
6233
|
+
type: "error" | "success" | "info" | "warning";
|
|
6234
6234
|
id?: number | undefined;
|
|
6235
6235
|
}[] | undefined;
|
|
6236
6236
|
required?: boolean | undefined;
|
|
@@ -6249,7 +6249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6249
6249
|
hint?: string | undefined;
|
|
6250
6250
|
messages?: {
|
|
6251
6251
|
text: string;
|
|
6252
|
-
type: "
|
|
6252
|
+
type: "error" | "success" | "info" | "warning";
|
|
6253
6253
|
id?: number | undefined;
|
|
6254
6254
|
}[] | undefined;
|
|
6255
6255
|
required?: boolean | undefined;
|
|
@@ -6269,7 +6269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6269
6269
|
hint?: string | undefined;
|
|
6270
6270
|
messages?: {
|
|
6271
6271
|
text: string;
|
|
6272
|
-
type: "
|
|
6272
|
+
type: "error" | "success" | "info" | "warning";
|
|
6273
6273
|
id?: number | undefined;
|
|
6274
6274
|
}[] | undefined;
|
|
6275
6275
|
required?: boolean | undefined;
|
|
@@ -6288,7 +6288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6288
6288
|
hint?: string | undefined;
|
|
6289
6289
|
messages?: {
|
|
6290
6290
|
text: string;
|
|
6291
|
-
type: "
|
|
6291
|
+
type: "error" | "success" | "info" | "warning";
|
|
6292
6292
|
id?: number | undefined;
|
|
6293
6293
|
}[] | undefined;
|
|
6294
6294
|
required?: boolean | undefined;
|
|
@@ -6310,7 +6310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6310
6310
|
hint?: string | undefined;
|
|
6311
6311
|
messages?: {
|
|
6312
6312
|
text: string;
|
|
6313
|
-
type: "
|
|
6313
|
+
type: "error" | "success" | "info" | "warning";
|
|
6314
6314
|
id?: number | undefined;
|
|
6315
6315
|
}[] | undefined;
|
|
6316
6316
|
required?: boolean | undefined;
|
|
@@ -6332,7 +6332,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6332
6332
|
hint?: string | undefined;
|
|
6333
6333
|
messages?: {
|
|
6334
6334
|
text: string;
|
|
6335
|
-
type: "
|
|
6335
|
+
type: "error" | "success" | "info" | "warning";
|
|
6336
6336
|
id?: number | undefined;
|
|
6337
6337
|
}[] | undefined;
|
|
6338
6338
|
required?: boolean | undefined;
|
|
@@ -6351,7 +6351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6351
6351
|
hint?: string | undefined;
|
|
6352
6352
|
messages?: {
|
|
6353
6353
|
text: string;
|
|
6354
|
-
type: "
|
|
6354
|
+
type: "error" | "success" | "info" | "warning";
|
|
6355
6355
|
id?: number | undefined;
|
|
6356
6356
|
}[] | undefined;
|
|
6357
6357
|
required?: boolean | undefined;
|
|
@@ -6376,7 +6376,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6376
6376
|
hint?: string | undefined;
|
|
6377
6377
|
messages?: {
|
|
6378
6378
|
text: string;
|
|
6379
|
-
type: "
|
|
6379
|
+
type: "error" | "success" | "info" | "warning";
|
|
6380
6380
|
id?: number | undefined;
|
|
6381
6381
|
}[] | undefined;
|
|
6382
6382
|
required?: boolean | undefined;
|
|
@@ -6397,7 +6397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6397
6397
|
hint?: string | undefined;
|
|
6398
6398
|
messages?: {
|
|
6399
6399
|
text: string;
|
|
6400
|
-
type: "
|
|
6400
|
+
type: "error" | "success" | "info" | "warning";
|
|
6401
6401
|
id?: number | undefined;
|
|
6402
6402
|
}[] | undefined;
|
|
6403
6403
|
required?: boolean | undefined;
|
|
@@ -6418,7 +6418,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6418
6418
|
hint?: string | undefined;
|
|
6419
6419
|
messages?: {
|
|
6420
6420
|
text: string;
|
|
6421
|
-
type: "
|
|
6421
|
+
type: "error" | "success" | "info" | "warning";
|
|
6422
6422
|
id?: number | undefined;
|
|
6423
6423
|
}[] | undefined;
|
|
6424
6424
|
required?: boolean | undefined;
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
};
|
|
6650
6650
|
output: {
|
|
6651
|
-
prompt: "
|
|
6651
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6652
6652
|
language: string;
|
|
6653
6653
|
}[];
|
|
6654
6654
|
outputFormat: "json";
|
|
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6686
|
$get: {
|
|
6687
6687
|
input: {
|
|
6688
6688
|
param: {
|
|
6689
|
-
prompt: "
|
|
6689
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6690
6690
|
language: string;
|
|
6691
6691
|
};
|
|
6692
6692
|
} & {
|
|
@@ -6708,7 +6708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6708
|
$put: {
|
|
6709
6709
|
input: {
|
|
6710
6710
|
param: {
|
|
6711
|
-
prompt: "
|
|
6711
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6712
6712
|
language: string;
|
|
6713
6713
|
};
|
|
6714
6714
|
} & {
|
|
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6732
|
$delete: {
|
|
6733
6733
|
input: {
|
|
6734
6734
|
param: {
|
|
6735
|
-
prompt: "
|
|
6735
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6736
6736
|
language: string;
|
|
6737
6737
|
};
|
|
6738
6738
|
} & {
|
|
@@ -6834,7 +6834,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6834
6834
|
} | undefined;
|
|
6835
6835
|
unique?: boolean | undefined;
|
|
6836
6836
|
profile_required?: boolean | undefined;
|
|
6837
|
-
verification_method?: "
|
|
6837
|
+
verification_method?: "link" | "code" | undefined;
|
|
6838
6838
|
} | undefined;
|
|
6839
6839
|
username?: {
|
|
6840
6840
|
identifier?: {
|
|
@@ -6968,7 +6968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6968
6968
|
} | undefined;
|
|
6969
6969
|
unique?: boolean | undefined;
|
|
6970
6970
|
profile_required?: boolean | undefined;
|
|
6971
|
-
verification_method?: "
|
|
6971
|
+
verification_method?: "link" | "code" | undefined;
|
|
6972
6972
|
} | undefined;
|
|
6973
6973
|
username?: {
|
|
6974
6974
|
identifier?: {
|
|
@@ -7117,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7117
7117
|
} | undefined;
|
|
7118
7118
|
unique?: boolean | undefined;
|
|
7119
7119
|
profile_required?: boolean | undefined;
|
|
7120
|
-
verification_method?: "
|
|
7120
|
+
verification_method?: "link" | "code" | undefined;
|
|
7121
7121
|
} | undefined;
|
|
7122
7122
|
username?: {
|
|
7123
7123
|
identifier?: {
|
|
@@ -7296,7 +7296,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7296
7296
|
} | undefined;
|
|
7297
7297
|
unique?: boolean | undefined;
|
|
7298
7298
|
profile_required?: boolean | undefined;
|
|
7299
|
-
verification_method?: "
|
|
7299
|
+
verification_method?: "link" | "code" | undefined;
|
|
7300
7300
|
} | undefined;
|
|
7301
7301
|
username?: {
|
|
7302
7302
|
identifier?: {
|
|
@@ -7454,7 +7454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7454
7454
|
} | undefined;
|
|
7455
7455
|
unique?: boolean | undefined;
|
|
7456
7456
|
profile_required?: boolean | undefined;
|
|
7457
|
-
verification_method?: "
|
|
7457
|
+
verification_method?: "link" | "code" | undefined;
|
|
7458
7458
|
} | undefined;
|
|
7459
7459
|
username?: {
|
|
7460
7460
|
identifier?: {
|
|
@@ -7594,7 +7594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7594
7594
|
};
|
|
7595
7595
|
} | {
|
|
7596
7596
|
mode: "inline";
|
|
7597
|
-
status: "
|
|
7597
|
+
status: "error" | "success";
|
|
7598
7598
|
connection_id: string;
|
|
7599
7599
|
connection_name: string;
|
|
7600
7600
|
strategy: string;
|
|
@@ -7630,7 +7630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7630
7630
|
tenant_id: string;
|
|
7631
7631
|
created_at: string;
|
|
7632
7632
|
updated_at: string;
|
|
7633
|
-
deploymentStatus: "
|
|
7633
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7634
7634
|
secrets?: {
|
|
7635
7635
|
[x: string]: string;
|
|
7636
7636
|
} | undefined;
|
|
@@ -7720,7 +7720,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7720
7720
|
tenant_id: string;
|
|
7721
7721
|
created_at: string;
|
|
7722
7722
|
updated_at: string;
|
|
7723
|
-
deploymentStatus: "
|
|
7723
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7724
7724
|
secrets?: {
|
|
7725
7725
|
[x: string]: string;
|
|
7726
7726
|
} | undefined;
|
|
@@ -8233,7 +8233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8233
8233
|
log_type: string;
|
|
8234
8234
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8235
8235
|
actor: {
|
|
8236
|
-
type: "
|
|
8236
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8237
8237
|
id?: string | undefined;
|
|
8238
8238
|
email?: string | undefined;
|
|
8239
8239
|
org_id?: string | undefined;
|
|
@@ -8711,7 +8711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8711
8711
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8712
8712
|
};
|
|
8713
8713
|
id: string;
|
|
8714
|
-
status: "
|
|
8714
|
+
status: "active" | "suspended" | "paused";
|
|
8715
8715
|
filters?: {
|
|
8716
8716
|
type: string;
|
|
8717
8717
|
name: string;
|
|
@@ -8743,7 +8743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8743
8743
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8744
8744
|
};
|
|
8745
8745
|
id: string;
|
|
8746
|
-
status: "
|
|
8746
|
+
status: "active" | "suspended" | "paused";
|
|
8747
8747
|
filters?: {
|
|
8748
8748
|
type: string;
|
|
8749
8749
|
name: string;
|
|
@@ -8768,7 +8768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8768
8768
|
name: string;
|
|
8769
8769
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8770
8770
|
sink: Record<string, unknown>;
|
|
8771
|
-
status?: "
|
|
8771
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
8772
8772
|
filters?: {
|
|
8773
8773
|
type: string;
|
|
8774
8774
|
name: string;
|
|
@@ -8783,7 +8783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8783
8783
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8784
8784
|
};
|
|
8785
8785
|
id: string;
|
|
8786
|
-
status: "
|
|
8786
|
+
status: "active" | "suspended" | "paused";
|
|
8787
8787
|
filters?: {
|
|
8788
8788
|
type: string;
|
|
8789
8789
|
name: string;
|
|
@@ -8818,7 +8818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8818
8818
|
}[] | undefined;
|
|
8819
8819
|
isPriority?: boolean | undefined;
|
|
8820
8820
|
id?: string | undefined;
|
|
8821
|
-
status?: "
|
|
8821
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
8822
8822
|
created_at?: string | undefined;
|
|
8823
8823
|
updated_at?: string | undefined;
|
|
8824
8824
|
};
|
|
@@ -8830,7 +8830,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8830
8830
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8831
8831
|
};
|
|
8832
8832
|
id: string;
|
|
8833
|
-
status: "
|
|
8833
|
+
status: "active" | "suspended" | "paused";
|
|
8834
8834
|
filters?: {
|
|
8835
8835
|
type: string;
|
|
8836
8836
|
name: string;
|
|
@@ -8881,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8881
|
};
|
|
8882
8882
|
};
|
|
8883
8883
|
output: {
|
|
8884
|
-
type: "
|
|
8884
|
+
type: "i" | "sv" | "cs" | "fi" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8885
8885
|
date: string;
|
|
8886
8886
|
isMobile: boolean;
|
|
8887
8887
|
log_id: string;
|
|
@@ -8920,7 +8920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8920
8920
|
limit: number;
|
|
8921
8921
|
length: number;
|
|
8922
8922
|
logs: {
|
|
8923
|
-
type: "
|
|
8923
|
+
type: "i" | "sv" | "cs" | "fi" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8924
8924
|
date: string;
|
|
8925
8925
|
isMobile: boolean;
|
|
8926
8926
|
log_id: string;
|
|
@@ -8974,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8974
8974
|
};
|
|
8975
8975
|
};
|
|
8976
8976
|
output: {
|
|
8977
|
-
type: "
|
|
8977
|
+
type: "i" | "sv" | "cs" | "fi" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8978
8978
|
date: string;
|
|
8979
8979
|
isMobile: boolean;
|
|
8980
8980
|
log_id: string;
|
|
@@ -10060,7 +10060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10060
10060
|
} | undefined;
|
|
10061
10061
|
unique?: boolean | undefined;
|
|
10062
10062
|
profile_required?: boolean | undefined;
|
|
10063
|
-
verification_method?: "
|
|
10063
|
+
verification_method?: "link" | "code" | undefined;
|
|
10064
10064
|
} | undefined;
|
|
10065
10065
|
username?: {
|
|
10066
10066
|
identifier?: {
|
|
@@ -10214,7 +10214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10214
10214
|
} | undefined;
|
|
10215
10215
|
unique?: boolean | undefined;
|
|
10216
10216
|
profile_required?: boolean | undefined;
|
|
10217
|
-
verification_method?: "
|
|
10217
|
+
verification_method?: "link" | "code" | undefined;
|
|
10218
10218
|
} | undefined;
|
|
10219
10219
|
username?: {
|
|
10220
10220
|
identifier?: {
|
|
@@ -11192,7 +11192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11192
|
};
|
|
11193
11193
|
};
|
|
11194
11194
|
output: {
|
|
11195
|
-
type: "
|
|
11195
|
+
type: "i" | "sv" | "cs" | "fi" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11196
11196
|
date: string;
|
|
11197
11197
|
isMobile: boolean;
|
|
11198
11198
|
log_id: string;
|
|
@@ -11231,7 +11231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11231
|
limit: number;
|
|
11232
11232
|
length: number;
|
|
11233
11233
|
logs: {
|
|
11234
|
-
type: "
|
|
11234
|
+
type: "i" | "sv" | "cs" | "fi" | "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" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11235
11235
|
date: string;
|
|
11236
11236
|
isMobile: boolean;
|
|
11237
11237
|
log_id: string;
|
|
@@ -11546,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11546
|
};
|
|
11547
11547
|
} & {
|
|
11548
11548
|
json: {
|
|
11549
|
-
template: "
|
|
11549
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11550
11550
|
body: string;
|
|
11551
11551
|
from: string;
|
|
11552
11552
|
subject: string;
|
|
@@ -11567,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11567
|
};
|
|
11568
11568
|
} & {
|
|
11569
11569
|
json: {
|
|
11570
|
-
template: "
|
|
11570
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11571
11571
|
body: string;
|
|
11572
11572
|
from: string;
|
|
11573
11573
|
subject: string;
|
|
@@ -11579,7 +11579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11579
11579
|
};
|
|
11580
11580
|
};
|
|
11581
11581
|
output: {
|
|
11582
|
-
template: "
|
|
11582
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11583
11583
|
body: string;
|
|
11584
11584
|
from: string;
|
|
11585
11585
|
subject: string;
|
|
@@ -11602,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11602
|
};
|
|
11603
11603
|
};
|
|
11604
11604
|
output: {
|
|
11605
|
-
name: "
|
|
11605
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11606
11606
|
body: string;
|
|
11607
11607
|
subject: string;
|
|
11608
11608
|
}[];
|
|
@@ -11615,7 +11615,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11615
|
$get: {
|
|
11616
11616
|
input: {
|
|
11617
11617
|
param: {
|
|
11618
|
-
templateName: "
|
|
11618
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11619
11619
|
};
|
|
11620
11620
|
} & {
|
|
11621
11621
|
header: {
|
|
@@ -11628,7 +11628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11628
11628
|
} | {
|
|
11629
11629
|
input: {
|
|
11630
11630
|
param: {
|
|
11631
|
-
templateName: "
|
|
11631
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11632
11632
|
};
|
|
11633
11633
|
} & {
|
|
11634
11634
|
header: {
|
|
@@ -11636,7 +11636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11636
11636
|
};
|
|
11637
11637
|
};
|
|
11638
11638
|
output: {
|
|
11639
|
-
template: "
|
|
11639
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11640
11640
|
body: string;
|
|
11641
11641
|
from: string;
|
|
11642
11642
|
subject: string;
|
|
@@ -11655,7 +11655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11655
11655
|
$put: {
|
|
11656
11656
|
input: {
|
|
11657
11657
|
param: {
|
|
11658
|
-
templateName: "
|
|
11658
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11659
11659
|
};
|
|
11660
11660
|
} & {
|
|
11661
11661
|
header: {
|
|
@@ -11663,7 +11663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11663
11663
|
};
|
|
11664
11664
|
} & {
|
|
11665
11665
|
json: {
|
|
11666
|
-
template: "
|
|
11666
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11667
11667
|
body: string;
|
|
11668
11668
|
subject: string;
|
|
11669
11669
|
syntax?: "liquid" | undefined;
|
|
@@ -11675,7 +11675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11675
11675
|
};
|
|
11676
11676
|
};
|
|
11677
11677
|
output: {
|
|
11678
|
-
template: "
|
|
11678
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11679
11679
|
body: string;
|
|
11680
11680
|
from: string;
|
|
11681
11681
|
subject: string;
|
|
@@ -11694,7 +11694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11694
11694
|
$patch: {
|
|
11695
11695
|
input: {
|
|
11696
11696
|
param: {
|
|
11697
|
-
templateName: "
|
|
11697
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11698
11698
|
};
|
|
11699
11699
|
} & {
|
|
11700
11700
|
header: {
|
|
@@ -11702,7 +11702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11702
11702
|
};
|
|
11703
11703
|
} & {
|
|
11704
11704
|
json: {
|
|
11705
|
-
template?: "
|
|
11705
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11706
11706
|
body?: string | undefined;
|
|
11707
11707
|
from?: string | undefined;
|
|
11708
11708
|
subject?: string | undefined;
|
|
@@ -11719,7 +11719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11719
11719
|
} | {
|
|
11720
11720
|
input: {
|
|
11721
11721
|
param: {
|
|
11722
|
-
templateName: "
|
|
11722
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11723
11723
|
};
|
|
11724
11724
|
} & {
|
|
11725
11725
|
header: {
|
|
@@ -11727,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11727
|
};
|
|
11728
11728
|
} & {
|
|
11729
11729
|
json: {
|
|
11730
|
-
template?: "
|
|
11730
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11731
11731
|
body?: string | undefined;
|
|
11732
11732
|
from?: string | undefined;
|
|
11733
11733
|
subject?: string | undefined;
|
|
@@ -11739,7 +11739,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11739
11739
|
};
|
|
11740
11740
|
};
|
|
11741
11741
|
output: {
|
|
11742
|
-
template: "
|
|
11742
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11743
11743
|
body: string;
|
|
11744
11744
|
from: string;
|
|
11745
11745
|
subject: string;
|
|
@@ -11758,7 +11758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11758
11758
|
$delete: {
|
|
11759
11759
|
input: {
|
|
11760
11760
|
param: {
|
|
11761
|
-
templateName: "
|
|
11761
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11762
11762
|
};
|
|
11763
11763
|
} & {
|
|
11764
11764
|
header: {
|
|
@@ -11771,7 +11771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11771
11771
|
} | {
|
|
11772
11772
|
input: {
|
|
11773
11773
|
param: {
|
|
11774
|
-
templateName: "
|
|
11774
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11775
11775
|
};
|
|
11776
11776
|
} & {
|
|
11777
11777
|
header: {
|
|
@@ -11788,7 +11788,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11788
11788
|
$post: {
|
|
11789
11789
|
input: {
|
|
11790
11790
|
param: {
|
|
11791
|
-
templateName: "
|
|
11791
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11792
11792
|
};
|
|
11793
11793
|
} & {
|
|
11794
11794
|
header: {
|
|
@@ -12071,7 +12071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12071
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12072
12072
|
custom_domain_id: string;
|
|
12073
12073
|
primary: boolean;
|
|
12074
|
-
status: "
|
|
12074
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12075
12075
|
verification_method?: "txt" | undefined;
|
|
12076
12076
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12077
12077
|
domain_metadata?: {
|
|
@@ -12112,7 +12112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12112
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12113
12113
|
custom_domain_id: string;
|
|
12114
12114
|
primary: boolean;
|
|
12115
|
-
status: "
|
|
12115
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12116
12116
|
verification_method?: "txt" | undefined;
|
|
12117
12117
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12118
12118
|
domain_metadata?: {
|
|
@@ -12176,7 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12176
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12177
|
custom_domain_id: string;
|
|
12178
12178
|
primary: boolean;
|
|
12179
|
-
status: "
|
|
12179
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12180
12180
|
verification_method?: "txt" | undefined;
|
|
12181
12181
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12182
12182
|
domain_metadata?: {
|
|
@@ -12223,7 +12223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12223
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12224
12224
|
custom_domain_id: string;
|
|
12225
12225
|
primary: boolean;
|
|
12226
|
-
status: "
|
|
12226
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12227
12227
|
verification_method?: "txt" | undefined;
|
|
12228
12228
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12229
12229
|
domain_metadata?: {
|
|
@@ -12269,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12269
12269
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12270
12270
|
custom_domain_id: string;
|
|
12271
12271
|
primary: boolean;
|
|
12272
|
-
status: "
|
|
12272
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12273
12273
|
verification_method?: "txt" | undefined;
|
|
12274
12274
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12275
12275
|
domain_metadata?: {
|
|
@@ -12310,7 +12310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12310
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12311
12311
|
custom_domain_id: string;
|
|
12312
12312
|
primary: boolean;
|
|
12313
|
-
status: "
|
|
12313
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12314
12314
|
verification_method?: "txt" | undefined;
|
|
12315
12315
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12316
12316
|
domain_metadata?: {
|
|
@@ -12870,7 +12870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12870
12870
|
output: {
|
|
12871
12871
|
id: string;
|
|
12872
12872
|
trigger_id: string;
|
|
12873
|
-
status: "
|
|
12873
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
12874
12874
|
results: {
|
|
12875
12875
|
action_name: string;
|
|
12876
12876
|
error: {
|
|
@@ -12917,7 +12917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12917
12917
|
logs: {
|
|
12918
12918
|
action_name: string;
|
|
12919
12919
|
lines: {
|
|
12920
|
-
level: "
|
|
12920
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12921
12921
|
message: string;
|
|
12922
12922
|
}[];
|
|
12923
12923
|
}[];
|
|
@@ -13584,7 +13584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13584
13584
|
args: import("hono/utils/types").JSONValue[];
|
|
13585
13585
|
}[];
|
|
13586
13586
|
logs: {
|
|
13587
|
-
level: "
|
|
13587
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13588
13588
|
message: string;
|
|
13589
13589
|
}[];
|
|
13590
13590
|
error?: string | undefined;
|
|
@@ -13632,7 +13632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13632
13632
|
message: string;
|
|
13633
13633
|
};
|
|
13634
13634
|
outputFormat: "json";
|
|
13635
|
-
status:
|
|
13635
|
+
status: 500;
|
|
13636
13636
|
} | {
|
|
13637
13637
|
input: {
|
|
13638
13638
|
query: {
|
|
@@ -13650,7 +13650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13650
13650
|
message: string;
|
|
13651
13651
|
};
|
|
13652
13652
|
outputFormat: "json";
|
|
13653
|
-
status:
|
|
13653
|
+
status: 400;
|
|
13654
13654
|
};
|
|
13655
13655
|
};
|
|
13656
13656
|
} & {
|
|
@@ -13688,7 +13688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13688
13688
|
message: string;
|
|
13689
13689
|
};
|
|
13690
13690
|
outputFormat: "json";
|
|
13691
|
-
status:
|
|
13691
|
+
status: 500;
|
|
13692
13692
|
} | {
|
|
13693
13693
|
input: {
|
|
13694
13694
|
form: {
|
|
@@ -13706,7 +13706,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13706
13706
|
message: string;
|
|
13707
13707
|
};
|
|
13708
13708
|
outputFormat: "json";
|
|
13709
|
-
status:
|
|
13709
|
+
status: 400;
|
|
13710
13710
|
};
|
|
13711
13711
|
};
|
|
13712
13712
|
}, "/login/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -13744,7 +13744,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13744
13744
|
message: string;
|
|
13745
13745
|
};
|
|
13746
13746
|
outputFormat: "json";
|
|
13747
|
-
status:
|
|
13747
|
+
status: 500;
|
|
13748
13748
|
} | {
|
|
13749
13749
|
input: {
|
|
13750
13750
|
query: {
|
|
@@ -13762,7 +13762,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13762
13762
|
message: string;
|
|
13763
13763
|
};
|
|
13764
13764
|
outputFormat: "json";
|
|
13765
|
-
status:
|
|
13765
|
+
status: 400;
|
|
13766
13766
|
};
|
|
13767
13767
|
};
|
|
13768
13768
|
} & {
|
|
@@ -13800,7 +13800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13800
13800
|
message: string;
|
|
13801
13801
|
};
|
|
13802
13802
|
outputFormat: "json";
|
|
13803
|
-
status:
|
|
13803
|
+
status: 500;
|
|
13804
13804
|
} | {
|
|
13805
13805
|
input: {
|
|
13806
13806
|
form: {
|
|
@@ -13818,7 +13818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13818
13818
|
message: string;
|
|
13819
13819
|
};
|
|
13820
13820
|
outputFormat: "json";
|
|
13821
|
-
status:
|
|
13821
|
+
status: 400;
|
|
13822
13822
|
};
|
|
13823
13823
|
};
|
|
13824
13824
|
}, "/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14315,21 +14315,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14315
14315
|
connection: "email";
|
|
14316
14316
|
client_id: string;
|
|
14317
14317
|
email: string;
|
|
14318
|
-
send: "
|
|
14318
|
+
send: "link" | "code";
|
|
14319
14319
|
authParams: {
|
|
14320
|
-
state?: string | undefined;
|
|
14321
|
-
code_challenge?: string | undefined;
|
|
14322
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14323
|
-
redirect_uri?: string | undefined;
|
|
14324
|
-
nonce?: string | undefined;
|
|
14325
|
-
act_as?: string | undefined;
|
|
14326
14320
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14327
14321
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14328
|
-
audience?: string | undefined;
|
|
14329
|
-
organization?: string | undefined;
|
|
14330
14322
|
scope?: string | undefined;
|
|
14331
|
-
prompt?: string | undefined;
|
|
14332
14323
|
username?: string | undefined;
|
|
14324
|
+
audience?: string | undefined;
|
|
14325
|
+
state?: string | undefined;
|
|
14326
|
+
prompt?: string | undefined;
|
|
14327
|
+
act_as?: string | undefined;
|
|
14328
|
+
redirect_uri?: string | undefined;
|
|
14329
|
+
organization?: string | undefined;
|
|
14330
|
+
nonce?: string | undefined;
|
|
14331
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14332
|
+
code_challenge?: string | undefined;
|
|
14333
14333
|
ui_locales?: string | undefined;
|
|
14334
14334
|
max_age?: number | undefined;
|
|
14335
14335
|
acr_values?: string | undefined;
|
|
@@ -14351,21 +14351,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14351
14351
|
client_id: string;
|
|
14352
14352
|
connection: "sms";
|
|
14353
14353
|
phone_number: string;
|
|
14354
|
-
send: "
|
|
14354
|
+
send: "link" | "code";
|
|
14355
14355
|
authParams: {
|
|
14356
|
-
state?: string | undefined;
|
|
14357
|
-
code_challenge?: string | undefined;
|
|
14358
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14359
|
-
redirect_uri?: string | undefined;
|
|
14360
|
-
nonce?: string | undefined;
|
|
14361
|
-
act_as?: string | undefined;
|
|
14362
14356
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14363
14357
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14364
|
-
audience?: string | undefined;
|
|
14365
|
-
organization?: string | undefined;
|
|
14366
14358
|
scope?: string | undefined;
|
|
14367
|
-
prompt?: string | undefined;
|
|
14368
14359
|
username?: string | undefined;
|
|
14360
|
+
audience?: string | undefined;
|
|
14361
|
+
state?: string | undefined;
|
|
14362
|
+
prompt?: string | undefined;
|
|
14363
|
+
act_as?: string | undefined;
|
|
14364
|
+
redirect_uri?: string | undefined;
|
|
14365
|
+
organization?: string | undefined;
|
|
14366
|
+
nonce?: string | undefined;
|
|
14367
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14368
|
+
code_challenge?: string | undefined;
|
|
14369
14369
|
ui_locales?: string | undefined;
|
|
14370
14370
|
max_age?: number | undefined;
|
|
14371
14371
|
acr_values?: string | undefined;
|
|
@@ -14430,7 +14430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14430
14430
|
error_description?: string | undefined;
|
|
14431
14431
|
};
|
|
14432
14432
|
outputFormat: "json";
|
|
14433
|
-
status:
|
|
14433
|
+
status: 500;
|
|
14434
14434
|
} | {
|
|
14435
14435
|
input: {
|
|
14436
14436
|
query: {
|
|
@@ -14451,7 +14451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14451
14451
|
error_description?: string | undefined;
|
|
14452
14452
|
};
|
|
14453
14453
|
outputFormat: "json";
|
|
14454
|
-
status:
|
|
14454
|
+
status: 400;
|
|
14455
14455
|
};
|
|
14456
14456
|
};
|
|
14457
14457
|
}, "/passwordless"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14497,14 +14497,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14497
14497
|
input: {
|
|
14498
14498
|
form: {
|
|
14499
14499
|
token: string;
|
|
14500
|
-
token_type_hint?: "
|
|
14500
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14501
14501
|
client_id?: string | undefined;
|
|
14502
14502
|
client_secret?: string | undefined;
|
|
14503
14503
|
};
|
|
14504
14504
|
} & {
|
|
14505
14505
|
json: {
|
|
14506
14506
|
token: string;
|
|
14507
|
-
token_type_hint?: "
|
|
14507
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14508
14508
|
client_id?: string | undefined;
|
|
14509
14509
|
client_secret?: string | undefined;
|
|
14510
14510
|
};
|
|
@@ -14516,14 +14516,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14516
14516
|
input: {
|
|
14517
14517
|
form: {
|
|
14518
14518
|
token: string;
|
|
14519
|
-
token_type_hint?: "
|
|
14519
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14520
14520
|
client_id?: string | undefined;
|
|
14521
14521
|
client_secret?: string | undefined;
|
|
14522
14522
|
};
|
|
14523
14523
|
} & {
|
|
14524
14524
|
json: {
|
|
14525
14525
|
token: string;
|
|
14526
|
-
token_type_hint?: "
|
|
14526
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14527
14527
|
client_id?: string | undefined;
|
|
14528
14528
|
client_secret?: string | undefined;
|
|
14529
14529
|
};
|
|
@@ -14538,14 +14538,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14538
14538
|
input: {
|
|
14539
14539
|
form: {
|
|
14540
14540
|
token: string;
|
|
14541
|
-
token_type_hint?: "
|
|
14541
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14542
14542
|
client_id?: string | undefined;
|
|
14543
14543
|
client_secret?: string | undefined;
|
|
14544
14544
|
};
|
|
14545
14545
|
} & {
|
|
14546
14546
|
json: {
|
|
14547
14547
|
token: string;
|
|
14548
|
-
token_type_hint?: "
|
|
14548
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14549
14549
|
client_id?: string | undefined;
|
|
14550
14550
|
client_secret?: string | undefined;
|
|
14551
14551
|
};
|
|
@@ -15405,7 +15405,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15405
15405
|
};
|
|
15406
15406
|
output: {};
|
|
15407
15407
|
outputFormat: string;
|
|
15408
|
-
status:
|
|
15408
|
+
status: 500;
|
|
15409
15409
|
} | {
|
|
15410
15410
|
input: {
|
|
15411
15411
|
query: {
|
|
@@ -15414,7 +15414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15414
15414
|
};
|
|
15415
15415
|
output: {};
|
|
15416
15416
|
outputFormat: string;
|
|
15417
|
-
status:
|
|
15417
|
+
status: 302;
|
|
15418
15418
|
} | {
|
|
15419
15419
|
input: {
|
|
15420
15420
|
query: {
|
|
@@ -15423,7 +15423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15423
15423
|
};
|
|
15424
15424
|
output: {};
|
|
15425
15425
|
outputFormat: string;
|
|
15426
|
-
status:
|
|
15426
|
+
status: 400;
|
|
15427
15427
|
};
|
|
15428
15428
|
};
|
|
15429
15429
|
}, "/continue"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -16272,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16272
16272
|
$get: {
|
|
16273
16273
|
input: {
|
|
16274
16274
|
param: {
|
|
16275
|
-
screen: "
|
|
16275
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16276
16276
|
};
|
|
16277
16277
|
} & {
|
|
16278
16278
|
query: {
|
|
@@ -16288,7 +16288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16288
16288
|
} | {
|
|
16289
16289
|
input: {
|
|
16290
16290
|
param: {
|
|
16291
|
-
screen: "
|
|
16291
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16292
16292
|
};
|
|
16293
16293
|
} & {
|
|
16294
16294
|
query: {
|
|
@@ -16304,7 +16304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16304
16304
|
} | {
|
|
16305
16305
|
input: {
|
|
16306
16306
|
param: {
|
|
16307
|
-
screen: "
|
|
16307
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16308
16308
|
};
|
|
16309
16309
|
} & {
|
|
16310
16310
|
query: {
|
|
@@ -16324,7 +16324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16324
16324
|
$post: {
|
|
16325
16325
|
input: {
|
|
16326
16326
|
param: {
|
|
16327
|
-
screen: "
|
|
16327
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16328
16328
|
};
|
|
16329
16329
|
} & {
|
|
16330
16330
|
query: {
|
|
@@ -16342,7 +16342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16342
16342
|
} | {
|
|
16343
16343
|
input: {
|
|
16344
16344
|
param: {
|
|
16345
|
-
screen: "
|
|
16345
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16346
16346
|
};
|
|
16347
16347
|
} & {
|
|
16348
16348
|
query: {
|
|
@@ -16360,7 +16360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16360
16360
|
} | {
|
|
16361
16361
|
input: {
|
|
16362
16362
|
param: {
|
|
16363
|
-
screen: "
|
|
16363
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16364
16364
|
};
|
|
16365
16365
|
} & {
|
|
16366
16366
|
query: {
|