authhero 5.17.0 → 5.17.1
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 +4 -4
- package/dist/authhero.d.ts +192 -192
- package/dist/authhero.mjs +48 -48
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/emails/defaults/Layout.d.ts +1 -1
- package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +191 -191
- package/dist/types/routes/auth-api/index.d.ts +20 -20
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +165 -165
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Hooks.d.ts +1 -1
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
80
|
};
|
|
81
81
|
} & {
|
|
82
82
|
json: {
|
|
83
|
-
type: "
|
|
83
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
84
84
|
phone_number?: string | undefined;
|
|
85
85
|
totp_secret?: string | undefined;
|
|
86
86
|
credential_id?: string | undefined;
|
|
@@ -220,7 +220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
220
220
|
};
|
|
221
221
|
};
|
|
222
222
|
output: {
|
|
223
|
-
name: "email" | "
|
|
223
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
224
224
|
enabled: boolean;
|
|
225
225
|
trial_expired?: boolean | undefined;
|
|
226
226
|
}[];
|
|
@@ -375,7 +375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
375
375
|
$get: {
|
|
376
376
|
input: {
|
|
377
377
|
param: {
|
|
378
|
-
factor_name: "email" | "
|
|
378
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
379
379
|
};
|
|
380
380
|
} & {
|
|
381
381
|
header: {
|
|
@@ -383,7 +383,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
383
383
|
};
|
|
384
384
|
};
|
|
385
385
|
output: {
|
|
386
|
-
name: "email" | "
|
|
386
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
387
387
|
enabled: boolean;
|
|
388
388
|
trial_expired?: boolean | undefined;
|
|
389
389
|
};
|
|
@@ -396,7 +396,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
396
396
|
$put: {
|
|
397
397
|
input: {
|
|
398
398
|
param: {
|
|
399
|
-
factor_name: "email" | "
|
|
399
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
400
400
|
};
|
|
401
401
|
} & {
|
|
402
402
|
header: {
|
|
@@ -408,7 +408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
408
408
|
};
|
|
409
409
|
};
|
|
410
410
|
output: {
|
|
411
|
-
name: "email" | "
|
|
411
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
412
412
|
enabled: boolean;
|
|
413
413
|
trial_expired?: boolean | undefined;
|
|
414
414
|
};
|
|
@@ -1153,10 +1153,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1153
1153
|
invitee: {
|
|
1154
1154
|
email?: string | undefined;
|
|
1155
1155
|
};
|
|
1156
|
-
id?: string | undefined;
|
|
1157
1156
|
app_metadata?: Record<string, any> | undefined;
|
|
1158
1157
|
user_metadata?: Record<string, any> | undefined;
|
|
1159
1158
|
connection_id?: string | undefined;
|
|
1159
|
+
id?: string | undefined;
|
|
1160
1160
|
roles?: string[] | undefined;
|
|
1161
1161
|
ttl_sec?: number | undefined;
|
|
1162
1162
|
send_invitation_email?: boolean | undefined;
|
|
@@ -2584,7 +2584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2584
2584
|
hint?: string | undefined;
|
|
2585
2585
|
messages?: {
|
|
2586
2586
|
text: string;
|
|
2587
|
-
type: "
|
|
2587
|
+
type: "success" | "error" | "info" | "warning";
|
|
2588
2588
|
id?: number | undefined;
|
|
2589
2589
|
}[] | undefined;
|
|
2590
2590
|
required?: boolean | undefined;
|
|
@@ -2602,7 +2602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2602
2602
|
hint?: string | undefined;
|
|
2603
2603
|
messages?: {
|
|
2604
2604
|
text: string;
|
|
2605
|
-
type: "
|
|
2605
|
+
type: "success" | "error" | "info" | "warning";
|
|
2606
2606
|
id?: number | undefined;
|
|
2607
2607
|
}[] | undefined;
|
|
2608
2608
|
required?: boolean | undefined;
|
|
@@ -2626,7 +2626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2626
2626
|
hint?: string | undefined;
|
|
2627
2627
|
messages?: {
|
|
2628
2628
|
text: string;
|
|
2629
|
-
type: "
|
|
2629
|
+
type: "success" | "error" | "info" | "warning";
|
|
2630
2630
|
id?: number | undefined;
|
|
2631
2631
|
}[] | undefined;
|
|
2632
2632
|
required?: boolean | undefined;
|
|
@@ -2650,7 +2650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2650
2650
|
hint?: string | undefined;
|
|
2651
2651
|
messages?: {
|
|
2652
2652
|
text: string;
|
|
2653
|
-
type: "
|
|
2653
|
+
type: "success" | "error" | "info" | "warning";
|
|
2654
2654
|
id?: number | undefined;
|
|
2655
2655
|
}[] | undefined;
|
|
2656
2656
|
required?: boolean | undefined;
|
|
@@ -2679,7 +2679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2679
2679
|
hint?: string | undefined;
|
|
2680
2680
|
messages?: {
|
|
2681
2681
|
text: string;
|
|
2682
|
-
type: "
|
|
2682
|
+
type: "success" | "error" | "info" | "warning";
|
|
2683
2683
|
id?: number | undefined;
|
|
2684
2684
|
}[] | undefined;
|
|
2685
2685
|
required?: boolean | undefined;
|
|
@@ -2694,7 +2694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2694
2694
|
hint?: string | undefined;
|
|
2695
2695
|
messages?: {
|
|
2696
2696
|
text: string;
|
|
2697
|
-
type: "
|
|
2697
|
+
type: "success" | "error" | "info" | "warning";
|
|
2698
2698
|
id?: number | undefined;
|
|
2699
2699
|
}[] | undefined;
|
|
2700
2700
|
required?: boolean | undefined;
|
|
@@ -2715,7 +2715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2715
2715
|
hint?: string | undefined;
|
|
2716
2716
|
messages?: {
|
|
2717
2717
|
text: string;
|
|
2718
|
-
type: "
|
|
2718
|
+
type: "success" | "error" | "info" | "warning";
|
|
2719
2719
|
id?: number | undefined;
|
|
2720
2720
|
}[] | undefined;
|
|
2721
2721
|
required?: boolean | undefined;
|
|
@@ -2740,7 +2740,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2740
2740
|
hint?: string | undefined;
|
|
2741
2741
|
messages?: {
|
|
2742
2742
|
text: string;
|
|
2743
|
-
type: "
|
|
2743
|
+
type: "success" | "error" | "info" | "warning";
|
|
2744
2744
|
id?: number | undefined;
|
|
2745
2745
|
}[] | undefined;
|
|
2746
2746
|
required?: boolean | undefined;
|
|
@@ -2759,7 +2759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2759
2759
|
hint?: string | undefined;
|
|
2760
2760
|
messages?: {
|
|
2761
2761
|
text: string;
|
|
2762
|
-
type: "
|
|
2762
|
+
type: "success" | "error" | "info" | "warning";
|
|
2763
2763
|
id?: number | undefined;
|
|
2764
2764
|
}[] | undefined;
|
|
2765
2765
|
required?: boolean | undefined;
|
|
@@ -2779,7 +2779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2779
2779
|
hint?: string | undefined;
|
|
2780
2780
|
messages?: {
|
|
2781
2781
|
text: string;
|
|
2782
|
-
type: "
|
|
2782
|
+
type: "success" | "error" | "info" | "warning";
|
|
2783
2783
|
id?: number | undefined;
|
|
2784
2784
|
}[] | undefined;
|
|
2785
2785
|
required?: boolean | undefined;
|
|
@@ -2798,7 +2798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2798
2798
|
hint?: string | undefined;
|
|
2799
2799
|
messages?: {
|
|
2800
2800
|
text: string;
|
|
2801
|
-
type: "
|
|
2801
|
+
type: "success" | "error" | "info" | "warning";
|
|
2802
2802
|
id?: number | undefined;
|
|
2803
2803
|
}[] | undefined;
|
|
2804
2804
|
required?: boolean | undefined;
|
|
@@ -2820,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2820
2820
|
hint?: string | undefined;
|
|
2821
2821
|
messages?: {
|
|
2822
2822
|
text: string;
|
|
2823
|
-
type: "
|
|
2823
|
+
type: "success" | "error" | "info" | "warning";
|
|
2824
2824
|
id?: number | undefined;
|
|
2825
2825
|
}[] | undefined;
|
|
2826
2826
|
required?: boolean | undefined;
|
|
@@ -2842,7 +2842,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2842
2842
|
hint?: string | undefined;
|
|
2843
2843
|
messages?: {
|
|
2844
2844
|
text: string;
|
|
2845
|
-
type: "
|
|
2845
|
+
type: "success" | "error" | "info" | "warning";
|
|
2846
2846
|
id?: number | undefined;
|
|
2847
2847
|
}[] | undefined;
|
|
2848
2848
|
required?: boolean | undefined;
|
|
@@ -2861,7 +2861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2861
2861
|
hint?: string | undefined;
|
|
2862
2862
|
messages?: {
|
|
2863
2863
|
text: string;
|
|
2864
|
-
type: "
|
|
2864
|
+
type: "success" | "error" | "info" | "warning";
|
|
2865
2865
|
id?: number | undefined;
|
|
2866
2866
|
}[] | undefined;
|
|
2867
2867
|
required?: boolean | undefined;
|
|
@@ -2886,7 +2886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2886
2886
|
hint?: string | undefined;
|
|
2887
2887
|
messages?: {
|
|
2888
2888
|
text: string;
|
|
2889
|
-
type: "
|
|
2889
|
+
type: "success" | "error" | "info" | "warning";
|
|
2890
2890
|
id?: number | undefined;
|
|
2891
2891
|
}[] | undefined;
|
|
2892
2892
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2907,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2907
2907
|
hint?: string | undefined;
|
|
2908
2908
|
messages?: {
|
|
2909
2909
|
text: string;
|
|
2910
|
-
type: "
|
|
2910
|
+
type: "success" | "error" | "info" | "warning";
|
|
2911
2911
|
id?: number | undefined;
|
|
2912
2912
|
}[] | undefined;
|
|
2913
2913
|
required?: boolean | undefined;
|
|
@@ -2928,7 +2928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2928
2928
|
hint?: string | undefined;
|
|
2929
2929
|
messages?: {
|
|
2930
2930
|
text: string;
|
|
2931
|
-
type: "
|
|
2931
|
+
type: "success" | "error" | "info" | "warning";
|
|
2932
2932
|
id?: number | undefined;
|
|
2933
2933
|
}[] | undefined;
|
|
2934
2934
|
required?: boolean | undefined;
|
|
@@ -3161,7 +3161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3161
3161
|
hint?: string | undefined;
|
|
3162
3162
|
messages?: {
|
|
3163
3163
|
text: string;
|
|
3164
|
-
type: "
|
|
3164
|
+
type: "success" | "error" | "info" | "warning";
|
|
3165
3165
|
id?: number | undefined;
|
|
3166
3166
|
}[] | undefined;
|
|
3167
3167
|
required?: boolean | undefined;
|
|
@@ -3179,7 +3179,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3179
3179
|
hint?: string | undefined;
|
|
3180
3180
|
messages?: {
|
|
3181
3181
|
text: string;
|
|
3182
|
-
type: "
|
|
3182
|
+
type: "success" | "error" | "info" | "warning";
|
|
3183
3183
|
id?: number | undefined;
|
|
3184
3184
|
}[] | undefined;
|
|
3185
3185
|
required?: boolean | undefined;
|
|
@@ -3203,7 +3203,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3203
3203
|
hint?: string | undefined;
|
|
3204
3204
|
messages?: {
|
|
3205
3205
|
text: string;
|
|
3206
|
-
type: "
|
|
3206
|
+
type: "success" | "error" | "info" | "warning";
|
|
3207
3207
|
id?: number | undefined;
|
|
3208
3208
|
}[] | undefined;
|
|
3209
3209
|
required?: boolean | undefined;
|
|
@@ -3227,7 +3227,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3227
3227
|
hint?: string | undefined;
|
|
3228
3228
|
messages?: {
|
|
3229
3229
|
text: string;
|
|
3230
|
-
type: "
|
|
3230
|
+
type: "success" | "error" | "info" | "warning";
|
|
3231
3231
|
id?: number | undefined;
|
|
3232
3232
|
}[] | undefined;
|
|
3233
3233
|
required?: boolean | undefined;
|
|
@@ -3256,7 +3256,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3256
3256
|
hint?: string | undefined;
|
|
3257
3257
|
messages?: {
|
|
3258
3258
|
text: string;
|
|
3259
|
-
type: "
|
|
3259
|
+
type: "success" | "error" | "info" | "warning";
|
|
3260
3260
|
id?: number | undefined;
|
|
3261
3261
|
}[] | undefined;
|
|
3262
3262
|
required?: boolean | undefined;
|
|
@@ -3271,7 +3271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3271
3271
|
hint?: string | undefined;
|
|
3272
3272
|
messages?: {
|
|
3273
3273
|
text: string;
|
|
3274
|
-
type: "
|
|
3274
|
+
type: "success" | "error" | "info" | "warning";
|
|
3275
3275
|
id?: number | undefined;
|
|
3276
3276
|
}[] | undefined;
|
|
3277
3277
|
required?: boolean | undefined;
|
|
@@ -3292,7 +3292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3292
3292
|
hint?: string | undefined;
|
|
3293
3293
|
messages?: {
|
|
3294
3294
|
text: string;
|
|
3295
|
-
type: "
|
|
3295
|
+
type: "success" | "error" | "info" | "warning";
|
|
3296
3296
|
id?: number | undefined;
|
|
3297
3297
|
}[] | undefined;
|
|
3298
3298
|
required?: boolean | undefined;
|
|
@@ -3317,7 +3317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3317
3317
|
hint?: string | undefined;
|
|
3318
3318
|
messages?: {
|
|
3319
3319
|
text: string;
|
|
3320
|
-
type: "
|
|
3320
|
+
type: "success" | "error" | "info" | "warning";
|
|
3321
3321
|
id?: number | undefined;
|
|
3322
3322
|
}[] | undefined;
|
|
3323
3323
|
required?: boolean | undefined;
|
|
@@ -3336,7 +3336,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3336
3336
|
hint?: string | undefined;
|
|
3337
3337
|
messages?: {
|
|
3338
3338
|
text: string;
|
|
3339
|
-
type: "
|
|
3339
|
+
type: "success" | "error" | "info" | "warning";
|
|
3340
3340
|
id?: number | undefined;
|
|
3341
3341
|
}[] | undefined;
|
|
3342
3342
|
required?: boolean | undefined;
|
|
@@ -3356,7 +3356,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3356
3356
|
hint?: string | undefined;
|
|
3357
3357
|
messages?: {
|
|
3358
3358
|
text: string;
|
|
3359
|
-
type: "
|
|
3359
|
+
type: "success" | "error" | "info" | "warning";
|
|
3360
3360
|
id?: number | undefined;
|
|
3361
3361
|
}[] | undefined;
|
|
3362
3362
|
required?: boolean | undefined;
|
|
@@ -3375,7 +3375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3375
3375
|
hint?: string | undefined;
|
|
3376
3376
|
messages?: {
|
|
3377
3377
|
text: string;
|
|
3378
|
-
type: "
|
|
3378
|
+
type: "success" | "error" | "info" | "warning";
|
|
3379
3379
|
id?: number | undefined;
|
|
3380
3380
|
}[] | undefined;
|
|
3381
3381
|
required?: boolean | undefined;
|
|
@@ -3397,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3397
3397
|
hint?: string | undefined;
|
|
3398
3398
|
messages?: {
|
|
3399
3399
|
text: string;
|
|
3400
|
-
type: "
|
|
3400
|
+
type: "success" | "error" | "info" | "warning";
|
|
3401
3401
|
id?: number | undefined;
|
|
3402
3402
|
}[] | undefined;
|
|
3403
3403
|
required?: boolean | undefined;
|
|
@@ -3419,7 +3419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3419
3419
|
hint?: string | undefined;
|
|
3420
3420
|
messages?: {
|
|
3421
3421
|
text: string;
|
|
3422
|
-
type: "
|
|
3422
|
+
type: "success" | "error" | "info" | "warning";
|
|
3423
3423
|
id?: number | undefined;
|
|
3424
3424
|
}[] | undefined;
|
|
3425
3425
|
required?: boolean | undefined;
|
|
@@ -3438,7 +3438,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3438
3438
|
hint?: string | undefined;
|
|
3439
3439
|
messages?: {
|
|
3440
3440
|
text: string;
|
|
3441
|
-
type: "
|
|
3441
|
+
type: "success" | "error" | "info" | "warning";
|
|
3442
3442
|
id?: number | undefined;
|
|
3443
3443
|
}[] | undefined;
|
|
3444
3444
|
required?: boolean | undefined;
|
|
@@ -3463,7 +3463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3463
3463
|
hint?: string | undefined;
|
|
3464
3464
|
messages?: {
|
|
3465
3465
|
text: string;
|
|
3466
|
-
type: "
|
|
3466
|
+
type: "success" | "error" | "info" | "warning";
|
|
3467
3467
|
id?: number | undefined;
|
|
3468
3468
|
}[] | undefined;
|
|
3469
3469
|
required?: boolean | undefined;
|
|
@@ -3484,7 +3484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3484
3484
|
hint?: string | undefined;
|
|
3485
3485
|
messages?: {
|
|
3486
3486
|
text: string;
|
|
3487
|
-
type: "
|
|
3487
|
+
type: "success" | "error" | "info" | "warning";
|
|
3488
3488
|
id?: number | undefined;
|
|
3489
3489
|
}[] | undefined;
|
|
3490
3490
|
required?: boolean | undefined;
|
|
@@ -3505,7 +3505,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3505
3505
|
hint?: string | undefined;
|
|
3506
3506
|
messages?: {
|
|
3507
3507
|
text: string;
|
|
3508
|
-
type: "
|
|
3508
|
+
type: "success" | "error" | "info" | "warning";
|
|
3509
3509
|
id?: number | undefined;
|
|
3510
3510
|
}[] | undefined;
|
|
3511
3511
|
required?: boolean | undefined;
|
|
@@ -3753,7 +3753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3753
3753
|
hint?: string | undefined;
|
|
3754
3754
|
messages?: {
|
|
3755
3755
|
text: string;
|
|
3756
|
-
type: "
|
|
3756
|
+
type: "success" | "error" | "info" | "warning";
|
|
3757
3757
|
id?: number | undefined;
|
|
3758
3758
|
}[] | undefined;
|
|
3759
3759
|
required?: boolean | undefined;
|
|
@@ -3771,7 +3771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3771
3771
|
hint?: string | undefined;
|
|
3772
3772
|
messages?: {
|
|
3773
3773
|
text: string;
|
|
3774
|
-
type: "
|
|
3774
|
+
type: "success" | "error" | "info" | "warning";
|
|
3775
3775
|
id?: number | undefined;
|
|
3776
3776
|
}[] | undefined;
|
|
3777
3777
|
required?: boolean | undefined;
|
|
@@ -3795,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3795
3795
|
hint?: string | undefined;
|
|
3796
3796
|
messages?: {
|
|
3797
3797
|
text: string;
|
|
3798
|
-
type: "
|
|
3798
|
+
type: "success" | "error" | "info" | "warning";
|
|
3799
3799
|
id?: number | undefined;
|
|
3800
3800
|
}[] | undefined;
|
|
3801
3801
|
required?: boolean | undefined;
|
|
@@ -3819,7 +3819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3819
3819
|
hint?: string | undefined;
|
|
3820
3820
|
messages?: {
|
|
3821
3821
|
text: string;
|
|
3822
|
-
type: "
|
|
3822
|
+
type: "success" | "error" | "info" | "warning";
|
|
3823
3823
|
id?: number | undefined;
|
|
3824
3824
|
}[] | undefined;
|
|
3825
3825
|
required?: boolean | undefined;
|
|
@@ -3848,7 +3848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3848
3848
|
hint?: string | undefined;
|
|
3849
3849
|
messages?: {
|
|
3850
3850
|
text: string;
|
|
3851
|
-
type: "
|
|
3851
|
+
type: "success" | "error" | "info" | "warning";
|
|
3852
3852
|
id?: number | undefined;
|
|
3853
3853
|
}[] | undefined;
|
|
3854
3854
|
required?: boolean | undefined;
|
|
@@ -3863,7 +3863,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3863
3863
|
hint?: string | undefined;
|
|
3864
3864
|
messages?: {
|
|
3865
3865
|
text: string;
|
|
3866
|
-
type: "
|
|
3866
|
+
type: "success" | "error" | "info" | "warning";
|
|
3867
3867
|
id?: number | undefined;
|
|
3868
3868
|
}[] | undefined;
|
|
3869
3869
|
required?: boolean | undefined;
|
|
@@ -3884,7 +3884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3884
3884
|
hint?: string | undefined;
|
|
3885
3885
|
messages?: {
|
|
3886
3886
|
text: string;
|
|
3887
|
-
type: "
|
|
3887
|
+
type: "success" | "error" | "info" | "warning";
|
|
3888
3888
|
id?: number | undefined;
|
|
3889
3889
|
}[] | undefined;
|
|
3890
3890
|
required?: boolean | undefined;
|
|
@@ -3909,7 +3909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3909
3909
|
hint?: string | undefined;
|
|
3910
3910
|
messages?: {
|
|
3911
3911
|
text: string;
|
|
3912
|
-
type: "
|
|
3912
|
+
type: "success" | "error" | "info" | "warning";
|
|
3913
3913
|
id?: number | undefined;
|
|
3914
3914
|
}[] | undefined;
|
|
3915
3915
|
required?: boolean | undefined;
|
|
@@ -3928,7 +3928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3928
3928
|
hint?: string | undefined;
|
|
3929
3929
|
messages?: {
|
|
3930
3930
|
text: string;
|
|
3931
|
-
type: "
|
|
3931
|
+
type: "success" | "error" | "info" | "warning";
|
|
3932
3932
|
id?: number | undefined;
|
|
3933
3933
|
}[] | undefined;
|
|
3934
3934
|
required?: boolean | undefined;
|
|
@@ -3948,7 +3948,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3948
3948
|
hint?: string | undefined;
|
|
3949
3949
|
messages?: {
|
|
3950
3950
|
text: string;
|
|
3951
|
-
type: "
|
|
3951
|
+
type: "success" | "error" | "info" | "warning";
|
|
3952
3952
|
id?: number | undefined;
|
|
3953
3953
|
}[] | undefined;
|
|
3954
3954
|
required?: boolean | undefined;
|
|
@@ -3967,7 +3967,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3967
3967
|
hint?: string | undefined;
|
|
3968
3968
|
messages?: {
|
|
3969
3969
|
text: string;
|
|
3970
|
-
type: "
|
|
3970
|
+
type: "success" | "error" | "info" | "warning";
|
|
3971
3971
|
id?: number | undefined;
|
|
3972
3972
|
}[] | undefined;
|
|
3973
3973
|
required?: boolean | undefined;
|
|
@@ -3989,7 +3989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3989
3989
|
hint?: string | undefined;
|
|
3990
3990
|
messages?: {
|
|
3991
3991
|
text: string;
|
|
3992
|
-
type: "
|
|
3992
|
+
type: "success" | "error" | "info" | "warning";
|
|
3993
3993
|
id?: number | undefined;
|
|
3994
3994
|
}[] | undefined;
|
|
3995
3995
|
required?: boolean | undefined;
|
|
@@ -4011,7 +4011,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4011
4011
|
hint?: string | undefined;
|
|
4012
4012
|
messages?: {
|
|
4013
4013
|
text: string;
|
|
4014
|
-
type: "
|
|
4014
|
+
type: "success" | "error" | "info" | "warning";
|
|
4015
4015
|
id?: number | undefined;
|
|
4016
4016
|
}[] | undefined;
|
|
4017
4017
|
required?: boolean | undefined;
|
|
@@ -4030,7 +4030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4030
4030
|
hint?: string | undefined;
|
|
4031
4031
|
messages?: {
|
|
4032
4032
|
text: string;
|
|
4033
|
-
type: "
|
|
4033
|
+
type: "success" | "error" | "info" | "warning";
|
|
4034
4034
|
id?: number | undefined;
|
|
4035
4035
|
}[] | undefined;
|
|
4036
4036
|
required?: boolean | undefined;
|
|
@@ -4055,7 +4055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4055
4055
|
hint?: string | undefined;
|
|
4056
4056
|
messages?: {
|
|
4057
4057
|
text: string;
|
|
4058
|
-
type: "
|
|
4058
|
+
type: "success" | "error" | "info" | "warning";
|
|
4059
4059
|
id?: number | undefined;
|
|
4060
4060
|
}[] | undefined;
|
|
4061
4061
|
required?: boolean | undefined;
|
|
@@ -4076,7 +4076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4076
4076
|
hint?: string | undefined;
|
|
4077
4077
|
messages?: {
|
|
4078
4078
|
text: string;
|
|
4079
|
-
type: "
|
|
4079
|
+
type: "success" | "error" | "info" | "warning";
|
|
4080
4080
|
id?: number | undefined;
|
|
4081
4081
|
}[] | undefined;
|
|
4082
4082
|
required?: boolean | undefined;
|
|
@@ -4097,7 +4097,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4097
4097
|
hint?: string | undefined;
|
|
4098
4098
|
messages?: {
|
|
4099
4099
|
text: string;
|
|
4100
|
-
type: "
|
|
4100
|
+
type: "success" | "error" | "info" | "warning";
|
|
4101
4101
|
id?: number | undefined;
|
|
4102
4102
|
}[] | undefined;
|
|
4103
4103
|
required?: boolean | undefined;
|
|
@@ -4351,7 +4351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4351
4351
|
hint?: string | undefined;
|
|
4352
4352
|
messages?: {
|
|
4353
4353
|
text: string;
|
|
4354
|
-
type: "
|
|
4354
|
+
type: "success" | "error" | "info" | "warning";
|
|
4355
4355
|
id?: number | undefined;
|
|
4356
4356
|
}[] | undefined;
|
|
4357
4357
|
required?: boolean | undefined;
|
|
@@ -4369,7 +4369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4369
4369
|
hint?: string | undefined;
|
|
4370
4370
|
messages?: {
|
|
4371
4371
|
text: string;
|
|
4372
|
-
type: "
|
|
4372
|
+
type: "success" | "error" | "info" | "warning";
|
|
4373
4373
|
id?: number | undefined;
|
|
4374
4374
|
}[] | undefined;
|
|
4375
4375
|
required?: boolean | undefined;
|
|
@@ -4393,7 +4393,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4393
4393
|
hint?: string | undefined;
|
|
4394
4394
|
messages?: {
|
|
4395
4395
|
text: string;
|
|
4396
|
-
type: "
|
|
4396
|
+
type: "success" | "error" | "info" | "warning";
|
|
4397
4397
|
id?: number | undefined;
|
|
4398
4398
|
}[] | undefined;
|
|
4399
4399
|
required?: boolean | undefined;
|
|
@@ -4417,7 +4417,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4417
4417
|
hint?: string | undefined;
|
|
4418
4418
|
messages?: {
|
|
4419
4419
|
text: string;
|
|
4420
|
-
type: "
|
|
4420
|
+
type: "success" | "error" | "info" | "warning";
|
|
4421
4421
|
id?: number | undefined;
|
|
4422
4422
|
}[] | undefined;
|
|
4423
4423
|
required?: boolean | undefined;
|
|
@@ -4442,7 +4442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4442
4442
|
hint?: string | undefined;
|
|
4443
4443
|
messages?: {
|
|
4444
4444
|
text: string;
|
|
4445
|
-
type: "
|
|
4445
|
+
type: "success" | "error" | "info" | "warning";
|
|
4446
4446
|
id?: number | undefined;
|
|
4447
4447
|
}[] | undefined;
|
|
4448
4448
|
required?: boolean | undefined;
|
|
@@ -4457,7 +4457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4457
4457
|
hint?: string | undefined;
|
|
4458
4458
|
messages?: {
|
|
4459
4459
|
text: string;
|
|
4460
|
-
type: "
|
|
4460
|
+
type: "success" | "error" | "info" | "warning";
|
|
4461
4461
|
id?: number | undefined;
|
|
4462
4462
|
}[] | undefined;
|
|
4463
4463
|
required?: boolean | undefined;
|
|
@@ -4478,7 +4478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4478
4478
|
hint?: string | undefined;
|
|
4479
4479
|
messages?: {
|
|
4480
4480
|
text: string;
|
|
4481
|
-
type: "
|
|
4481
|
+
type: "success" | "error" | "info" | "warning";
|
|
4482
4482
|
id?: number | undefined;
|
|
4483
4483
|
}[] | undefined;
|
|
4484
4484
|
required?: boolean | undefined;
|
|
@@ -4503,7 +4503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4503
4503
|
hint?: string | undefined;
|
|
4504
4504
|
messages?: {
|
|
4505
4505
|
text: string;
|
|
4506
|
-
type: "
|
|
4506
|
+
type: "success" | "error" | "info" | "warning";
|
|
4507
4507
|
id?: number | undefined;
|
|
4508
4508
|
}[] | undefined;
|
|
4509
4509
|
required?: boolean | undefined;
|
|
@@ -4522,7 +4522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4522
4522
|
hint?: string | undefined;
|
|
4523
4523
|
messages?: {
|
|
4524
4524
|
text: string;
|
|
4525
|
-
type: "
|
|
4525
|
+
type: "success" | "error" | "info" | "warning";
|
|
4526
4526
|
id?: number | undefined;
|
|
4527
4527
|
}[] | undefined;
|
|
4528
4528
|
required?: boolean | undefined;
|
|
@@ -4542,7 +4542,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4542
4542
|
hint?: string | undefined;
|
|
4543
4543
|
messages?: {
|
|
4544
4544
|
text: string;
|
|
4545
|
-
type: "
|
|
4545
|
+
type: "success" | "error" | "info" | "warning";
|
|
4546
4546
|
id?: number | undefined;
|
|
4547
4547
|
}[] | undefined;
|
|
4548
4548
|
required?: boolean | undefined;
|
|
@@ -4561,7 +4561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4561
4561
|
hint?: string | undefined;
|
|
4562
4562
|
messages?: {
|
|
4563
4563
|
text: string;
|
|
4564
|
-
type: "
|
|
4564
|
+
type: "success" | "error" | "info" | "warning";
|
|
4565
4565
|
id?: number | undefined;
|
|
4566
4566
|
}[] | undefined;
|
|
4567
4567
|
required?: boolean | undefined;
|
|
@@ -4583,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4583
4583
|
hint?: string | undefined;
|
|
4584
4584
|
messages?: {
|
|
4585
4585
|
text: string;
|
|
4586
|
-
type: "
|
|
4586
|
+
type: "success" | "error" | "info" | "warning";
|
|
4587
4587
|
id?: number | undefined;
|
|
4588
4588
|
}[] | undefined;
|
|
4589
4589
|
required?: boolean | undefined;
|
|
@@ -4605,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4605
4605
|
hint?: string | undefined;
|
|
4606
4606
|
messages?: {
|
|
4607
4607
|
text: string;
|
|
4608
|
-
type: "
|
|
4608
|
+
type: "success" | "error" | "info" | "warning";
|
|
4609
4609
|
id?: number | undefined;
|
|
4610
4610
|
}[] | undefined;
|
|
4611
4611
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4624,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4624
4624
|
hint?: string | undefined;
|
|
4625
4625
|
messages?: {
|
|
4626
4626
|
text: string;
|
|
4627
|
-
type: "
|
|
4627
|
+
type: "success" | "error" | "info" | "warning";
|
|
4628
4628
|
id?: number | undefined;
|
|
4629
4629
|
}[] | undefined;
|
|
4630
4630
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4649
4649
|
hint?: string | undefined;
|
|
4650
4650
|
messages?: {
|
|
4651
4651
|
text: string;
|
|
4652
|
-
type: "
|
|
4652
|
+
type: "success" | "error" | "info" | "warning";
|
|
4653
4653
|
id?: number | undefined;
|
|
4654
4654
|
}[] | undefined;
|
|
4655
4655
|
required?: boolean | undefined;
|
|
@@ -4670,7 +4670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4670
4670
|
hint?: string | undefined;
|
|
4671
4671
|
messages?: {
|
|
4672
4672
|
text: string;
|
|
4673
|
-
type: "
|
|
4673
|
+
type: "success" | "error" | "info" | "warning";
|
|
4674
4674
|
id?: number | undefined;
|
|
4675
4675
|
}[] | undefined;
|
|
4676
4676
|
required?: boolean | undefined;
|
|
@@ -4691,7 +4691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4691
4691
|
hint?: string | undefined;
|
|
4692
4692
|
messages?: {
|
|
4693
4693
|
text: string;
|
|
4694
|
-
type: "
|
|
4694
|
+
type: "success" | "error" | "info" | "warning";
|
|
4695
4695
|
id?: number | undefined;
|
|
4696
4696
|
}[] | undefined;
|
|
4697
4697
|
required?: boolean | undefined;
|
|
@@ -4922,7 +4922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4922
4922
|
hint?: string | undefined;
|
|
4923
4923
|
messages?: {
|
|
4924
4924
|
text: string;
|
|
4925
|
-
type: "
|
|
4925
|
+
type: "success" | "error" | "info" | "warning";
|
|
4926
4926
|
id?: number | undefined;
|
|
4927
4927
|
}[] | undefined;
|
|
4928
4928
|
required?: boolean | undefined;
|
|
@@ -4940,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4940
4940
|
hint?: string | undefined;
|
|
4941
4941
|
messages?: {
|
|
4942
4942
|
text: string;
|
|
4943
|
-
type: "
|
|
4943
|
+
type: "success" | "error" | "info" | "warning";
|
|
4944
4944
|
id?: number | undefined;
|
|
4945
4945
|
}[] | undefined;
|
|
4946
4946
|
required?: boolean | undefined;
|
|
@@ -4964,7 +4964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4964
4964
|
hint?: string | undefined;
|
|
4965
4965
|
messages?: {
|
|
4966
4966
|
text: string;
|
|
4967
|
-
type: "
|
|
4967
|
+
type: "success" | "error" | "info" | "warning";
|
|
4968
4968
|
id?: number | undefined;
|
|
4969
4969
|
}[] | undefined;
|
|
4970
4970
|
required?: boolean | undefined;
|
|
@@ -4988,7 +4988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4988
4988
|
hint?: string | undefined;
|
|
4989
4989
|
messages?: {
|
|
4990
4990
|
text: string;
|
|
4991
|
-
type: "
|
|
4991
|
+
type: "success" | "error" | "info" | "warning";
|
|
4992
4992
|
id?: number | undefined;
|
|
4993
4993
|
}[] | undefined;
|
|
4994
4994
|
required?: boolean | undefined;
|
|
@@ -5017,7 +5017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5017
5017
|
hint?: string | undefined;
|
|
5018
5018
|
messages?: {
|
|
5019
5019
|
text: string;
|
|
5020
|
-
type: "
|
|
5020
|
+
type: "success" | "error" | "info" | "warning";
|
|
5021
5021
|
id?: number | undefined;
|
|
5022
5022
|
}[] | undefined;
|
|
5023
5023
|
required?: boolean | undefined;
|
|
@@ -5032,7 +5032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5032
5032
|
hint?: string | undefined;
|
|
5033
5033
|
messages?: {
|
|
5034
5034
|
text: string;
|
|
5035
|
-
type: "
|
|
5035
|
+
type: "success" | "error" | "info" | "warning";
|
|
5036
5036
|
id?: number | undefined;
|
|
5037
5037
|
}[] | undefined;
|
|
5038
5038
|
required?: boolean | undefined;
|
|
@@ -5053,7 +5053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5053
5053
|
hint?: string | undefined;
|
|
5054
5054
|
messages?: {
|
|
5055
5055
|
text: string;
|
|
5056
|
-
type: "
|
|
5056
|
+
type: "success" | "error" | "info" | "warning";
|
|
5057
5057
|
id?: number | undefined;
|
|
5058
5058
|
}[] | undefined;
|
|
5059
5059
|
required?: boolean | undefined;
|
|
@@ -5078,7 +5078,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5078
5078
|
hint?: string | undefined;
|
|
5079
5079
|
messages?: {
|
|
5080
5080
|
text: string;
|
|
5081
|
-
type: "
|
|
5081
|
+
type: "success" | "error" | "info" | "warning";
|
|
5082
5082
|
id?: number | undefined;
|
|
5083
5083
|
}[] | undefined;
|
|
5084
5084
|
required?: boolean | undefined;
|
|
@@ -5097,7 +5097,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5097
5097
|
hint?: string | undefined;
|
|
5098
5098
|
messages?: {
|
|
5099
5099
|
text: string;
|
|
5100
|
-
type: "
|
|
5100
|
+
type: "success" | "error" | "info" | "warning";
|
|
5101
5101
|
id?: number | undefined;
|
|
5102
5102
|
}[] | undefined;
|
|
5103
5103
|
required?: boolean | undefined;
|
|
@@ -5117,7 +5117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5117
5117
|
hint?: string | undefined;
|
|
5118
5118
|
messages?: {
|
|
5119
5119
|
text: string;
|
|
5120
|
-
type: "
|
|
5120
|
+
type: "success" | "error" | "info" | "warning";
|
|
5121
5121
|
id?: number | undefined;
|
|
5122
5122
|
}[] | undefined;
|
|
5123
5123
|
required?: boolean | undefined;
|
|
@@ -5136,7 +5136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5136
5136
|
hint?: string | undefined;
|
|
5137
5137
|
messages?: {
|
|
5138
5138
|
text: string;
|
|
5139
|
-
type: "
|
|
5139
|
+
type: "success" | "error" | "info" | "warning";
|
|
5140
5140
|
id?: number | undefined;
|
|
5141
5141
|
}[] | undefined;
|
|
5142
5142
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5158,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5158
5158
|
hint?: string | undefined;
|
|
5159
5159
|
messages?: {
|
|
5160
5160
|
text: string;
|
|
5161
|
-
type: "
|
|
5161
|
+
type: "success" | "error" | "info" | "warning";
|
|
5162
5162
|
id?: number | undefined;
|
|
5163
5163
|
}[] | undefined;
|
|
5164
5164
|
required?: boolean | undefined;
|
|
@@ -5180,7 +5180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5180
5180
|
hint?: string | undefined;
|
|
5181
5181
|
messages?: {
|
|
5182
5182
|
text: string;
|
|
5183
|
-
type: "
|
|
5183
|
+
type: "success" | "error" | "info" | "warning";
|
|
5184
5184
|
id?: number | undefined;
|
|
5185
5185
|
}[] | undefined;
|
|
5186
5186
|
required?: boolean | undefined;
|
|
@@ -5199,7 +5199,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5199
5199
|
hint?: string | undefined;
|
|
5200
5200
|
messages?: {
|
|
5201
5201
|
text: string;
|
|
5202
|
-
type: "
|
|
5202
|
+
type: "success" | "error" | "info" | "warning";
|
|
5203
5203
|
id?: number | undefined;
|
|
5204
5204
|
}[] | undefined;
|
|
5205
5205
|
required?: boolean | undefined;
|
|
@@ -5224,7 +5224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5224
5224
|
hint?: string | undefined;
|
|
5225
5225
|
messages?: {
|
|
5226
5226
|
text: string;
|
|
5227
|
-
type: "
|
|
5227
|
+
type: "success" | "error" | "info" | "warning";
|
|
5228
5228
|
id?: number | undefined;
|
|
5229
5229
|
}[] | undefined;
|
|
5230
5230
|
required?: boolean | undefined;
|
|
@@ -5245,7 +5245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5245
5245
|
hint?: string | undefined;
|
|
5246
5246
|
messages?: {
|
|
5247
5247
|
text: string;
|
|
5248
|
-
type: "
|
|
5248
|
+
type: "success" | "error" | "info" | "warning";
|
|
5249
5249
|
id?: number | undefined;
|
|
5250
5250
|
}[] | undefined;
|
|
5251
5251
|
required?: boolean | undefined;
|
|
@@ -5266,7 +5266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5266
5266
|
hint?: string | undefined;
|
|
5267
5267
|
messages?: {
|
|
5268
5268
|
text: string;
|
|
5269
|
-
type: "
|
|
5269
|
+
type: "success" | "error" | "info" | "warning";
|
|
5270
5270
|
id?: number | undefined;
|
|
5271
5271
|
}[] | undefined;
|
|
5272
5272
|
required?: boolean | undefined;
|
|
@@ -5499,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5499
5499
|
hint?: string | undefined;
|
|
5500
5500
|
messages?: {
|
|
5501
5501
|
text: string;
|
|
5502
|
-
type: "
|
|
5502
|
+
type: "success" | "error" | "info" | "warning";
|
|
5503
5503
|
id?: number | undefined;
|
|
5504
5504
|
}[] | undefined;
|
|
5505
5505
|
required?: boolean | undefined;
|
|
@@ -5517,7 +5517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5517
5517
|
hint?: string | undefined;
|
|
5518
5518
|
messages?: {
|
|
5519
5519
|
text: string;
|
|
5520
|
-
type: "
|
|
5520
|
+
type: "success" | "error" | "info" | "warning";
|
|
5521
5521
|
id?: number | undefined;
|
|
5522
5522
|
}[] | undefined;
|
|
5523
5523
|
required?: boolean | undefined;
|
|
@@ -5541,7 +5541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5541
5541
|
hint?: string | undefined;
|
|
5542
5542
|
messages?: {
|
|
5543
5543
|
text: string;
|
|
5544
|
-
type: "
|
|
5544
|
+
type: "success" | "error" | "info" | "warning";
|
|
5545
5545
|
id?: number | undefined;
|
|
5546
5546
|
}[] | undefined;
|
|
5547
5547
|
required?: boolean | undefined;
|
|
@@ -5565,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5565
5565
|
hint?: string | undefined;
|
|
5566
5566
|
messages?: {
|
|
5567
5567
|
text: string;
|
|
5568
|
-
type: "
|
|
5568
|
+
type: "success" | "error" | "info" | "warning";
|
|
5569
5569
|
id?: number | undefined;
|
|
5570
5570
|
}[] | undefined;
|
|
5571
5571
|
required?: boolean | undefined;
|
|
@@ -5590,7 +5590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5590
5590
|
hint?: string | undefined;
|
|
5591
5591
|
messages?: {
|
|
5592
5592
|
text: string;
|
|
5593
|
-
type: "
|
|
5593
|
+
type: "success" | "error" | "info" | "warning";
|
|
5594
5594
|
id?: number | undefined;
|
|
5595
5595
|
}[] | undefined;
|
|
5596
5596
|
required?: boolean | undefined;
|
|
@@ -5605,7 +5605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5605
5605
|
hint?: string | undefined;
|
|
5606
5606
|
messages?: {
|
|
5607
5607
|
text: string;
|
|
5608
|
-
type: "
|
|
5608
|
+
type: "success" | "error" | "info" | "warning";
|
|
5609
5609
|
id?: number | undefined;
|
|
5610
5610
|
}[] | undefined;
|
|
5611
5611
|
required?: boolean | undefined;
|
|
@@ -5626,7 +5626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5626
5626
|
hint?: string | undefined;
|
|
5627
5627
|
messages?: {
|
|
5628
5628
|
text: string;
|
|
5629
|
-
type: "
|
|
5629
|
+
type: "success" | "error" | "info" | "warning";
|
|
5630
5630
|
id?: number | undefined;
|
|
5631
5631
|
}[] | undefined;
|
|
5632
5632
|
required?: boolean | undefined;
|
|
@@ -5651,7 +5651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5651
5651
|
hint?: string | undefined;
|
|
5652
5652
|
messages?: {
|
|
5653
5653
|
text: string;
|
|
5654
|
-
type: "
|
|
5654
|
+
type: "success" | "error" | "info" | "warning";
|
|
5655
5655
|
id?: number | undefined;
|
|
5656
5656
|
}[] | undefined;
|
|
5657
5657
|
required?: boolean | undefined;
|
|
@@ -5670,7 +5670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5670
5670
|
hint?: string | undefined;
|
|
5671
5671
|
messages?: {
|
|
5672
5672
|
text: string;
|
|
5673
|
-
type: "
|
|
5673
|
+
type: "success" | "error" | "info" | "warning";
|
|
5674
5674
|
id?: number | undefined;
|
|
5675
5675
|
}[] | undefined;
|
|
5676
5676
|
required?: boolean | undefined;
|
|
@@ -5690,7 +5690,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5690
5690
|
hint?: string | undefined;
|
|
5691
5691
|
messages?: {
|
|
5692
5692
|
text: string;
|
|
5693
|
-
type: "
|
|
5693
|
+
type: "success" | "error" | "info" | "warning";
|
|
5694
5694
|
id?: number | undefined;
|
|
5695
5695
|
}[] | undefined;
|
|
5696
5696
|
required?: boolean | undefined;
|
|
@@ -5709,7 +5709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5709
5709
|
hint?: string | undefined;
|
|
5710
5710
|
messages?: {
|
|
5711
5711
|
text: string;
|
|
5712
|
-
type: "
|
|
5712
|
+
type: "success" | "error" | "info" | "warning";
|
|
5713
5713
|
id?: number | undefined;
|
|
5714
5714
|
}[] | undefined;
|
|
5715
5715
|
required?: boolean | undefined;
|
|
@@ -5731,7 +5731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5731
5731
|
hint?: string | undefined;
|
|
5732
5732
|
messages?: {
|
|
5733
5733
|
text: string;
|
|
5734
|
-
type: "
|
|
5734
|
+
type: "success" | "error" | "info" | "warning";
|
|
5735
5735
|
id?: number | undefined;
|
|
5736
5736
|
}[] | undefined;
|
|
5737
5737
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5753
5753
|
hint?: string | undefined;
|
|
5754
5754
|
messages?: {
|
|
5755
5755
|
text: string;
|
|
5756
|
-
type: "
|
|
5756
|
+
type: "success" | "error" | "info" | "warning";
|
|
5757
5757
|
id?: number | undefined;
|
|
5758
5758
|
}[] | undefined;
|
|
5759
5759
|
required?: boolean | undefined;
|
|
@@ -5772,7 +5772,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5772
5772
|
hint?: string | undefined;
|
|
5773
5773
|
messages?: {
|
|
5774
5774
|
text: string;
|
|
5775
|
-
type: "
|
|
5775
|
+
type: "success" | "error" | "info" | "warning";
|
|
5776
5776
|
id?: number | undefined;
|
|
5777
5777
|
}[] | undefined;
|
|
5778
5778
|
required?: boolean | undefined;
|
|
@@ -5797,7 +5797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5797
5797
|
hint?: string | undefined;
|
|
5798
5798
|
messages?: {
|
|
5799
5799
|
text: string;
|
|
5800
|
-
type: "
|
|
5800
|
+
type: "success" | "error" | "info" | "warning";
|
|
5801
5801
|
id?: number | undefined;
|
|
5802
5802
|
}[] | undefined;
|
|
5803
5803
|
required?: boolean | undefined;
|
|
@@ -5818,7 +5818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5818
5818
|
hint?: string | undefined;
|
|
5819
5819
|
messages?: {
|
|
5820
5820
|
text: string;
|
|
5821
|
-
type: "
|
|
5821
|
+
type: "success" | "error" | "info" | "warning";
|
|
5822
5822
|
id?: number | undefined;
|
|
5823
5823
|
}[] | undefined;
|
|
5824
5824
|
required?: boolean | undefined;
|
|
@@ -5839,7 +5839,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5839
5839
|
hint?: string | undefined;
|
|
5840
5840
|
messages?: {
|
|
5841
5841
|
text: string;
|
|
5842
|
-
type: "
|
|
5842
|
+
type: "success" | "error" | "info" | "warning";
|
|
5843
5843
|
id?: number | undefined;
|
|
5844
5844
|
}[] | undefined;
|
|
5845
5845
|
required?: boolean | undefined;
|
|
@@ -6070,7 +6070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6070
6070
|
hint?: string | undefined;
|
|
6071
6071
|
messages?: {
|
|
6072
6072
|
text: string;
|
|
6073
|
-
type: "
|
|
6073
|
+
type: "success" | "error" | "info" | "warning";
|
|
6074
6074
|
id?: number | undefined;
|
|
6075
6075
|
}[] | undefined;
|
|
6076
6076
|
required?: boolean | undefined;
|
|
@@ -6088,7 +6088,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6088
6088
|
hint?: string | undefined;
|
|
6089
6089
|
messages?: {
|
|
6090
6090
|
text: string;
|
|
6091
|
-
type: "
|
|
6091
|
+
type: "success" | "error" | "info" | "warning";
|
|
6092
6092
|
id?: number | undefined;
|
|
6093
6093
|
}[] | undefined;
|
|
6094
6094
|
required?: boolean | undefined;
|
|
@@ -6112,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6112
6112
|
hint?: string | undefined;
|
|
6113
6113
|
messages?: {
|
|
6114
6114
|
text: string;
|
|
6115
|
-
type: "
|
|
6115
|
+
type: "success" | "error" | "info" | "warning";
|
|
6116
6116
|
id?: number | undefined;
|
|
6117
6117
|
}[] | undefined;
|
|
6118
6118
|
required?: boolean | undefined;
|
|
@@ -6136,7 +6136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6136
6136
|
hint?: string | undefined;
|
|
6137
6137
|
messages?: {
|
|
6138
6138
|
text: string;
|
|
6139
|
-
type: "
|
|
6139
|
+
type: "success" | "error" | "info" | "warning";
|
|
6140
6140
|
id?: number | undefined;
|
|
6141
6141
|
}[] | undefined;
|
|
6142
6142
|
required?: boolean | undefined;
|
|
@@ -6165,7 +6165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6165
6165
|
hint?: string | undefined;
|
|
6166
6166
|
messages?: {
|
|
6167
6167
|
text: string;
|
|
6168
|
-
type: "
|
|
6168
|
+
type: "success" | "error" | "info" | "warning";
|
|
6169
6169
|
id?: number | undefined;
|
|
6170
6170
|
}[] | undefined;
|
|
6171
6171
|
required?: boolean | undefined;
|
|
@@ -6180,7 +6180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6180
6180
|
hint?: string | undefined;
|
|
6181
6181
|
messages?: {
|
|
6182
6182
|
text: string;
|
|
6183
|
-
type: "
|
|
6183
|
+
type: "success" | "error" | "info" | "warning";
|
|
6184
6184
|
id?: number | undefined;
|
|
6185
6185
|
}[] | undefined;
|
|
6186
6186
|
required?: boolean | undefined;
|
|
@@ -6201,7 +6201,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6201
6201
|
hint?: string | undefined;
|
|
6202
6202
|
messages?: {
|
|
6203
6203
|
text: string;
|
|
6204
|
-
type: "
|
|
6204
|
+
type: "success" | "error" | "info" | "warning";
|
|
6205
6205
|
id?: number | undefined;
|
|
6206
6206
|
}[] | undefined;
|
|
6207
6207
|
required?: boolean | undefined;
|
|
@@ -6226,7 +6226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6226
6226
|
hint?: string | undefined;
|
|
6227
6227
|
messages?: {
|
|
6228
6228
|
text: string;
|
|
6229
|
-
type: "
|
|
6229
|
+
type: "success" | "error" | "info" | "warning";
|
|
6230
6230
|
id?: number | undefined;
|
|
6231
6231
|
}[] | undefined;
|
|
6232
6232
|
required?: boolean | undefined;
|
|
@@ -6245,7 +6245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6245
6245
|
hint?: string | undefined;
|
|
6246
6246
|
messages?: {
|
|
6247
6247
|
text: string;
|
|
6248
|
-
type: "
|
|
6248
|
+
type: "success" | "error" | "info" | "warning";
|
|
6249
6249
|
id?: number | undefined;
|
|
6250
6250
|
}[] | undefined;
|
|
6251
6251
|
required?: boolean | undefined;
|
|
@@ -6265,7 +6265,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6265
6265
|
hint?: string | undefined;
|
|
6266
6266
|
messages?: {
|
|
6267
6267
|
text: string;
|
|
6268
|
-
type: "
|
|
6268
|
+
type: "success" | "error" | "info" | "warning";
|
|
6269
6269
|
id?: number | undefined;
|
|
6270
6270
|
}[] | undefined;
|
|
6271
6271
|
required?: boolean | undefined;
|
|
@@ -6284,7 +6284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6284
6284
|
hint?: string | undefined;
|
|
6285
6285
|
messages?: {
|
|
6286
6286
|
text: string;
|
|
6287
|
-
type: "
|
|
6287
|
+
type: "success" | "error" | "info" | "warning";
|
|
6288
6288
|
id?: number | undefined;
|
|
6289
6289
|
}[] | undefined;
|
|
6290
6290
|
required?: boolean | undefined;
|
|
@@ -6306,7 +6306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6306
6306
|
hint?: string | undefined;
|
|
6307
6307
|
messages?: {
|
|
6308
6308
|
text: string;
|
|
6309
|
-
type: "
|
|
6309
|
+
type: "success" | "error" | "info" | "warning";
|
|
6310
6310
|
id?: number | undefined;
|
|
6311
6311
|
}[] | undefined;
|
|
6312
6312
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6328,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6328
6328
|
hint?: string | undefined;
|
|
6329
6329
|
messages?: {
|
|
6330
6330
|
text: string;
|
|
6331
|
-
type: "
|
|
6331
|
+
type: "success" | "error" | "info" | "warning";
|
|
6332
6332
|
id?: number | undefined;
|
|
6333
6333
|
}[] | undefined;
|
|
6334
6334
|
required?: boolean | undefined;
|
|
@@ -6347,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6347
6347
|
hint?: string | undefined;
|
|
6348
6348
|
messages?: {
|
|
6349
6349
|
text: string;
|
|
6350
|
-
type: "
|
|
6350
|
+
type: "success" | "error" | "info" | "warning";
|
|
6351
6351
|
id?: number | undefined;
|
|
6352
6352
|
}[] | undefined;
|
|
6353
6353
|
required?: boolean | undefined;
|
|
@@ -6372,7 +6372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6372
6372
|
hint?: string | undefined;
|
|
6373
6373
|
messages?: {
|
|
6374
6374
|
text: string;
|
|
6375
|
-
type: "
|
|
6375
|
+
type: "success" | "error" | "info" | "warning";
|
|
6376
6376
|
id?: number | undefined;
|
|
6377
6377
|
}[] | undefined;
|
|
6378
6378
|
required?: boolean | undefined;
|
|
@@ -6393,7 +6393,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6393
6393
|
hint?: string | undefined;
|
|
6394
6394
|
messages?: {
|
|
6395
6395
|
text: string;
|
|
6396
|
-
type: "
|
|
6396
|
+
type: "success" | "error" | "info" | "warning";
|
|
6397
6397
|
id?: number | undefined;
|
|
6398
6398
|
}[] | undefined;
|
|
6399
6399
|
required?: boolean | undefined;
|
|
@@ -6414,7 +6414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6414
6414
|
hint?: string | undefined;
|
|
6415
6415
|
messages?: {
|
|
6416
6416
|
text: string;
|
|
6417
|
-
type: "
|
|
6417
|
+
type: "success" | "error" | "info" | "warning";
|
|
6418
6418
|
id?: number | undefined;
|
|
6419
6419
|
}[] | undefined;
|
|
6420
6420
|
required?: boolean | undefined;
|
|
@@ -6644,7 +6644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6644
6644
|
};
|
|
6645
6645
|
};
|
|
6646
6646
|
output: {
|
|
6647
|
-
prompt: "
|
|
6647
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6648
6648
|
language: string;
|
|
6649
6649
|
}[];
|
|
6650
6650
|
outputFormat: "json";
|
|
@@ -6682,7 +6682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6682
6682
|
$get: {
|
|
6683
6683
|
input: {
|
|
6684
6684
|
param: {
|
|
6685
|
-
prompt: "
|
|
6685
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6686
6686
|
language: string;
|
|
6687
6687
|
};
|
|
6688
6688
|
} & {
|
|
@@ -6704,7 +6704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6704
6704
|
$put: {
|
|
6705
6705
|
input: {
|
|
6706
6706
|
param: {
|
|
6707
|
-
prompt: "
|
|
6707
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6708
6708
|
language: string;
|
|
6709
6709
|
};
|
|
6710
6710
|
} & {
|
|
@@ -6728,7 +6728,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6728
6728
|
$delete: {
|
|
6729
6729
|
input: {
|
|
6730
6730
|
param: {
|
|
6731
|
-
prompt: "
|
|
6731
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6732
6732
|
language: string;
|
|
6733
6733
|
};
|
|
6734
6734
|
} & {
|
|
@@ -7590,7 +7590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7590
7590
|
};
|
|
7591
7591
|
} | {
|
|
7592
7592
|
mode: "inline";
|
|
7593
|
-
status: "
|
|
7593
|
+
status: "success" | "error";
|
|
7594
7594
|
connection_id: string;
|
|
7595
7595
|
connection_name: string;
|
|
7596
7596
|
strategy: string;
|
|
@@ -8477,7 +8477,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8477
8477
|
created_at: string;
|
|
8478
8478
|
updated_at: string;
|
|
8479
8479
|
name: string;
|
|
8480
|
-
provider: "auth0" | "
|
|
8480
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8481
8481
|
connection: string;
|
|
8482
8482
|
enabled: boolean;
|
|
8483
8483
|
credentials: {
|
|
@@ -8509,7 +8509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8509
8509
|
created_at: string;
|
|
8510
8510
|
updated_at: string;
|
|
8511
8511
|
name: string;
|
|
8512
|
-
provider: "auth0" | "
|
|
8512
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8513
8513
|
connection: string;
|
|
8514
8514
|
enabled: boolean;
|
|
8515
8515
|
credentials: {
|
|
@@ -8535,7 +8535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8535
8535
|
} & {
|
|
8536
8536
|
json: {
|
|
8537
8537
|
name: string;
|
|
8538
|
-
provider: "auth0" | "
|
|
8538
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8539
8539
|
connection: string;
|
|
8540
8540
|
credentials: {
|
|
8541
8541
|
domain: string;
|
|
@@ -8552,7 +8552,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8552
8552
|
created_at: string;
|
|
8553
8553
|
updated_at: string;
|
|
8554
8554
|
name: string;
|
|
8555
|
-
provider: "auth0" | "
|
|
8555
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8556
8556
|
connection: string;
|
|
8557
8557
|
enabled: boolean;
|
|
8558
8558
|
credentials: {
|
|
@@ -8583,7 +8583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8583
8583
|
json: {
|
|
8584
8584
|
id?: string | undefined;
|
|
8585
8585
|
name?: string | undefined;
|
|
8586
|
-
provider?: "auth0" | "
|
|
8586
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
8587
8587
|
connection?: string | undefined;
|
|
8588
8588
|
enabled?: boolean | undefined;
|
|
8589
8589
|
credentials?: {
|
|
@@ -8599,7 +8599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8599
8599
|
created_at: string;
|
|
8600
8600
|
updated_at: string;
|
|
8601
8601
|
name: string;
|
|
8602
|
-
provider: "auth0" | "
|
|
8602
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8603
8603
|
connection: string;
|
|
8604
8604
|
enabled: boolean;
|
|
8605
8605
|
credentials: {
|
|
@@ -8817,7 +8817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8817
8817
|
};
|
|
8818
8818
|
};
|
|
8819
8819
|
output: {
|
|
8820
|
-
type: "
|
|
8820
|
+
type: "s" | "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
8821
8821
|
date: string;
|
|
8822
8822
|
isMobile: boolean;
|
|
8823
8823
|
log_id: string;
|
|
@@ -8856,7 +8856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8856
8856
|
limit: number;
|
|
8857
8857
|
length: number;
|
|
8858
8858
|
logs: {
|
|
8859
|
-
type: "
|
|
8859
|
+
type: "s" | "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
8860
8860
|
date: string;
|
|
8861
8861
|
isMobile: boolean;
|
|
8862
8862
|
log_id: string;
|
|
@@ -8910,7 +8910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8910
8910
|
};
|
|
8911
8911
|
};
|
|
8912
8912
|
output: {
|
|
8913
|
-
type: "
|
|
8913
|
+
type: "s" | "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
8914
8914
|
date: string;
|
|
8915
8915
|
isMobile: boolean;
|
|
8916
8916
|
log_id: string;
|
|
@@ -9224,7 +9224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9224
9224
|
addons?: {
|
|
9225
9225
|
[x: string]: any;
|
|
9226
9226
|
} | undefined;
|
|
9227
|
-
token_endpoint_auth_method?: "
|
|
9227
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9228
9228
|
client_metadata?: {
|
|
9229
9229
|
[x: string]: string;
|
|
9230
9230
|
} | undefined;
|
|
@@ -9320,7 +9320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9320
9320
|
addons?: {
|
|
9321
9321
|
[x: string]: any;
|
|
9322
9322
|
} | undefined;
|
|
9323
|
-
token_endpoint_auth_method?: "
|
|
9323
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9324
9324
|
client_metadata?: {
|
|
9325
9325
|
[x: string]: string;
|
|
9326
9326
|
} | undefined;
|
|
@@ -9431,7 +9431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9431
9431
|
addons?: {
|
|
9432
9432
|
[x: string]: any;
|
|
9433
9433
|
} | undefined;
|
|
9434
|
-
token_endpoint_auth_method?: "
|
|
9434
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9435
9435
|
client_metadata?: {
|
|
9436
9436
|
[x: string]: string;
|
|
9437
9437
|
} | undefined;
|
|
@@ -9541,7 +9541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9541
9541
|
custom_login_page_preview?: string | undefined;
|
|
9542
9542
|
form_template?: string | undefined;
|
|
9543
9543
|
addons?: Record<string, any> | undefined;
|
|
9544
|
-
token_endpoint_auth_method?: "
|
|
9544
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9545
9545
|
client_metadata?: Record<string, string> | undefined;
|
|
9546
9546
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9547
9547
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9621,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9621
9621
|
addons?: {
|
|
9622
9622
|
[x: string]: any;
|
|
9623
9623
|
} | undefined;
|
|
9624
|
-
token_endpoint_auth_method?: "
|
|
9624
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9625
9625
|
client_metadata?: {
|
|
9626
9626
|
[x: string]: string;
|
|
9627
9627
|
} | undefined;
|
|
@@ -9710,7 +9710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9710
9710
|
custom_login_page_preview?: string | undefined;
|
|
9711
9711
|
form_template?: string | undefined;
|
|
9712
9712
|
addons?: Record<string, any> | undefined;
|
|
9713
|
-
token_endpoint_auth_method?: "
|
|
9713
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9714
9714
|
client_metadata?: Record<string, string> | undefined;
|
|
9715
9715
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9716
9716
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9790,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9790
9790
|
addons?: {
|
|
9791
9791
|
[x: string]: any;
|
|
9792
9792
|
} | undefined;
|
|
9793
|
-
token_endpoint_auth_method?: "
|
|
9793
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9794
9794
|
client_metadata?: {
|
|
9795
9795
|
[x: string]: string;
|
|
9796
9796
|
} | undefined;
|
|
@@ -11054,7 +11054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11054
11054
|
};
|
|
11055
11055
|
};
|
|
11056
11056
|
output: {
|
|
11057
|
-
type: "
|
|
11057
|
+
type: "s" | "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11058
11058
|
date: string;
|
|
11059
11059
|
isMobile: boolean;
|
|
11060
11060
|
log_id: string;
|
|
@@ -11093,7 +11093,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11093
11093
|
limit: number;
|
|
11094
11094
|
length: number;
|
|
11095
11095
|
logs: {
|
|
11096
|
-
type: "
|
|
11096
|
+
type: "s" | "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11097
11097
|
date: string;
|
|
11098
11098
|
isMobile: boolean;
|
|
11099
11099
|
log_id: string;
|
|
@@ -11408,7 +11408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11408
11408
|
};
|
|
11409
11409
|
} & {
|
|
11410
11410
|
json: {
|
|
11411
|
-
template: "
|
|
11411
|
+
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";
|
|
11412
11412
|
body: string;
|
|
11413
11413
|
from: string;
|
|
11414
11414
|
subject: string;
|
|
@@ -11429,7 +11429,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11429
11429
|
};
|
|
11430
11430
|
} & {
|
|
11431
11431
|
json: {
|
|
11432
|
-
template: "
|
|
11432
|
+
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";
|
|
11433
11433
|
body: string;
|
|
11434
11434
|
from: string;
|
|
11435
11435
|
subject: string;
|
|
@@ -11441,7 +11441,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11441
11441
|
};
|
|
11442
11442
|
};
|
|
11443
11443
|
output: {
|
|
11444
|
-
template: "
|
|
11444
|
+
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";
|
|
11445
11445
|
body: string;
|
|
11446
11446
|
from: string;
|
|
11447
11447
|
subject: string;
|
|
@@ -11460,7 +11460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11460
11460
|
$get: {
|
|
11461
11461
|
input: {
|
|
11462
11462
|
param: {
|
|
11463
|
-
templateName: "
|
|
11463
|
+
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";
|
|
11464
11464
|
};
|
|
11465
11465
|
} & {
|
|
11466
11466
|
header: {
|
|
@@ -11473,7 +11473,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11473
11473
|
} | {
|
|
11474
11474
|
input: {
|
|
11475
11475
|
param: {
|
|
11476
|
-
templateName: "
|
|
11476
|
+
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";
|
|
11477
11477
|
};
|
|
11478
11478
|
} & {
|
|
11479
11479
|
header: {
|
|
@@ -11481,7 +11481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11481
11481
|
};
|
|
11482
11482
|
};
|
|
11483
11483
|
output: {
|
|
11484
|
-
template: "
|
|
11484
|
+
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";
|
|
11485
11485
|
body: string;
|
|
11486
11486
|
from: string;
|
|
11487
11487
|
subject: string;
|
|
@@ -11500,7 +11500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11500
11500
|
$put: {
|
|
11501
11501
|
input: {
|
|
11502
11502
|
param: {
|
|
11503
|
-
templateName: "
|
|
11503
|
+
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";
|
|
11504
11504
|
};
|
|
11505
11505
|
} & {
|
|
11506
11506
|
header: {
|
|
@@ -11508,7 +11508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11508
11508
|
};
|
|
11509
11509
|
} & {
|
|
11510
11510
|
json: {
|
|
11511
|
-
template: "
|
|
11511
|
+
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";
|
|
11512
11512
|
body: string;
|
|
11513
11513
|
from: string;
|
|
11514
11514
|
subject: string;
|
|
@@ -11520,7 +11520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11520
11520
|
};
|
|
11521
11521
|
};
|
|
11522
11522
|
output: {
|
|
11523
|
-
template: "
|
|
11523
|
+
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";
|
|
11524
11524
|
body: string;
|
|
11525
11525
|
from: string;
|
|
11526
11526
|
subject: string;
|
|
@@ -11539,7 +11539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11539
11539
|
$patch: {
|
|
11540
11540
|
input: {
|
|
11541
11541
|
param: {
|
|
11542
|
-
templateName: "
|
|
11542
|
+
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";
|
|
11543
11543
|
};
|
|
11544
11544
|
} & {
|
|
11545
11545
|
header: {
|
|
@@ -11547,7 +11547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11547
11547
|
};
|
|
11548
11548
|
} & {
|
|
11549
11549
|
json: {
|
|
11550
|
-
template?: "
|
|
11550
|
+
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;
|
|
11551
11551
|
body?: string | undefined;
|
|
11552
11552
|
from?: string | undefined;
|
|
11553
11553
|
subject?: string | undefined;
|
|
@@ -11564,7 +11564,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11564
11564
|
} | {
|
|
11565
11565
|
input: {
|
|
11566
11566
|
param: {
|
|
11567
|
-
templateName: "
|
|
11567
|
+
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";
|
|
11568
11568
|
};
|
|
11569
11569
|
} & {
|
|
11570
11570
|
header: {
|
|
@@ -11572,7 +11572,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11572
11572
|
};
|
|
11573
11573
|
} & {
|
|
11574
11574
|
json: {
|
|
11575
|
-
template?: "
|
|
11575
|
+
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;
|
|
11576
11576
|
body?: string | undefined;
|
|
11577
11577
|
from?: string | undefined;
|
|
11578
11578
|
subject?: string | undefined;
|
|
@@ -11584,7 +11584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11584
11584
|
};
|
|
11585
11585
|
};
|
|
11586
11586
|
output: {
|
|
11587
|
-
template: "
|
|
11587
|
+
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";
|
|
11588
11588
|
body: string;
|
|
11589
11589
|
from: string;
|
|
11590
11590
|
subject: string;
|
|
@@ -12723,7 +12723,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12723
12723
|
logs: {
|
|
12724
12724
|
action_name: string;
|
|
12725
12725
|
lines: {
|
|
12726
|
-
level: "
|
|
12726
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12727
12727
|
message: string;
|
|
12728
12728
|
}[];
|
|
12729
12729
|
}[];
|
|
@@ -13390,7 +13390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13390
13390
|
args: import("hono/utils/types").JSONValue[];
|
|
13391
13391
|
}[];
|
|
13392
13392
|
logs: {
|
|
13393
|
-
level: "
|
|
13393
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13394
13394
|
message: string;
|
|
13395
13395
|
}[];
|
|
13396
13396
|
error?: string | undefined;
|
|
@@ -13688,7 +13688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13688
13688
|
scope?: string | undefined;
|
|
13689
13689
|
grant_types?: string[] | undefined;
|
|
13690
13690
|
response_types?: string[] | undefined;
|
|
13691
|
-
token_endpoint_auth_method?: "
|
|
13691
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13692
13692
|
jwks_uri?: string | undefined;
|
|
13693
13693
|
jwks?: Record<string, unknown> | undefined;
|
|
13694
13694
|
software_id?: string | undefined;
|
|
@@ -13777,7 +13777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13777
13777
|
scope?: string | undefined;
|
|
13778
13778
|
grant_types?: string[] | undefined;
|
|
13779
13779
|
response_types?: string[] | undefined;
|
|
13780
|
-
token_endpoint_auth_method?: "
|
|
13780
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13781
13781
|
jwks_uri?: string | undefined;
|
|
13782
13782
|
jwks?: Record<string, unknown> | undefined;
|
|
13783
13783
|
software_id?: string | undefined;
|
|
@@ -14123,19 +14123,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14123
14123
|
email: string;
|
|
14124
14124
|
send: "code" | "link";
|
|
14125
14125
|
authParams: {
|
|
14126
|
-
state?: string | undefined;
|
|
14127
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14128
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14129
|
-
scope?: string | undefined;
|
|
14130
14126
|
username?: string | undefined;
|
|
14127
|
+
scope?: string | undefined;
|
|
14131
14128
|
audience?: string | undefined;
|
|
14132
|
-
|
|
14129
|
+
organization?: string | undefined;
|
|
14133
14130
|
code_challenge?: string | undefined;
|
|
14134
14131
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14135
14132
|
redirect_uri?: string | undefined;
|
|
14136
14133
|
nonce?: string | undefined;
|
|
14134
|
+
state?: string | undefined;
|
|
14137
14135
|
act_as?: string | undefined;
|
|
14138
|
-
|
|
14136
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14137
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14138
|
+
prompt?: string | undefined;
|
|
14139
14139
|
ui_locales?: string | undefined;
|
|
14140
14140
|
max_age?: number | undefined;
|
|
14141
14141
|
acr_values?: string | undefined;
|
|
@@ -14159,19 +14159,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14159
14159
|
phone_number: string;
|
|
14160
14160
|
send: "code" | "link";
|
|
14161
14161
|
authParams: {
|
|
14162
|
-
state?: string | undefined;
|
|
14163
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14164
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14165
|
-
scope?: string | undefined;
|
|
14166
14162
|
username?: string | undefined;
|
|
14163
|
+
scope?: string | undefined;
|
|
14167
14164
|
audience?: string | undefined;
|
|
14168
|
-
|
|
14165
|
+
organization?: string | undefined;
|
|
14169
14166
|
code_challenge?: string | undefined;
|
|
14170
14167
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14171
14168
|
redirect_uri?: string | undefined;
|
|
14172
14169
|
nonce?: string | undefined;
|
|
14170
|
+
state?: string | undefined;
|
|
14173
14171
|
act_as?: string | undefined;
|
|
14174
|
-
|
|
14172
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14173
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14174
|
+
prompt?: string | undefined;
|
|
14175
14175
|
ui_locales?: string | undefined;
|
|
14176
14176
|
max_age?: number | undefined;
|
|
14177
14177
|
acr_values?: string | undefined;
|
|
@@ -14303,14 +14303,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14303
14303
|
input: {
|
|
14304
14304
|
form: {
|
|
14305
14305
|
token: string;
|
|
14306
|
-
token_type_hint?: "
|
|
14306
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14307
14307
|
client_id?: string | undefined;
|
|
14308
14308
|
client_secret?: string | undefined;
|
|
14309
14309
|
};
|
|
14310
14310
|
} & {
|
|
14311
14311
|
json: {
|
|
14312
14312
|
token: string;
|
|
14313
|
-
token_type_hint?: "
|
|
14313
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14314
14314
|
client_id?: string | undefined;
|
|
14315
14315
|
client_secret?: string | undefined;
|
|
14316
14316
|
};
|
|
@@ -14322,14 +14322,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14322
14322
|
input: {
|
|
14323
14323
|
form: {
|
|
14324
14324
|
token: string;
|
|
14325
|
-
token_type_hint?: "
|
|
14325
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14326
14326
|
client_id?: string | undefined;
|
|
14327
14327
|
client_secret?: string | undefined;
|
|
14328
14328
|
};
|
|
14329
14329
|
} & {
|
|
14330
14330
|
json: {
|
|
14331
14331
|
token: string;
|
|
14332
|
-
token_type_hint?: "
|
|
14332
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14333
14333
|
client_id?: string | undefined;
|
|
14334
14334
|
client_secret?: string | undefined;
|
|
14335
14335
|
};
|
|
@@ -14344,14 +14344,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14344
14344
|
input: {
|
|
14345
14345
|
form: {
|
|
14346
14346
|
token: string;
|
|
14347
|
-
token_type_hint?: "
|
|
14347
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14348
14348
|
client_id?: string | undefined;
|
|
14349
14349
|
client_secret?: string | undefined;
|
|
14350
14350
|
};
|
|
14351
14351
|
} & {
|
|
14352
14352
|
json: {
|
|
14353
14353
|
token: string;
|
|
14354
|
-
token_type_hint?: "
|
|
14354
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14355
14355
|
client_id?: string | undefined;
|
|
14356
14356
|
client_secret?: string | undefined;
|
|
14357
14357
|
};
|
|
@@ -15968,7 +15968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15968
15968
|
$get: {
|
|
15969
15969
|
input: {
|
|
15970
15970
|
param: {
|
|
15971
|
-
screen: "signup" | "
|
|
15971
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15972
15972
|
};
|
|
15973
15973
|
} & {
|
|
15974
15974
|
query: {
|
|
@@ -15984,7 +15984,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15984
15984
|
} | {
|
|
15985
15985
|
input: {
|
|
15986
15986
|
param: {
|
|
15987
|
-
screen: "signup" | "
|
|
15987
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15988
15988
|
};
|
|
15989
15989
|
} & {
|
|
15990
15990
|
query: {
|
|
@@ -16000,7 +16000,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16000
16000
|
} | {
|
|
16001
16001
|
input: {
|
|
16002
16002
|
param: {
|
|
16003
|
-
screen: "signup" | "
|
|
16003
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16004
16004
|
};
|
|
16005
16005
|
} & {
|
|
16006
16006
|
query: {
|
|
@@ -16020,7 +16020,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16020
16020
|
$post: {
|
|
16021
16021
|
input: {
|
|
16022
16022
|
param: {
|
|
16023
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16023
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16024
16024
|
};
|
|
16025
16025
|
} & {
|
|
16026
16026
|
query: {
|
|
@@ -16038,7 +16038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16038
16038
|
} | {
|
|
16039
16039
|
input: {
|
|
16040
16040
|
param: {
|
|
16041
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16041
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16042
16042
|
};
|
|
16043
16043
|
} & {
|
|
16044
16044
|
query: {
|
|
@@ -16056,7 +16056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16056
16056
|
} | {
|
|
16057
16057
|
input: {
|
|
16058
16058
|
param: {
|
|
16059
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16059
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16060
16060
|
};
|
|
16061
16061
|
} & {
|
|
16062
16062
|
query: {
|