authhero 8.17.1 → 8.17.3
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 +23 -23
- package/dist/authhero.d.ts +272 -272
- package/dist/authhero.mjs +69 -62
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +272 -272
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +50 -50
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +5 -5
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +91 -91
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
147
147
|
};
|
|
148
148
|
} & {
|
|
149
149
|
json: {
|
|
150
|
-
type: "push" | "email" | "passkey" | "
|
|
150
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
151
151
|
phone_number?: string | undefined;
|
|
152
152
|
totp_secret?: string | undefined;
|
|
153
153
|
credential_id?: string | undefined;
|
|
@@ -287,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
287
287
|
};
|
|
288
288
|
};
|
|
289
289
|
output: {
|
|
290
|
-
name: "
|
|
290
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
291
291
|
enabled: boolean;
|
|
292
292
|
trial_expired?: boolean | undefined;
|
|
293
293
|
}[];
|
|
@@ -442,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
442
442
|
$get: {
|
|
443
443
|
input: {
|
|
444
444
|
param: {
|
|
445
|
-
factor_name: "
|
|
445
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
446
446
|
};
|
|
447
447
|
} & {
|
|
448
448
|
header: {
|
|
@@ -450,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
450
450
|
};
|
|
451
451
|
};
|
|
452
452
|
output: {
|
|
453
|
-
name: "
|
|
453
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
454
454
|
enabled: boolean;
|
|
455
455
|
trial_expired?: boolean | undefined;
|
|
456
456
|
};
|
|
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
463
463
|
$put: {
|
|
464
464
|
input: {
|
|
465
465
|
param: {
|
|
466
|
-
factor_name: "
|
|
466
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
467
467
|
};
|
|
468
468
|
} & {
|
|
469
469
|
header: {
|
|
@@ -475,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
475
475
|
};
|
|
476
476
|
};
|
|
477
477
|
output: {
|
|
478
|
-
name: "
|
|
478
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
479
479
|
enabled: boolean;
|
|
480
480
|
trial_expired?: boolean | undefined;
|
|
481
481
|
};
|
|
@@ -1408,8 +1408,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1408
1408
|
};
|
|
1409
1409
|
} & {
|
|
1410
1410
|
json: {
|
|
1411
|
-
show_as_button?: boolean | undefined;
|
|
1412
1411
|
assign_membership_on_login?: boolean | undefined;
|
|
1412
|
+
show_as_button?: boolean | undefined;
|
|
1413
1413
|
is_signup_enabled?: boolean | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
};
|
|
@@ -2075,7 +2075,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2075
2075
|
type: "REDIRECT";
|
|
2076
2076
|
action: "REDIRECT_USER";
|
|
2077
2077
|
params: {
|
|
2078
|
-
target: "custom" | "
|
|
2078
|
+
target: "custom" | "change-email" | "account";
|
|
2079
2079
|
custom_url?: string | undefined;
|
|
2080
2080
|
};
|
|
2081
2081
|
alias?: string | undefined;
|
|
@@ -2128,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2128
2128
|
type: "REDIRECT";
|
|
2129
2129
|
action: "REDIRECT_USER";
|
|
2130
2130
|
params: {
|
|
2131
|
-
target: "custom" | "
|
|
2131
|
+
target: "custom" | "change-email" | "account";
|
|
2132
2132
|
custom_url?: string | undefined;
|
|
2133
2133
|
};
|
|
2134
2134
|
alias?: string | undefined;
|
|
@@ -2196,7 +2196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2196
2196
|
type: "REDIRECT";
|
|
2197
2197
|
action: "REDIRECT_USER";
|
|
2198
2198
|
params: {
|
|
2199
|
-
target: "custom" | "
|
|
2199
|
+
target: "custom" | "change-email" | "account";
|
|
2200
2200
|
custom_url?: string | undefined;
|
|
2201
2201
|
};
|
|
2202
2202
|
alias?: string | undefined;
|
|
@@ -2277,7 +2277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2277
2277
|
type: "REDIRECT";
|
|
2278
2278
|
action: "REDIRECT_USER";
|
|
2279
2279
|
params: {
|
|
2280
|
-
target: "custom" | "
|
|
2280
|
+
target: "custom" | "change-email" | "account";
|
|
2281
2281
|
custom_url?: string | undefined;
|
|
2282
2282
|
};
|
|
2283
2283
|
alias?: string | undefined;
|
|
@@ -2325,7 +2325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2325
2325
|
type: "REDIRECT";
|
|
2326
2326
|
action: "REDIRECT_USER";
|
|
2327
2327
|
params: {
|
|
2328
|
-
target: "custom" | "
|
|
2328
|
+
target: "custom" | "change-email" | "account";
|
|
2329
2329
|
custom_url?: string | undefined;
|
|
2330
2330
|
};
|
|
2331
2331
|
alias?: string | undefined;
|
|
@@ -2385,7 +2385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2385
2385
|
type: "REDIRECT";
|
|
2386
2386
|
action: "REDIRECT_USER";
|
|
2387
2387
|
params: {
|
|
2388
|
-
target: "custom" | "
|
|
2388
|
+
target: "custom" | "change-email" | "account";
|
|
2389
2389
|
custom_url?: string | undefined;
|
|
2390
2390
|
};
|
|
2391
2391
|
alias?: string | undefined;
|
|
@@ -2433,7 +2433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2433
2433
|
type: "REDIRECT";
|
|
2434
2434
|
action: "REDIRECT_USER";
|
|
2435
2435
|
params: {
|
|
2436
|
-
target: "custom" | "
|
|
2436
|
+
target: "custom" | "change-email" | "account";
|
|
2437
2437
|
custom_url?: string | undefined;
|
|
2438
2438
|
};
|
|
2439
2439
|
alias?: string | undefined;
|
|
@@ -2651,7 +2651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2651
2651
|
hint?: string | undefined;
|
|
2652
2652
|
messages?: {
|
|
2653
2653
|
text: string;
|
|
2654
|
-
type: "
|
|
2654
|
+
type: "error" | "success" | "info" | "warning";
|
|
2655
2655
|
id?: number | undefined;
|
|
2656
2656
|
}[] | undefined;
|
|
2657
2657
|
required?: boolean | undefined;
|
|
@@ -2669,7 +2669,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2669
2669
|
hint?: string | undefined;
|
|
2670
2670
|
messages?: {
|
|
2671
2671
|
text: string;
|
|
2672
|
-
type: "
|
|
2672
|
+
type: "error" | "success" | "info" | "warning";
|
|
2673
2673
|
id?: number | undefined;
|
|
2674
2674
|
}[] | undefined;
|
|
2675
2675
|
required?: boolean | undefined;
|
|
@@ -2693,7 +2693,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2693
2693
|
hint?: string | undefined;
|
|
2694
2694
|
messages?: {
|
|
2695
2695
|
text: string;
|
|
2696
|
-
type: "
|
|
2696
|
+
type: "error" | "success" | "info" | "warning";
|
|
2697
2697
|
id?: number | undefined;
|
|
2698
2698
|
}[] | undefined;
|
|
2699
2699
|
required?: boolean | undefined;
|
|
@@ -2703,7 +2703,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2703
2703
|
value: string;
|
|
2704
2704
|
label: string;
|
|
2705
2705
|
}[] | undefined;
|
|
2706
|
-
display?: "
|
|
2706
|
+
display?: "radio" | "checkbox" | undefined;
|
|
2707
2707
|
multiple?: boolean | undefined;
|
|
2708
2708
|
default_value?: string | string[] | undefined;
|
|
2709
2709
|
} | undefined;
|
|
@@ -2717,7 +2717,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2717
2717
|
hint?: string | undefined;
|
|
2718
2718
|
messages?: {
|
|
2719
2719
|
text: string;
|
|
2720
|
-
type: "
|
|
2720
|
+
type: "error" | "success" | "info" | "warning";
|
|
2721
2721
|
id?: number | undefined;
|
|
2722
2722
|
}[] | undefined;
|
|
2723
2723
|
required?: boolean | undefined;
|
|
@@ -2741,7 +2741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2741
2741
|
hint?: string | undefined;
|
|
2742
2742
|
messages?: {
|
|
2743
2743
|
text: string;
|
|
2744
|
-
type: "
|
|
2744
|
+
type: "error" | "success" | "info" | "warning";
|
|
2745
2745
|
id?: number | undefined;
|
|
2746
2746
|
}[] | undefined;
|
|
2747
2747
|
required?: boolean | undefined;
|
|
@@ -2770,7 +2770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2770
2770
|
hint?: string | undefined;
|
|
2771
2771
|
messages?: {
|
|
2772
2772
|
text: string;
|
|
2773
|
-
type: "
|
|
2773
|
+
type: "error" | "success" | "info" | "warning";
|
|
2774
2774
|
id?: number | undefined;
|
|
2775
2775
|
}[] | undefined;
|
|
2776
2776
|
required?: boolean | undefined;
|
|
@@ -2785,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2785
2785
|
hint?: string | undefined;
|
|
2786
2786
|
messages?: {
|
|
2787
2787
|
text: string;
|
|
2788
|
-
type: "
|
|
2788
|
+
type: "error" | "success" | "info" | "warning";
|
|
2789
2789
|
id?: number | undefined;
|
|
2790
2790
|
}[] | undefined;
|
|
2791
2791
|
required?: boolean | undefined;
|
|
@@ -2806,7 +2806,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2806
2806
|
hint?: string | undefined;
|
|
2807
2807
|
messages?: {
|
|
2808
2808
|
text: string;
|
|
2809
|
-
type: "
|
|
2809
|
+
type: "error" | "success" | "info" | "warning";
|
|
2810
2810
|
id?: number | undefined;
|
|
2811
2811
|
}[] | undefined;
|
|
2812
2812
|
required?: boolean | undefined;
|
|
@@ -2831,7 +2831,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2831
2831
|
hint?: string | undefined;
|
|
2832
2832
|
messages?: {
|
|
2833
2833
|
text: string;
|
|
2834
|
-
type: "
|
|
2834
|
+
type: "error" | "success" | "info" | "warning";
|
|
2835
2835
|
id?: number | undefined;
|
|
2836
2836
|
}[] | undefined;
|
|
2837
2837
|
required?: boolean | undefined;
|
|
@@ -2850,7 +2850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2850
2850
|
hint?: string | undefined;
|
|
2851
2851
|
messages?: {
|
|
2852
2852
|
text: string;
|
|
2853
|
-
type: "
|
|
2853
|
+
type: "error" | "success" | "info" | "warning";
|
|
2854
2854
|
id?: number | undefined;
|
|
2855
2855
|
}[] | undefined;
|
|
2856
2856
|
required?: boolean | undefined;
|
|
@@ -2870,7 +2870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2870
2870
|
hint?: string | undefined;
|
|
2871
2871
|
messages?: {
|
|
2872
2872
|
text: string;
|
|
2873
|
-
type: "
|
|
2873
|
+
type: "error" | "success" | "info" | "warning";
|
|
2874
2874
|
id?: number | undefined;
|
|
2875
2875
|
}[] | undefined;
|
|
2876
2876
|
required?: boolean | undefined;
|
|
@@ -2889,7 +2889,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2889
2889
|
hint?: string | undefined;
|
|
2890
2890
|
messages?: {
|
|
2891
2891
|
text: string;
|
|
2892
|
-
type: "
|
|
2892
|
+
type: "error" | "success" | "info" | "warning";
|
|
2893
2893
|
id?: number | undefined;
|
|
2894
2894
|
}[] | undefined;
|
|
2895
2895
|
required?: boolean | undefined;
|
|
@@ -2911,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2911
2911
|
hint?: string | undefined;
|
|
2912
2912
|
messages?: {
|
|
2913
2913
|
text: string;
|
|
2914
|
-
type: "
|
|
2914
|
+
type: "error" | "success" | "info" | "warning";
|
|
2915
2915
|
id?: number | undefined;
|
|
2916
2916
|
}[] | undefined;
|
|
2917
2917
|
required?: boolean | undefined;
|
|
@@ -2933,7 +2933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2933
2933
|
hint?: string | undefined;
|
|
2934
2934
|
messages?: {
|
|
2935
2935
|
text: string;
|
|
2936
|
-
type: "
|
|
2936
|
+
type: "error" | "success" | "info" | "warning";
|
|
2937
2937
|
id?: number | undefined;
|
|
2938
2938
|
}[] | undefined;
|
|
2939
2939
|
required?: boolean | undefined;
|
|
@@ -2952,7 +2952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2952
2952
|
hint?: string | undefined;
|
|
2953
2953
|
messages?: {
|
|
2954
2954
|
text: string;
|
|
2955
|
-
type: "
|
|
2955
|
+
type: "error" | "success" | "info" | "warning";
|
|
2956
2956
|
id?: number | undefined;
|
|
2957
2957
|
}[] | undefined;
|
|
2958
2958
|
required?: boolean | undefined;
|
|
@@ -2977,7 +2977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2977
2977
|
hint?: string | undefined;
|
|
2978
2978
|
messages?: {
|
|
2979
2979
|
text: string;
|
|
2980
|
-
type: "
|
|
2980
|
+
type: "error" | "success" | "info" | "warning";
|
|
2981
2981
|
id?: number | undefined;
|
|
2982
2982
|
}[] | undefined;
|
|
2983
2983
|
required?: boolean | undefined;
|
|
@@ -2998,7 +2998,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2998
2998
|
hint?: string | undefined;
|
|
2999
2999
|
messages?: {
|
|
3000
3000
|
text: string;
|
|
3001
|
-
type: "
|
|
3001
|
+
type: "error" | "success" | "info" | "warning";
|
|
3002
3002
|
id?: number | undefined;
|
|
3003
3003
|
}[] | undefined;
|
|
3004
3004
|
required?: boolean | undefined;
|
|
@@ -3019,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3019
3019
|
hint?: string | undefined;
|
|
3020
3020
|
messages?: {
|
|
3021
3021
|
text: string;
|
|
3022
|
-
type: "
|
|
3022
|
+
type: "error" | "success" | "info" | "warning";
|
|
3023
3023
|
id?: number | undefined;
|
|
3024
3024
|
}[] | undefined;
|
|
3025
3025
|
required?: boolean | undefined;
|
|
@@ -3252,7 +3252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3252
3252
|
hint?: string | undefined;
|
|
3253
3253
|
messages?: {
|
|
3254
3254
|
text: string;
|
|
3255
|
-
type: "
|
|
3255
|
+
type: "error" | "success" | "info" | "warning";
|
|
3256
3256
|
id?: number | undefined;
|
|
3257
3257
|
}[] | undefined;
|
|
3258
3258
|
required?: boolean | undefined;
|
|
@@ -3270,7 +3270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3270
3270
|
hint?: string | undefined;
|
|
3271
3271
|
messages?: {
|
|
3272
3272
|
text: string;
|
|
3273
|
-
type: "
|
|
3273
|
+
type: "error" | "success" | "info" | "warning";
|
|
3274
3274
|
id?: number | undefined;
|
|
3275
3275
|
}[] | undefined;
|
|
3276
3276
|
required?: boolean | undefined;
|
|
@@ -3294,7 +3294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3294
3294
|
hint?: string | undefined;
|
|
3295
3295
|
messages?: {
|
|
3296
3296
|
text: string;
|
|
3297
|
-
type: "
|
|
3297
|
+
type: "error" | "success" | "info" | "warning";
|
|
3298
3298
|
id?: number | undefined;
|
|
3299
3299
|
}[] | undefined;
|
|
3300
3300
|
required?: boolean | undefined;
|
|
@@ -3304,7 +3304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3304
3304
|
value: string;
|
|
3305
3305
|
label: string;
|
|
3306
3306
|
}[] | undefined;
|
|
3307
|
-
display?: "
|
|
3307
|
+
display?: "radio" | "checkbox" | undefined;
|
|
3308
3308
|
multiple?: boolean | undefined;
|
|
3309
3309
|
default_value?: string | string[] | undefined;
|
|
3310
3310
|
} | undefined;
|
|
@@ -3318,7 +3318,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3318
3318
|
hint?: string | undefined;
|
|
3319
3319
|
messages?: {
|
|
3320
3320
|
text: string;
|
|
3321
|
-
type: "
|
|
3321
|
+
type: "error" | "success" | "info" | "warning";
|
|
3322
3322
|
id?: number | undefined;
|
|
3323
3323
|
}[] | undefined;
|
|
3324
3324
|
required?: boolean | undefined;
|
|
@@ -3342,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3342
3342
|
hint?: string | undefined;
|
|
3343
3343
|
messages?: {
|
|
3344
3344
|
text: string;
|
|
3345
|
-
type: "
|
|
3345
|
+
type: "error" | "success" | "info" | "warning";
|
|
3346
3346
|
id?: number | undefined;
|
|
3347
3347
|
}[] | undefined;
|
|
3348
3348
|
required?: boolean | undefined;
|
|
@@ -3371,7 +3371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3371
3371
|
hint?: string | undefined;
|
|
3372
3372
|
messages?: {
|
|
3373
3373
|
text: string;
|
|
3374
|
-
type: "
|
|
3374
|
+
type: "error" | "success" | "info" | "warning";
|
|
3375
3375
|
id?: number | undefined;
|
|
3376
3376
|
}[] | undefined;
|
|
3377
3377
|
required?: boolean | undefined;
|
|
@@ -3386,7 +3386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3386
3386
|
hint?: string | undefined;
|
|
3387
3387
|
messages?: {
|
|
3388
3388
|
text: string;
|
|
3389
|
-
type: "
|
|
3389
|
+
type: "error" | "success" | "info" | "warning";
|
|
3390
3390
|
id?: number | undefined;
|
|
3391
3391
|
}[] | undefined;
|
|
3392
3392
|
required?: boolean | undefined;
|
|
@@ -3407,7 +3407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3407
3407
|
hint?: string | undefined;
|
|
3408
3408
|
messages?: {
|
|
3409
3409
|
text: string;
|
|
3410
|
-
type: "
|
|
3410
|
+
type: "error" | "success" | "info" | "warning";
|
|
3411
3411
|
id?: number | undefined;
|
|
3412
3412
|
}[] | undefined;
|
|
3413
3413
|
required?: boolean | undefined;
|
|
@@ -3432,7 +3432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3432
3432
|
hint?: string | undefined;
|
|
3433
3433
|
messages?: {
|
|
3434
3434
|
text: string;
|
|
3435
|
-
type: "
|
|
3435
|
+
type: "error" | "success" | "info" | "warning";
|
|
3436
3436
|
id?: number | undefined;
|
|
3437
3437
|
}[] | undefined;
|
|
3438
3438
|
required?: boolean | undefined;
|
|
@@ -3451,7 +3451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3451
3451
|
hint?: string | undefined;
|
|
3452
3452
|
messages?: {
|
|
3453
3453
|
text: string;
|
|
3454
|
-
type: "
|
|
3454
|
+
type: "error" | "success" | "info" | "warning";
|
|
3455
3455
|
id?: number | undefined;
|
|
3456
3456
|
}[] | undefined;
|
|
3457
3457
|
required?: boolean | undefined;
|
|
@@ -3471,7 +3471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3471
3471
|
hint?: string | undefined;
|
|
3472
3472
|
messages?: {
|
|
3473
3473
|
text: string;
|
|
3474
|
-
type: "
|
|
3474
|
+
type: "error" | "success" | "info" | "warning";
|
|
3475
3475
|
id?: number | undefined;
|
|
3476
3476
|
}[] | undefined;
|
|
3477
3477
|
required?: boolean | undefined;
|
|
@@ -3490,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3490
3490
|
hint?: string | undefined;
|
|
3491
3491
|
messages?: {
|
|
3492
3492
|
text: string;
|
|
3493
|
-
type: "
|
|
3493
|
+
type: "error" | "success" | "info" | "warning";
|
|
3494
3494
|
id?: number | undefined;
|
|
3495
3495
|
}[] | undefined;
|
|
3496
3496
|
required?: boolean | undefined;
|
|
@@ -3512,7 +3512,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3512
3512
|
hint?: string | undefined;
|
|
3513
3513
|
messages?: {
|
|
3514
3514
|
text: string;
|
|
3515
|
-
type: "
|
|
3515
|
+
type: "error" | "success" | "info" | "warning";
|
|
3516
3516
|
id?: number | undefined;
|
|
3517
3517
|
}[] | undefined;
|
|
3518
3518
|
required?: boolean | undefined;
|
|
@@ -3534,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3534
3534
|
hint?: string | undefined;
|
|
3535
3535
|
messages?: {
|
|
3536
3536
|
text: string;
|
|
3537
|
-
type: "
|
|
3537
|
+
type: "error" | "success" | "info" | "warning";
|
|
3538
3538
|
id?: number | undefined;
|
|
3539
3539
|
}[] | undefined;
|
|
3540
3540
|
required?: boolean | undefined;
|
|
@@ -3553,7 +3553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3553
3553
|
hint?: string | undefined;
|
|
3554
3554
|
messages?: {
|
|
3555
3555
|
text: string;
|
|
3556
|
-
type: "
|
|
3556
|
+
type: "error" | "success" | "info" | "warning";
|
|
3557
3557
|
id?: number | undefined;
|
|
3558
3558
|
}[] | undefined;
|
|
3559
3559
|
required?: boolean | undefined;
|
|
@@ -3578,7 +3578,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3578
3578
|
hint?: string | undefined;
|
|
3579
3579
|
messages?: {
|
|
3580
3580
|
text: string;
|
|
3581
|
-
type: "
|
|
3581
|
+
type: "error" | "success" | "info" | "warning";
|
|
3582
3582
|
id?: number | undefined;
|
|
3583
3583
|
}[] | undefined;
|
|
3584
3584
|
required?: boolean | undefined;
|
|
@@ -3599,7 +3599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3599
3599
|
hint?: string | undefined;
|
|
3600
3600
|
messages?: {
|
|
3601
3601
|
text: string;
|
|
3602
|
-
type: "
|
|
3602
|
+
type: "error" | "success" | "info" | "warning";
|
|
3603
3603
|
id?: number | undefined;
|
|
3604
3604
|
}[] | undefined;
|
|
3605
3605
|
required?: boolean | undefined;
|
|
@@ -3620,7 +3620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3620
3620
|
hint?: string | undefined;
|
|
3621
3621
|
messages?: {
|
|
3622
3622
|
text: string;
|
|
3623
|
-
type: "
|
|
3623
|
+
type: "error" | "success" | "info" | "warning";
|
|
3624
3624
|
id?: number | undefined;
|
|
3625
3625
|
}[] | undefined;
|
|
3626
3626
|
required?: boolean | undefined;
|
|
@@ -3868,7 +3868,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3868
3868
|
hint?: string | undefined;
|
|
3869
3869
|
messages?: {
|
|
3870
3870
|
text: string;
|
|
3871
|
-
type: "
|
|
3871
|
+
type: "error" | "success" | "info" | "warning";
|
|
3872
3872
|
id?: number | undefined;
|
|
3873
3873
|
}[] | undefined;
|
|
3874
3874
|
required?: boolean | undefined;
|
|
@@ -3886,7 +3886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3886
3886
|
hint?: string | undefined;
|
|
3887
3887
|
messages?: {
|
|
3888
3888
|
text: string;
|
|
3889
|
-
type: "
|
|
3889
|
+
type: "error" | "success" | "info" | "warning";
|
|
3890
3890
|
id?: number | undefined;
|
|
3891
3891
|
}[] | undefined;
|
|
3892
3892
|
required?: boolean | undefined;
|
|
@@ -3910,7 +3910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3910
3910
|
hint?: string | undefined;
|
|
3911
3911
|
messages?: {
|
|
3912
3912
|
text: string;
|
|
3913
|
-
type: "
|
|
3913
|
+
type: "error" | "success" | "info" | "warning";
|
|
3914
3914
|
id?: number | undefined;
|
|
3915
3915
|
}[] | undefined;
|
|
3916
3916
|
required?: boolean | undefined;
|
|
@@ -3920,7 +3920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3920
3920
|
value: string;
|
|
3921
3921
|
label: string;
|
|
3922
3922
|
}[] | undefined;
|
|
3923
|
-
display?: "
|
|
3923
|
+
display?: "radio" | "checkbox" | undefined;
|
|
3924
3924
|
multiple?: boolean | undefined;
|
|
3925
3925
|
default_value?: string | string[] | undefined;
|
|
3926
3926
|
} | undefined;
|
|
@@ -3934,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3934
3934
|
hint?: string | undefined;
|
|
3935
3935
|
messages?: {
|
|
3936
3936
|
text: string;
|
|
3937
|
-
type: "
|
|
3937
|
+
type: "error" | "success" | "info" | "warning";
|
|
3938
3938
|
id?: number | undefined;
|
|
3939
3939
|
}[] | undefined;
|
|
3940
3940
|
required?: boolean | undefined;
|
|
@@ -3958,7 +3958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3958
3958
|
hint?: string | undefined;
|
|
3959
3959
|
messages?: {
|
|
3960
3960
|
text: string;
|
|
3961
|
-
type: "
|
|
3961
|
+
type: "error" | "success" | "info" | "warning";
|
|
3962
3962
|
id?: number | undefined;
|
|
3963
3963
|
}[] | undefined;
|
|
3964
3964
|
required?: boolean | undefined;
|
|
@@ -3987,7 +3987,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3987
3987
|
hint?: string | undefined;
|
|
3988
3988
|
messages?: {
|
|
3989
3989
|
text: string;
|
|
3990
|
-
type: "
|
|
3990
|
+
type: "error" | "success" | "info" | "warning";
|
|
3991
3991
|
id?: number | undefined;
|
|
3992
3992
|
}[] | undefined;
|
|
3993
3993
|
required?: boolean | undefined;
|
|
@@ -4002,7 +4002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4002
4002
|
hint?: string | undefined;
|
|
4003
4003
|
messages?: {
|
|
4004
4004
|
text: string;
|
|
4005
|
-
type: "
|
|
4005
|
+
type: "error" | "success" | "info" | "warning";
|
|
4006
4006
|
id?: number | undefined;
|
|
4007
4007
|
}[] | undefined;
|
|
4008
4008
|
required?: boolean | undefined;
|
|
@@ -4023,7 +4023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4023
4023
|
hint?: string | undefined;
|
|
4024
4024
|
messages?: {
|
|
4025
4025
|
text: string;
|
|
4026
|
-
type: "
|
|
4026
|
+
type: "error" | "success" | "info" | "warning";
|
|
4027
4027
|
id?: number | undefined;
|
|
4028
4028
|
}[] | undefined;
|
|
4029
4029
|
required?: boolean | undefined;
|
|
@@ -4048,7 +4048,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4048
4048
|
hint?: string | undefined;
|
|
4049
4049
|
messages?: {
|
|
4050
4050
|
text: string;
|
|
4051
|
-
type: "
|
|
4051
|
+
type: "error" | "success" | "info" | "warning";
|
|
4052
4052
|
id?: number | undefined;
|
|
4053
4053
|
}[] | undefined;
|
|
4054
4054
|
required?: boolean | undefined;
|
|
@@ -4067,7 +4067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4067
4067
|
hint?: string | undefined;
|
|
4068
4068
|
messages?: {
|
|
4069
4069
|
text: string;
|
|
4070
|
-
type: "
|
|
4070
|
+
type: "error" | "success" | "info" | "warning";
|
|
4071
4071
|
id?: number | undefined;
|
|
4072
4072
|
}[] | undefined;
|
|
4073
4073
|
required?: boolean | undefined;
|
|
@@ -4087,7 +4087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4087
4087
|
hint?: string | undefined;
|
|
4088
4088
|
messages?: {
|
|
4089
4089
|
text: string;
|
|
4090
|
-
type: "
|
|
4090
|
+
type: "error" | "success" | "info" | "warning";
|
|
4091
4091
|
id?: number | undefined;
|
|
4092
4092
|
}[] | undefined;
|
|
4093
4093
|
required?: boolean | undefined;
|
|
@@ -4106,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4106
4106
|
hint?: string | undefined;
|
|
4107
4107
|
messages?: {
|
|
4108
4108
|
text: string;
|
|
4109
|
-
type: "
|
|
4109
|
+
type: "error" | "success" | "info" | "warning";
|
|
4110
4110
|
id?: number | undefined;
|
|
4111
4111
|
}[] | undefined;
|
|
4112
4112
|
required?: boolean | undefined;
|
|
@@ -4128,7 +4128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4128
4128
|
hint?: string | undefined;
|
|
4129
4129
|
messages?: {
|
|
4130
4130
|
text: string;
|
|
4131
|
-
type: "
|
|
4131
|
+
type: "error" | "success" | "info" | "warning";
|
|
4132
4132
|
id?: number | undefined;
|
|
4133
4133
|
}[] | undefined;
|
|
4134
4134
|
required?: boolean | undefined;
|
|
@@ -4150,7 +4150,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4150
4150
|
hint?: string | undefined;
|
|
4151
4151
|
messages?: {
|
|
4152
4152
|
text: string;
|
|
4153
|
-
type: "
|
|
4153
|
+
type: "error" | "success" | "info" | "warning";
|
|
4154
4154
|
id?: number | undefined;
|
|
4155
4155
|
}[] | undefined;
|
|
4156
4156
|
required?: boolean | undefined;
|
|
@@ -4169,7 +4169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4169
4169
|
hint?: string | undefined;
|
|
4170
4170
|
messages?: {
|
|
4171
4171
|
text: string;
|
|
4172
|
-
type: "
|
|
4172
|
+
type: "error" | "success" | "info" | "warning";
|
|
4173
4173
|
id?: number | undefined;
|
|
4174
4174
|
}[] | undefined;
|
|
4175
4175
|
required?: boolean | undefined;
|
|
@@ -4194,7 +4194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4194
4194
|
hint?: string | undefined;
|
|
4195
4195
|
messages?: {
|
|
4196
4196
|
text: string;
|
|
4197
|
-
type: "
|
|
4197
|
+
type: "error" | "success" | "info" | "warning";
|
|
4198
4198
|
id?: number | undefined;
|
|
4199
4199
|
}[] | undefined;
|
|
4200
4200
|
required?: boolean | undefined;
|
|
@@ -4215,7 +4215,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4215
4215
|
hint?: string | undefined;
|
|
4216
4216
|
messages?: {
|
|
4217
4217
|
text: string;
|
|
4218
|
-
type: "
|
|
4218
|
+
type: "error" | "success" | "info" | "warning";
|
|
4219
4219
|
id?: number | undefined;
|
|
4220
4220
|
}[] | undefined;
|
|
4221
4221
|
required?: boolean | undefined;
|
|
@@ -4236,7 +4236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4236
4236
|
hint?: string | undefined;
|
|
4237
4237
|
messages?: {
|
|
4238
4238
|
text: string;
|
|
4239
|
-
type: "
|
|
4239
|
+
type: "error" | "success" | "info" | "warning";
|
|
4240
4240
|
id?: number | undefined;
|
|
4241
4241
|
}[] | undefined;
|
|
4242
4242
|
required?: boolean | undefined;
|
|
@@ -4490,7 +4490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4490
4490
|
hint?: string | undefined;
|
|
4491
4491
|
messages?: {
|
|
4492
4492
|
text: string;
|
|
4493
|
-
type: "
|
|
4493
|
+
type: "error" | "success" | "info" | "warning";
|
|
4494
4494
|
id?: number | undefined;
|
|
4495
4495
|
}[] | undefined;
|
|
4496
4496
|
required?: boolean | undefined;
|
|
@@ -4508,7 +4508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4508
4508
|
hint?: string | undefined;
|
|
4509
4509
|
messages?: {
|
|
4510
4510
|
text: string;
|
|
4511
|
-
type: "
|
|
4511
|
+
type: "error" | "success" | "info" | "warning";
|
|
4512
4512
|
id?: number | undefined;
|
|
4513
4513
|
}[] | undefined;
|
|
4514
4514
|
required?: boolean | undefined;
|
|
@@ -4532,7 +4532,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4532
4532
|
hint?: string | undefined;
|
|
4533
4533
|
messages?: {
|
|
4534
4534
|
text: string;
|
|
4535
|
-
type: "
|
|
4535
|
+
type: "error" | "success" | "info" | "warning";
|
|
4536
4536
|
id?: number | undefined;
|
|
4537
4537
|
}[] | undefined;
|
|
4538
4538
|
required?: boolean | undefined;
|
|
@@ -4542,7 +4542,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4542
4542
|
value: string;
|
|
4543
4543
|
label: string;
|
|
4544
4544
|
}[] | undefined;
|
|
4545
|
-
display?: "
|
|
4545
|
+
display?: "radio" | "checkbox" | undefined;
|
|
4546
4546
|
multiple?: boolean | undefined;
|
|
4547
4547
|
default_value?: string | string[] | undefined;
|
|
4548
4548
|
} | undefined;
|
|
@@ -4556,7 +4556,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4556
4556
|
hint?: string | undefined;
|
|
4557
4557
|
messages?: {
|
|
4558
4558
|
text: string;
|
|
4559
|
-
type: "
|
|
4559
|
+
type: "error" | "success" | "info" | "warning";
|
|
4560
4560
|
id?: number | undefined;
|
|
4561
4561
|
}[] | undefined;
|
|
4562
4562
|
required?: boolean | undefined;
|
|
@@ -4580,7 +4580,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4580
4580
|
hint?: string | undefined;
|
|
4581
4581
|
messages?: {
|
|
4582
4582
|
text: string;
|
|
4583
|
-
type: "
|
|
4583
|
+
type: "error" | "success" | "info" | "warning";
|
|
4584
4584
|
id?: number | undefined;
|
|
4585
4585
|
}[] | undefined;
|
|
4586
4586
|
required?: boolean | undefined;
|
|
@@ -4605,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4605
4605
|
hint?: string | undefined;
|
|
4606
4606
|
messages?: {
|
|
4607
4607
|
text: string;
|
|
4608
|
-
type: "
|
|
4608
|
+
type: "error" | "success" | "info" | "warning";
|
|
4609
4609
|
id?: number | undefined;
|
|
4610
4610
|
}[] | undefined;
|
|
4611
4611
|
required?: boolean | undefined;
|
|
@@ -4620,7 +4620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4620
4620
|
hint?: string | undefined;
|
|
4621
4621
|
messages?: {
|
|
4622
4622
|
text: string;
|
|
4623
|
-
type: "
|
|
4623
|
+
type: "error" | "success" | "info" | "warning";
|
|
4624
4624
|
id?: number | undefined;
|
|
4625
4625
|
}[] | undefined;
|
|
4626
4626
|
required?: boolean | undefined;
|
|
@@ -4641,7 +4641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4641
4641
|
hint?: string | undefined;
|
|
4642
4642
|
messages?: {
|
|
4643
4643
|
text: string;
|
|
4644
|
-
type: "
|
|
4644
|
+
type: "error" | "success" | "info" | "warning";
|
|
4645
4645
|
id?: number | undefined;
|
|
4646
4646
|
}[] | undefined;
|
|
4647
4647
|
required?: boolean | undefined;
|
|
@@ -4666,7 +4666,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4666
4666
|
hint?: string | undefined;
|
|
4667
4667
|
messages?: {
|
|
4668
4668
|
text: string;
|
|
4669
|
-
type: "
|
|
4669
|
+
type: "error" | "success" | "info" | "warning";
|
|
4670
4670
|
id?: number | undefined;
|
|
4671
4671
|
}[] | undefined;
|
|
4672
4672
|
required?: boolean | undefined;
|
|
@@ -4685,7 +4685,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4685
4685
|
hint?: string | undefined;
|
|
4686
4686
|
messages?: {
|
|
4687
4687
|
text: string;
|
|
4688
|
-
type: "
|
|
4688
|
+
type: "error" | "success" | "info" | "warning";
|
|
4689
4689
|
id?: number | undefined;
|
|
4690
4690
|
}[] | undefined;
|
|
4691
4691
|
required?: boolean | undefined;
|
|
@@ -4705,7 +4705,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4705
4705
|
hint?: string | undefined;
|
|
4706
4706
|
messages?: {
|
|
4707
4707
|
text: string;
|
|
4708
|
-
type: "
|
|
4708
|
+
type: "error" | "success" | "info" | "warning";
|
|
4709
4709
|
id?: number | undefined;
|
|
4710
4710
|
}[] | undefined;
|
|
4711
4711
|
required?: boolean | undefined;
|
|
@@ -4724,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4724
4724
|
hint?: string | undefined;
|
|
4725
4725
|
messages?: {
|
|
4726
4726
|
text: string;
|
|
4727
|
-
type: "
|
|
4727
|
+
type: "error" | "success" | "info" | "warning";
|
|
4728
4728
|
id?: number | undefined;
|
|
4729
4729
|
}[] | undefined;
|
|
4730
4730
|
required?: boolean | undefined;
|
|
@@ -4746,7 +4746,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4746
4746
|
hint?: string | undefined;
|
|
4747
4747
|
messages?: {
|
|
4748
4748
|
text: string;
|
|
4749
|
-
type: "
|
|
4749
|
+
type: "error" | "success" | "info" | "warning";
|
|
4750
4750
|
id?: number | undefined;
|
|
4751
4751
|
}[] | undefined;
|
|
4752
4752
|
required?: boolean | undefined;
|
|
@@ -4768,7 +4768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4768
4768
|
hint?: string | undefined;
|
|
4769
4769
|
messages?: {
|
|
4770
4770
|
text: string;
|
|
4771
|
-
type: "
|
|
4771
|
+
type: "error" | "success" | "info" | "warning";
|
|
4772
4772
|
id?: number | undefined;
|
|
4773
4773
|
}[] | undefined;
|
|
4774
4774
|
required?: boolean | undefined;
|
|
@@ -4787,7 +4787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4787
4787
|
hint?: string | undefined;
|
|
4788
4788
|
messages?: {
|
|
4789
4789
|
text: string;
|
|
4790
|
-
type: "
|
|
4790
|
+
type: "error" | "success" | "info" | "warning";
|
|
4791
4791
|
id?: number | undefined;
|
|
4792
4792
|
}[] | undefined;
|
|
4793
4793
|
required?: boolean | undefined;
|
|
@@ -4812,7 +4812,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4812
4812
|
hint?: string | undefined;
|
|
4813
4813
|
messages?: {
|
|
4814
4814
|
text: string;
|
|
4815
|
-
type: "
|
|
4815
|
+
type: "error" | "success" | "info" | "warning";
|
|
4816
4816
|
id?: number | undefined;
|
|
4817
4817
|
}[] | undefined;
|
|
4818
4818
|
required?: boolean | undefined;
|
|
@@ -4833,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4833
4833
|
hint?: string | undefined;
|
|
4834
4834
|
messages?: {
|
|
4835
4835
|
text: string;
|
|
4836
|
-
type: "
|
|
4836
|
+
type: "error" | "success" | "info" | "warning";
|
|
4837
4837
|
id?: number | undefined;
|
|
4838
4838
|
}[] | undefined;
|
|
4839
4839
|
required?: boolean | undefined;
|
|
@@ -4854,7 +4854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4854
4854
|
hint?: string | undefined;
|
|
4855
4855
|
messages?: {
|
|
4856
4856
|
text: string;
|
|
4857
|
-
type: "
|
|
4857
|
+
type: "error" | "success" | "info" | "warning";
|
|
4858
4858
|
id?: number | undefined;
|
|
4859
4859
|
}[] | undefined;
|
|
4860
4860
|
required?: boolean | undefined;
|
|
@@ -5085,7 +5085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5085
5085
|
hint?: string | undefined;
|
|
5086
5086
|
messages?: {
|
|
5087
5087
|
text: string;
|
|
5088
|
-
type: "
|
|
5088
|
+
type: "error" | "success" | "info" | "warning";
|
|
5089
5089
|
id?: number | undefined;
|
|
5090
5090
|
}[] | undefined;
|
|
5091
5091
|
required?: boolean | undefined;
|
|
@@ -5103,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5103
5103
|
hint?: string | undefined;
|
|
5104
5104
|
messages?: {
|
|
5105
5105
|
text: string;
|
|
5106
|
-
type: "
|
|
5106
|
+
type: "error" | "success" | "info" | "warning";
|
|
5107
5107
|
id?: number | undefined;
|
|
5108
5108
|
}[] | undefined;
|
|
5109
5109
|
required?: boolean | undefined;
|
|
@@ -5127,7 +5127,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5127
5127
|
hint?: string | undefined;
|
|
5128
5128
|
messages?: {
|
|
5129
5129
|
text: string;
|
|
5130
|
-
type: "
|
|
5130
|
+
type: "error" | "success" | "info" | "warning";
|
|
5131
5131
|
id?: number | undefined;
|
|
5132
5132
|
}[] | undefined;
|
|
5133
5133
|
required?: boolean | undefined;
|
|
@@ -5137,7 +5137,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5137
5137
|
value: string;
|
|
5138
5138
|
label: string;
|
|
5139
5139
|
}[] | undefined;
|
|
5140
|
-
display?: "
|
|
5140
|
+
display?: "radio" | "checkbox" | undefined;
|
|
5141
5141
|
multiple?: boolean | undefined;
|
|
5142
5142
|
default_value?: string | string[] | undefined;
|
|
5143
5143
|
} | undefined;
|
|
@@ -5151,7 +5151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5151
5151
|
hint?: string | undefined;
|
|
5152
5152
|
messages?: {
|
|
5153
5153
|
text: string;
|
|
5154
|
-
type: "
|
|
5154
|
+
type: "error" | "success" | "info" | "warning";
|
|
5155
5155
|
id?: number | undefined;
|
|
5156
5156
|
}[] | undefined;
|
|
5157
5157
|
required?: boolean | undefined;
|
|
@@ -5175,7 +5175,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5175
5175
|
hint?: string | undefined;
|
|
5176
5176
|
messages?: {
|
|
5177
5177
|
text: string;
|
|
5178
|
-
type: "
|
|
5178
|
+
type: "error" | "success" | "info" | "warning";
|
|
5179
5179
|
id?: number | undefined;
|
|
5180
5180
|
}[] | undefined;
|
|
5181
5181
|
required?: boolean | undefined;
|
|
@@ -5204,7 +5204,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5204
5204
|
hint?: string | undefined;
|
|
5205
5205
|
messages?: {
|
|
5206
5206
|
text: string;
|
|
5207
|
-
type: "
|
|
5207
|
+
type: "error" | "success" | "info" | "warning";
|
|
5208
5208
|
id?: number | undefined;
|
|
5209
5209
|
}[] | undefined;
|
|
5210
5210
|
required?: boolean | undefined;
|
|
@@ -5219,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5219
5219
|
hint?: string | undefined;
|
|
5220
5220
|
messages?: {
|
|
5221
5221
|
text: string;
|
|
5222
|
-
type: "
|
|
5222
|
+
type: "error" | "success" | "info" | "warning";
|
|
5223
5223
|
id?: number | undefined;
|
|
5224
5224
|
}[] | undefined;
|
|
5225
5225
|
required?: boolean | undefined;
|
|
@@ -5240,7 +5240,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5240
5240
|
hint?: string | undefined;
|
|
5241
5241
|
messages?: {
|
|
5242
5242
|
text: string;
|
|
5243
|
-
type: "
|
|
5243
|
+
type: "error" | "success" | "info" | "warning";
|
|
5244
5244
|
id?: number | undefined;
|
|
5245
5245
|
}[] | undefined;
|
|
5246
5246
|
required?: boolean | undefined;
|
|
@@ -5265,7 +5265,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5265
5265
|
hint?: string | undefined;
|
|
5266
5266
|
messages?: {
|
|
5267
5267
|
text: string;
|
|
5268
|
-
type: "
|
|
5268
|
+
type: "error" | "success" | "info" | "warning";
|
|
5269
5269
|
id?: number | undefined;
|
|
5270
5270
|
}[] | undefined;
|
|
5271
5271
|
required?: boolean | undefined;
|
|
@@ -5284,7 +5284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5284
5284
|
hint?: string | undefined;
|
|
5285
5285
|
messages?: {
|
|
5286
5286
|
text: string;
|
|
5287
|
-
type: "
|
|
5287
|
+
type: "error" | "success" | "info" | "warning";
|
|
5288
5288
|
id?: number | undefined;
|
|
5289
5289
|
}[] | undefined;
|
|
5290
5290
|
required?: boolean | undefined;
|
|
@@ -5304,7 +5304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5304
5304
|
hint?: string | undefined;
|
|
5305
5305
|
messages?: {
|
|
5306
5306
|
text: string;
|
|
5307
|
-
type: "
|
|
5307
|
+
type: "error" | "success" | "info" | "warning";
|
|
5308
5308
|
id?: number | undefined;
|
|
5309
5309
|
}[] | undefined;
|
|
5310
5310
|
required?: boolean | undefined;
|
|
@@ -5323,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5323
5323
|
hint?: string | undefined;
|
|
5324
5324
|
messages?: {
|
|
5325
5325
|
text: string;
|
|
5326
|
-
type: "
|
|
5326
|
+
type: "error" | "success" | "info" | "warning";
|
|
5327
5327
|
id?: number | undefined;
|
|
5328
5328
|
}[] | undefined;
|
|
5329
5329
|
required?: boolean | undefined;
|
|
@@ -5345,7 +5345,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5345
5345
|
hint?: string | undefined;
|
|
5346
5346
|
messages?: {
|
|
5347
5347
|
text: string;
|
|
5348
|
-
type: "
|
|
5348
|
+
type: "error" | "success" | "info" | "warning";
|
|
5349
5349
|
id?: number | undefined;
|
|
5350
5350
|
}[] | undefined;
|
|
5351
5351
|
required?: boolean | undefined;
|
|
@@ -5367,7 +5367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5367
5367
|
hint?: string | undefined;
|
|
5368
5368
|
messages?: {
|
|
5369
5369
|
text: string;
|
|
5370
|
-
type: "
|
|
5370
|
+
type: "error" | "success" | "info" | "warning";
|
|
5371
5371
|
id?: number | undefined;
|
|
5372
5372
|
}[] | undefined;
|
|
5373
5373
|
required?: boolean | undefined;
|
|
@@ -5386,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5386
5386
|
hint?: string | undefined;
|
|
5387
5387
|
messages?: {
|
|
5388
5388
|
text: string;
|
|
5389
|
-
type: "
|
|
5389
|
+
type: "error" | "success" | "info" | "warning";
|
|
5390
5390
|
id?: number | undefined;
|
|
5391
5391
|
}[] | undefined;
|
|
5392
5392
|
required?: boolean | undefined;
|
|
@@ -5411,7 +5411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5411
5411
|
hint?: string | undefined;
|
|
5412
5412
|
messages?: {
|
|
5413
5413
|
text: string;
|
|
5414
|
-
type: "
|
|
5414
|
+
type: "error" | "success" | "info" | "warning";
|
|
5415
5415
|
id?: number | undefined;
|
|
5416
5416
|
}[] | undefined;
|
|
5417
5417
|
required?: boolean | undefined;
|
|
@@ -5432,7 +5432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5432
5432
|
hint?: string | undefined;
|
|
5433
5433
|
messages?: {
|
|
5434
5434
|
text: string;
|
|
5435
|
-
type: "
|
|
5435
|
+
type: "error" | "success" | "info" | "warning";
|
|
5436
5436
|
id?: number | undefined;
|
|
5437
5437
|
}[] | undefined;
|
|
5438
5438
|
required?: boolean | undefined;
|
|
@@ -5453,7 +5453,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5453
5453
|
hint?: string | undefined;
|
|
5454
5454
|
messages?: {
|
|
5455
5455
|
text: string;
|
|
5456
|
-
type: "
|
|
5456
|
+
type: "error" | "success" | "info" | "warning";
|
|
5457
5457
|
id?: number | undefined;
|
|
5458
5458
|
}[] | undefined;
|
|
5459
5459
|
required?: boolean | undefined;
|
|
@@ -5686,7 +5686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5686
5686
|
hint?: string | undefined;
|
|
5687
5687
|
messages?: {
|
|
5688
5688
|
text: string;
|
|
5689
|
-
type: "
|
|
5689
|
+
type: "error" | "success" | "info" | "warning";
|
|
5690
5690
|
id?: number | undefined;
|
|
5691
5691
|
}[] | undefined;
|
|
5692
5692
|
required?: boolean | undefined;
|
|
@@ -5704,7 +5704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5704
5704
|
hint?: string | undefined;
|
|
5705
5705
|
messages?: {
|
|
5706
5706
|
text: string;
|
|
5707
|
-
type: "
|
|
5707
|
+
type: "error" | "success" | "info" | "warning";
|
|
5708
5708
|
id?: number | undefined;
|
|
5709
5709
|
}[] | undefined;
|
|
5710
5710
|
required?: boolean | undefined;
|
|
@@ -5728,7 +5728,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5728
5728
|
hint?: string | undefined;
|
|
5729
5729
|
messages?: {
|
|
5730
5730
|
text: string;
|
|
5731
|
-
type: "
|
|
5731
|
+
type: "error" | "success" | "info" | "warning";
|
|
5732
5732
|
id?: number | undefined;
|
|
5733
5733
|
}[] | undefined;
|
|
5734
5734
|
required?: boolean | undefined;
|
|
@@ -5738,7 +5738,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5738
5738
|
value: string;
|
|
5739
5739
|
label: string;
|
|
5740
5740
|
}[] | undefined;
|
|
5741
|
-
display?: "
|
|
5741
|
+
display?: "radio" | "checkbox" | undefined;
|
|
5742
5742
|
multiple?: boolean | undefined;
|
|
5743
5743
|
default_value?: string | string[] | undefined;
|
|
5744
5744
|
} | undefined;
|
|
@@ -5752,7 +5752,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5752
5752
|
hint?: string | undefined;
|
|
5753
5753
|
messages?: {
|
|
5754
5754
|
text: string;
|
|
5755
|
-
type: "
|
|
5755
|
+
type: "error" | "success" | "info" | "warning";
|
|
5756
5756
|
id?: number | undefined;
|
|
5757
5757
|
}[] | undefined;
|
|
5758
5758
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5776
5776
|
hint?: string | undefined;
|
|
5777
5777
|
messages?: {
|
|
5778
5778
|
text: string;
|
|
5779
|
-
type: "
|
|
5779
|
+
type: "error" | "success" | "info" | "warning";
|
|
5780
5780
|
id?: number | undefined;
|
|
5781
5781
|
}[] | undefined;
|
|
5782
5782
|
required?: boolean | undefined;
|
|
@@ -5801,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5801
5801
|
hint?: string | undefined;
|
|
5802
5802
|
messages?: {
|
|
5803
5803
|
text: string;
|
|
5804
|
-
type: "
|
|
5804
|
+
type: "error" | "success" | "info" | "warning";
|
|
5805
5805
|
id?: number | undefined;
|
|
5806
5806
|
}[] | undefined;
|
|
5807
5807
|
required?: boolean | undefined;
|
|
@@ -5816,7 +5816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5816
5816
|
hint?: string | undefined;
|
|
5817
5817
|
messages?: {
|
|
5818
5818
|
text: string;
|
|
5819
|
-
type: "
|
|
5819
|
+
type: "error" | "success" | "info" | "warning";
|
|
5820
5820
|
id?: number | undefined;
|
|
5821
5821
|
}[] | undefined;
|
|
5822
5822
|
required?: boolean | undefined;
|
|
@@ -5837,7 +5837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5837
5837
|
hint?: string | undefined;
|
|
5838
5838
|
messages?: {
|
|
5839
5839
|
text: string;
|
|
5840
|
-
type: "
|
|
5840
|
+
type: "error" | "success" | "info" | "warning";
|
|
5841
5841
|
id?: number | undefined;
|
|
5842
5842
|
}[] | undefined;
|
|
5843
5843
|
required?: boolean | undefined;
|
|
@@ -5862,7 +5862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5862
5862
|
hint?: string | undefined;
|
|
5863
5863
|
messages?: {
|
|
5864
5864
|
text: string;
|
|
5865
|
-
type: "
|
|
5865
|
+
type: "error" | "success" | "info" | "warning";
|
|
5866
5866
|
id?: number | undefined;
|
|
5867
5867
|
}[] | undefined;
|
|
5868
5868
|
required?: boolean | undefined;
|
|
@@ -5881,7 +5881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5881
5881
|
hint?: string | undefined;
|
|
5882
5882
|
messages?: {
|
|
5883
5883
|
text: string;
|
|
5884
|
-
type: "
|
|
5884
|
+
type: "error" | "success" | "info" | "warning";
|
|
5885
5885
|
id?: number | undefined;
|
|
5886
5886
|
}[] | undefined;
|
|
5887
5887
|
required?: boolean | undefined;
|
|
@@ -5901,7 +5901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5901
5901
|
hint?: string | undefined;
|
|
5902
5902
|
messages?: {
|
|
5903
5903
|
text: string;
|
|
5904
|
-
type: "
|
|
5904
|
+
type: "error" | "success" | "info" | "warning";
|
|
5905
5905
|
id?: number | undefined;
|
|
5906
5906
|
}[] | undefined;
|
|
5907
5907
|
required?: boolean | undefined;
|
|
@@ -5920,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5920
5920
|
hint?: string | undefined;
|
|
5921
5921
|
messages?: {
|
|
5922
5922
|
text: string;
|
|
5923
|
-
type: "
|
|
5923
|
+
type: "error" | "success" | "info" | "warning";
|
|
5924
5924
|
id?: number | undefined;
|
|
5925
5925
|
}[] | undefined;
|
|
5926
5926
|
required?: boolean | undefined;
|
|
@@ -5942,7 +5942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5942
5942
|
hint?: string | undefined;
|
|
5943
5943
|
messages?: {
|
|
5944
5944
|
text: string;
|
|
5945
|
-
type: "
|
|
5945
|
+
type: "error" | "success" | "info" | "warning";
|
|
5946
5946
|
id?: number | undefined;
|
|
5947
5947
|
}[] | undefined;
|
|
5948
5948
|
required?: boolean | undefined;
|
|
@@ -5964,7 +5964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5964
5964
|
hint?: string | undefined;
|
|
5965
5965
|
messages?: {
|
|
5966
5966
|
text: string;
|
|
5967
|
-
type: "
|
|
5967
|
+
type: "error" | "success" | "info" | "warning";
|
|
5968
5968
|
id?: number | undefined;
|
|
5969
5969
|
}[] | undefined;
|
|
5970
5970
|
required?: boolean | undefined;
|
|
@@ -5983,7 +5983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5983
5983
|
hint?: string | undefined;
|
|
5984
5984
|
messages?: {
|
|
5985
5985
|
text: string;
|
|
5986
|
-
type: "
|
|
5986
|
+
type: "error" | "success" | "info" | "warning";
|
|
5987
5987
|
id?: number | undefined;
|
|
5988
5988
|
}[] | undefined;
|
|
5989
5989
|
required?: boolean | undefined;
|
|
@@ -6008,7 +6008,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6008
6008
|
hint?: string | undefined;
|
|
6009
6009
|
messages?: {
|
|
6010
6010
|
text: string;
|
|
6011
|
-
type: "
|
|
6011
|
+
type: "error" | "success" | "info" | "warning";
|
|
6012
6012
|
id?: number | undefined;
|
|
6013
6013
|
}[] | undefined;
|
|
6014
6014
|
required?: boolean | undefined;
|
|
@@ -6029,7 +6029,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6029
6029
|
hint?: string | undefined;
|
|
6030
6030
|
messages?: {
|
|
6031
6031
|
text: string;
|
|
6032
|
-
type: "
|
|
6032
|
+
type: "error" | "success" | "info" | "warning";
|
|
6033
6033
|
id?: number | undefined;
|
|
6034
6034
|
}[] | undefined;
|
|
6035
6035
|
required?: boolean | undefined;
|
|
@@ -6050,7 +6050,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6050
6050
|
hint?: string | undefined;
|
|
6051
6051
|
messages?: {
|
|
6052
6052
|
text: string;
|
|
6053
|
-
type: "
|
|
6053
|
+
type: "error" | "success" | "info" | "warning";
|
|
6054
6054
|
id?: number | undefined;
|
|
6055
6055
|
}[] | undefined;
|
|
6056
6056
|
required?: boolean | undefined;
|
|
@@ -6281,7 +6281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6281
6281
|
hint?: string | undefined;
|
|
6282
6282
|
messages?: {
|
|
6283
6283
|
text: string;
|
|
6284
|
-
type: "
|
|
6284
|
+
type: "error" | "success" | "info" | "warning";
|
|
6285
6285
|
id?: number | undefined;
|
|
6286
6286
|
}[] | undefined;
|
|
6287
6287
|
required?: boolean | undefined;
|
|
@@ -6299,7 +6299,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6299
6299
|
hint?: string | undefined;
|
|
6300
6300
|
messages?: {
|
|
6301
6301
|
text: string;
|
|
6302
|
-
type: "
|
|
6302
|
+
type: "error" | "success" | "info" | "warning";
|
|
6303
6303
|
id?: number | undefined;
|
|
6304
6304
|
}[] | undefined;
|
|
6305
6305
|
required?: boolean | undefined;
|
|
@@ -6323,7 +6323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6323
6323
|
hint?: string | undefined;
|
|
6324
6324
|
messages?: {
|
|
6325
6325
|
text: string;
|
|
6326
|
-
type: "
|
|
6326
|
+
type: "error" | "success" | "info" | "warning";
|
|
6327
6327
|
id?: number | undefined;
|
|
6328
6328
|
}[] | undefined;
|
|
6329
6329
|
required?: boolean | undefined;
|
|
@@ -6333,7 +6333,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6333
6333
|
value: string;
|
|
6334
6334
|
label: string;
|
|
6335
6335
|
}[] | undefined;
|
|
6336
|
-
display?: "
|
|
6336
|
+
display?: "radio" | "checkbox" | undefined;
|
|
6337
6337
|
multiple?: boolean | undefined;
|
|
6338
6338
|
default_value?: string | string[] | undefined;
|
|
6339
6339
|
} | undefined;
|
|
@@ -6347,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6347
6347
|
hint?: string | undefined;
|
|
6348
6348
|
messages?: {
|
|
6349
6349
|
text: string;
|
|
6350
|
-
type: "
|
|
6350
|
+
type: "error" | "success" | "info" | "warning";
|
|
6351
6351
|
id?: number | undefined;
|
|
6352
6352
|
}[] | undefined;
|
|
6353
6353
|
required?: boolean | undefined;
|
|
@@ -6371,7 +6371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6371
6371
|
hint?: string | undefined;
|
|
6372
6372
|
messages?: {
|
|
6373
6373
|
text: string;
|
|
6374
|
-
type: "
|
|
6374
|
+
type: "error" | "success" | "info" | "warning";
|
|
6375
6375
|
id?: number | undefined;
|
|
6376
6376
|
}[] | undefined;
|
|
6377
6377
|
required?: boolean | undefined;
|
|
@@ -6400,7 +6400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6400
6400
|
hint?: string | undefined;
|
|
6401
6401
|
messages?: {
|
|
6402
6402
|
text: string;
|
|
6403
|
-
type: "
|
|
6403
|
+
type: "error" | "success" | "info" | "warning";
|
|
6404
6404
|
id?: number | undefined;
|
|
6405
6405
|
}[] | undefined;
|
|
6406
6406
|
required?: boolean | undefined;
|
|
@@ -6415,7 +6415,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6415
6415
|
hint?: string | undefined;
|
|
6416
6416
|
messages?: {
|
|
6417
6417
|
text: string;
|
|
6418
|
-
type: "
|
|
6418
|
+
type: "error" | "success" | "info" | "warning";
|
|
6419
6419
|
id?: number | undefined;
|
|
6420
6420
|
}[] | undefined;
|
|
6421
6421
|
required?: boolean | undefined;
|
|
@@ -6436,7 +6436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6436
6436
|
hint?: string | undefined;
|
|
6437
6437
|
messages?: {
|
|
6438
6438
|
text: string;
|
|
6439
|
-
type: "
|
|
6439
|
+
type: "error" | "success" | "info" | "warning";
|
|
6440
6440
|
id?: number | undefined;
|
|
6441
6441
|
}[] | undefined;
|
|
6442
6442
|
required?: boolean | undefined;
|
|
@@ -6461,7 +6461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6461
6461
|
hint?: string | undefined;
|
|
6462
6462
|
messages?: {
|
|
6463
6463
|
text: string;
|
|
6464
|
-
type: "
|
|
6464
|
+
type: "error" | "success" | "info" | "warning";
|
|
6465
6465
|
id?: number | undefined;
|
|
6466
6466
|
}[] | undefined;
|
|
6467
6467
|
required?: boolean | undefined;
|
|
@@ -6480,7 +6480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6480
6480
|
hint?: string | undefined;
|
|
6481
6481
|
messages?: {
|
|
6482
6482
|
text: string;
|
|
6483
|
-
type: "
|
|
6483
|
+
type: "error" | "success" | "info" | "warning";
|
|
6484
6484
|
id?: number | undefined;
|
|
6485
6485
|
}[] | undefined;
|
|
6486
6486
|
required?: boolean | undefined;
|
|
@@ -6500,7 +6500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6500
6500
|
hint?: string | undefined;
|
|
6501
6501
|
messages?: {
|
|
6502
6502
|
text: string;
|
|
6503
|
-
type: "
|
|
6503
|
+
type: "error" | "success" | "info" | "warning";
|
|
6504
6504
|
id?: number | undefined;
|
|
6505
6505
|
}[] | undefined;
|
|
6506
6506
|
required?: boolean | undefined;
|
|
@@ -6519,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6519
6519
|
hint?: string | undefined;
|
|
6520
6520
|
messages?: {
|
|
6521
6521
|
text: string;
|
|
6522
|
-
type: "
|
|
6522
|
+
type: "error" | "success" | "info" | "warning";
|
|
6523
6523
|
id?: number | undefined;
|
|
6524
6524
|
}[] | undefined;
|
|
6525
6525
|
required?: boolean | undefined;
|
|
@@ -6541,7 +6541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6541
6541
|
hint?: string | undefined;
|
|
6542
6542
|
messages?: {
|
|
6543
6543
|
text: string;
|
|
6544
|
-
type: "
|
|
6544
|
+
type: "error" | "success" | "info" | "warning";
|
|
6545
6545
|
id?: number | undefined;
|
|
6546
6546
|
}[] | undefined;
|
|
6547
6547
|
required?: boolean | undefined;
|
|
@@ -6563,7 +6563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6563
6563
|
hint?: string | undefined;
|
|
6564
6564
|
messages?: {
|
|
6565
6565
|
text: string;
|
|
6566
|
-
type: "
|
|
6566
|
+
type: "error" | "success" | "info" | "warning";
|
|
6567
6567
|
id?: number | undefined;
|
|
6568
6568
|
}[] | undefined;
|
|
6569
6569
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6582
6582
|
hint?: string | undefined;
|
|
6583
6583
|
messages?: {
|
|
6584
6584
|
text: string;
|
|
6585
|
-
type: "
|
|
6585
|
+
type: "error" | "success" | "info" | "warning";
|
|
6586
6586
|
id?: number | undefined;
|
|
6587
6587
|
}[] | undefined;
|
|
6588
6588
|
required?: boolean | undefined;
|
|
@@ -6607,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6607
6607
|
hint?: string | undefined;
|
|
6608
6608
|
messages?: {
|
|
6609
6609
|
text: string;
|
|
6610
|
-
type: "
|
|
6610
|
+
type: "error" | "success" | "info" | "warning";
|
|
6611
6611
|
id?: number | undefined;
|
|
6612
6612
|
}[] | undefined;
|
|
6613
6613
|
required?: boolean | undefined;
|
|
@@ -6628,7 +6628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6628
6628
|
hint?: string | undefined;
|
|
6629
6629
|
messages?: {
|
|
6630
6630
|
text: string;
|
|
6631
|
-
type: "
|
|
6631
|
+
type: "error" | "success" | "info" | "warning";
|
|
6632
6632
|
id?: number | undefined;
|
|
6633
6633
|
}[] | undefined;
|
|
6634
6634
|
required?: boolean | undefined;
|
|
@@ -6649,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6649
6649
|
hint?: string | undefined;
|
|
6650
6650
|
messages?: {
|
|
6651
6651
|
text: string;
|
|
6652
|
-
type: "
|
|
6652
|
+
type: "error" | "success" | "info" | "warning";
|
|
6653
6653
|
id?: number | undefined;
|
|
6654
6654
|
}[] | undefined;
|
|
6655
6655
|
required?: boolean | undefined;
|
|
@@ -6841,7 +6841,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6841
6841
|
};
|
|
6842
6842
|
};
|
|
6843
6843
|
output: {
|
|
6844
|
-
universal_login_experience: "
|
|
6844
|
+
universal_login_experience: "new" | "classic";
|
|
6845
6845
|
identifier_first: boolean;
|
|
6846
6846
|
password_first: boolean;
|
|
6847
6847
|
webauthn_platform_first_factor: boolean;
|
|
@@ -6859,7 +6859,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6859
6859
|
};
|
|
6860
6860
|
} & {
|
|
6861
6861
|
json: {
|
|
6862
|
-
universal_login_experience?: "
|
|
6862
|
+
universal_login_experience?: "new" | "classic" | undefined;
|
|
6863
6863
|
identifier_first?: boolean | undefined;
|
|
6864
6864
|
password_first?: boolean | undefined;
|
|
6865
6865
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6879
6879
|
};
|
|
6880
6880
|
};
|
|
6881
6881
|
output: {
|
|
6882
|
-
prompt: "
|
|
6882
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6883
6883
|
language: string;
|
|
6884
6884
|
}[];
|
|
6885
6885
|
outputFormat: "json";
|
|
@@ -6917,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6917
6917
|
$get: {
|
|
6918
6918
|
input: {
|
|
6919
6919
|
param: {
|
|
6920
|
-
prompt: "
|
|
6920
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
};
|
|
6923
6923
|
} & {
|
|
@@ -6939,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6939
6939
|
$put: {
|
|
6940
6940
|
input: {
|
|
6941
6941
|
param: {
|
|
6942
|
-
prompt: "
|
|
6942
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6943
6943
|
language: string;
|
|
6944
6944
|
};
|
|
6945
6945
|
} & {
|
|
@@ -6963,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6963
6963
|
$delete: {
|
|
6964
6964
|
input: {
|
|
6965
6965
|
param: {
|
|
6966
|
-
prompt: "
|
|
6966
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6967
6967
|
language: string;
|
|
6968
6968
|
};
|
|
6969
6969
|
} & {
|
|
@@ -7055,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7055
7055
|
active?: boolean | undefined;
|
|
7056
7056
|
} | undefined;
|
|
7057
7057
|
signup?: {
|
|
7058
|
-
status?: "
|
|
7058
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7059
7059
|
verification?: {
|
|
7060
7060
|
active?: boolean | undefined;
|
|
7061
7061
|
} | undefined;
|
|
@@ -7072,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7072
7072
|
active?: boolean | undefined;
|
|
7073
7073
|
} | undefined;
|
|
7074
7074
|
signup?: {
|
|
7075
|
-
status?: "
|
|
7075
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7076
7076
|
} | undefined;
|
|
7077
7077
|
validation?: {
|
|
7078
7078
|
max_length?: number | undefined;
|
|
@@ -7089,7 +7089,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7089
7089
|
active?: boolean | undefined;
|
|
7090
7090
|
} | undefined;
|
|
7091
7091
|
signup?: {
|
|
7092
|
-
status?: "
|
|
7092
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7093
7093
|
} | undefined;
|
|
7094
7094
|
} | undefined;
|
|
7095
7095
|
} | undefined;
|
|
@@ -7189,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7189
7189
|
active?: boolean | undefined;
|
|
7190
7190
|
} | undefined;
|
|
7191
7191
|
signup?: {
|
|
7192
|
-
status?: "
|
|
7192
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7193
7193
|
verification?: {
|
|
7194
7194
|
active?: boolean | undefined;
|
|
7195
7195
|
} | undefined;
|
|
@@ -7206,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7206
7206
|
active?: boolean | undefined;
|
|
7207
7207
|
} | undefined;
|
|
7208
7208
|
signup?: {
|
|
7209
|
-
status?: "
|
|
7209
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7210
7210
|
} | undefined;
|
|
7211
7211
|
validation?: {
|
|
7212
7212
|
max_length?: number | undefined;
|
|
@@ -7223,7 +7223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7223
7223
|
active?: boolean | undefined;
|
|
7224
7224
|
} | undefined;
|
|
7225
7225
|
signup?: {
|
|
7226
|
-
status?: "
|
|
7226
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7227
7227
|
} | undefined;
|
|
7228
7228
|
} | undefined;
|
|
7229
7229
|
} | undefined;
|
|
@@ -7338,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7338
7338
|
active?: boolean | undefined;
|
|
7339
7339
|
} | undefined;
|
|
7340
7340
|
signup?: {
|
|
7341
|
-
status?: "
|
|
7341
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7342
7342
|
verification?: {
|
|
7343
7343
|
active?: boolean | undefined;
|
|
7344
7344
|
} | undefined;
|
|
@@ -7355,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7355
7355
|
active?: boolean | undefined;
|
|
7356
7356
|
} | undefined;
|
|
7357
7357
|
signup?: {
|
|
7358
|
-
status?: "
|
|
7358
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7359
7359
|
} | undefined;
|
|
7360
7360
|
validation?: {
|
|
7361
7361
|
max_length?: number | undefined;
|
|
@@ -7372,7 +7372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7372
7372
|
active?: boolean | undefined;
|
|
7373
7373
|
} | undefined;
|
|
7374
7374
|
signup?: {
|
|
7375
|
-
status?: "
|
|
7375
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7376
7376
|
} | undefined;
|
|
7377
7377
|
} | undefined;
|
|
7378
7378
|
} | undefined;
|
|
@@ -7517,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7517
7517
|
active?: boolean | undefined;
|
|
7518
7518
|
} | undefined;
|
|
7519
7519
|
signup?: {
|
|
7520
|
-
status?: "
|
|
7520
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7521
7521
|
verification?: {
|
|
7522
7522
|
active?: boolean | undefined;
|
|
7523
7523
|
} | undefined;
|
|
@@ -7534,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7534
7534
|
active?: boolean | undefined;
|
|
7535
7535
|
} | undefined;
|
|
7536
7536
|
signup?: {
|
|
7537
|
-
status?: "
|
|
7537
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7538
7538
|
} | undefined;
|
|
7539
7539
|
validation?: {
|
|
7540
7540
|
max_length?: number | undefined;
|
|
@@ -7551,7 +7551,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7551
7551
|
active?: boolean | undefined;
|
|
7552
7552
|
} | undefined;
|
|
7553
7553
|
signup?: {
|
|
7554
|
-
status?: "
|
|
7554
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7555
7555
|
} | undefined;
|
|
7556
7556
|
} | undefined;
|
|
7557
7557
|
} | undefined;
|
|
@@ -7675,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7675
7675
|
active?: boolean | undefined;
|
|
7676
7676
|
} | undefined;
|
|
7677
7677
|
signup?: {
|
|
7678
|
-
status?: "
|
|
7678
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7679
7679
|
verification?: {
|
|
7680
7680
|
active?: boolean | undefined;
|
|
7681
7681
|
} | undefined;
|
|
@@ -7692,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7692
7692
|
active?: boolean | undefined;
|
|
7693
7693
|
} | undefined;
|
|
7694
7694
|
signup?: {
|
|
7695
|
-
status?: "
|
|
7695
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7696
7696
|
} | undefined;
|
|
7697
7697
|
validation?: {
|
|
7698
7698
|
max_length?: number | undefined;
|
|
@@ -7709,7 +7709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7709
7709
|
active?: boolean | undefined;
|
|
7710
7710
|
} | undefined;
|
|
7711
7711
|
signup?: {
|
|
7712
|
-
status?: "
|
|
7712
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7713
7713
|
} | undefined;
|
|
7714
7714
|
} | undefined;
|
|
7715
7715
|
} | undefined;
|
|
@@ -7825,7 +7825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7825
7825
|
};
|
|
7826
7826
|
} | {
|
|
7827
7827
|
mode: "inline";
|
|
7828
|
-
status: "
|
|
7828
|
+
status: "error" | "success";
|
|
7829
7829
|
connection_id: string;
|
|
7830
7830
|
connection_name: string;
|
|
7831
7831
|
strategy: string;
|
|
@@ -7861,7 +7861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7861
7861
|
tenant_id: string;
|
|
7862
7862
|
created_at: string;
|
|
7863
7863
|
updated_at: string;
|
|
7864
|
-
deploymentStatus: "
|
|
7864
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7865
7865
|
secrets?: {
|
|
7866
7866
|
[x: string]: string;
|
|
7867
7867
|
} | undefined;
|
|
@@ -7951,7 +7951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7951
7951
|
tenant_id: string;
|
|
7952
7952
|
created_at: string;
|
|
7953
7953
|
updated_at: string;
|
|
7954
|
-
deploymentStatus: "
|
|
7954
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7955
7955
|
secrets?: {
|
|
7956
7956
|
[x: string]: string;
|
|
7957
7957
|
} | undefined;
|
|
@@ -8464,7 +8464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8464
8464
|
log_type: string;
|
|
8465
8465
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8466
8466
|
actor: {
|
|
8467
|
-
type: "
|
|
8467
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8468
8468
|
id?: string | undefined;
|
|
8469
8469
|
email?: string | undefined;
|
|
8470
8470
|
org_id?: string | undefined;
|
|
@@ -8774,7 +8774,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8774
8774
|
created_at: string;
|
|
8775
8775
|
updated_at: string;
|
|
8776
8776
|
name: string;
|
|
8777
|
-
provider: "auth0" | "
|
|
8777
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8778
8778
|
connection: string;
|
|
8779
8779
|
enabled: boolean;
|
|
8780
8780
|
credentials: {
|
|
@@ -8806,7 +8806,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8806
8806
|
created_at: string;
|
|
8807
8807
|
updated_at: string;
|
|
8808
8808
|
name: string;
|
|
8809
|
-
provider: "auth0" | "
|
|
8809
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8810
8810
|
connection: string;
|
|
8811
8811
|
enabled: boolean;
|
|
8812
8812
|
credentials: {
|
|
@@ -8832,7 +8832,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8832
8832
|
} & {
|
|
8833
8833
|
json: {
|
|
8834
8834
|
name: string;
|
|
8835
|
-
provider: "auth0" | "
|
|
8835
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8836
8836
|
connection: string;
|
|
8837
8837
|
credentials: {
|
|
8838
8838
|
domain: string;
|
|
@@ -8849,7 +8849,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8849
8849
|
created_at: string;
|
|
8850
8850
|
updated_at: string;
|
|
8851
8851
|
name: string;
|
|
8852
|
-
provider: "auth0" | "
|
|
8852
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8853
8853
|
connection: string;
|
|
8854
8854
|
enabled: boolean;
|
|
8855
8855
|
credentials: {
|
|
@@ -8880,7 +8880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8880
8880
|
json: {
|
|
8881
8881
|
id?: string | undefined;
|
|
8882
8882
|
name?: string | undefined;
|
|
8883
|
-
provider?: "auth0" | "
|
|
8883
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8884
8884
|
connection?: string | undefined;
|
|
8885
8885
|
enabled?: boolean | undefined;
|
|
8886
8886
|
credentials?: {
|
|
@@ -8896,7 +8896,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8896
8896
|
created_at: string;
|
|
8897
8897
|
updated_at: string;
|
|
8898
8898
|
name: string;
|
|
8899
|
-
provider: "auth0" | "
|
|
8899
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8900
8900
|
connection: string;
|
|
8901
8901
|
enabled: boolean;
|
|
8902
8902
|
credentials: {
|
|
@@ -9114,7 +9114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9114
9114
|
};
|
|
9115
9115
|
};
|
|
9116
9116
|
output: {
|
|
9117
|
-
type: "fn" | "
|
|
9117
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9118
9118
|
date: string;
|
|
9119
9119
|
isMobile: boolean;
|
|
9120
9120
|
log_id: string;
|
|
@@ -9153,7 +9153,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9153
9153
|
limit: number;
|
|
9154
9154
|
length: number;
|
|
9155
9155
|
logs: {
|
|
9156
|
-
type: "fn" | "
|
|
9156
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9157
9157
|
date: string;
|
|
9158
9158
|
isMobile: boolean;
|
|
9159
9159
|
log_id: string;
|
|
@@ -9207,7 +9207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9207
9207
|
};
|
|
9208
9208
|
};
|
|
9209
9209
|
output: {
|
|
9210
|
-
type: "fn" | "
|
|
9210
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9211
9211
|
date: string;
|
|
9212
9212
|
isMobile: boolean;
|
|
9213
9213
|
log_id: string;
|
|
@@ -10283,7 +10283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10283
10283
|
active?: boolean | undefined;
|
|
10284
10284
|
} | undefined;
|
|
10285
10285
|
signup?: {
|
|
10286
|
-
status?: "
|
|
10286
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10287
10287
|
verification?: {
|
|
10288
10288
|
active?: boolean | undefined;
|
|
10289
10289
|
} | undefined;
|
|
@@ -10300,7 +10300,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10300
10300
|
active?: boolean | undefined;
|
|
10301
10301
|
} | undefined;
|
|
10302
10302
|
signup?: {
|
|
10303
|
-
status?: "
|
|
10303
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10304
10304
|
} | undefined;
|
|
10305
10305
|
validation?: {
|
|
10306
10306
|
max_length?: number | undefined;
|
|
@@ -10317,7 +10317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10317
10317
|
active?: boolean | undefined;
|
|
10318
10318
|
} | undefined;
|
|
10319
10319
|
signup?: {
|
|
10320
|
-
status?: "
|
|
10320
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10321
10321
|
} | undefined;
|
|
10322
10322
|
} | undefined;
|
|
10323
10323
|
} | undefined;
|
|
@@ -10437,7 +10437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10437
10437
|
active?: boolean | undefined;
|
|
10438
10438
|
} | undefined;
|
|
10439
10439
|
signup?: {
|
|
10440
|
-
status?: "
|
|
10440
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10441
10441
|
verification?: {
|
|
10442
10442
|
active?: boolean | undefined;
|
|
10443
10443
|
} | undefined;
|
|
@@ -10454,7 +10454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10454
10454
|
active?: boolean | undefined;
|
|
10455
10455
|
} | undefined;
|
|
10456
10456
|
signup?: {
|
|
10457
|
-
status?: "
|
|
10457
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10458
10458
|
} | undefined;
|
|
10459
10459
|
validation?: {
|
|
10460
10460
|
max_length?: number | undefined;
|
|
@@ -10471,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10471
10471
|
active?: boolean | undefined;
|
|
10472
10472
|
} | undefined;
|
|
10473
10473
|
signup?: {
|
|
10474
|
-
status?: "
|
|
10474
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10475
10475
|
} | undefined;
|
|
10476
10476
|
} | undefined;
|
|
10477
10477
|
} | undefined;
|
|
@@ -11425,7 +11425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11425
11425
|
};
|
|
11426
11426
|
};
|
|
11427
11427
|
output: {
|
|
11428
|
-
type: "fn" | "
|
|
11428
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11429
11429
|
date: string;
|
|
11430
11430
|
isMobile: boolean;
|
|
11431
11431
|
log_id: string;
|
|
@@ -11464,7 +11464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11464
11464
|
limit: number;
|
|
11465
11465
|
length: number;
|
|
11466
11466
|
logs: {
|
|
11467
|
-
type: "fn" | "
|
|
11467
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11468
11468
|
date: string;
|
|
11469
11469
|
isMobile: boolean;
|
|
11470
11470
|
log_id: string;
|
|
@@ -11779,7 +11779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11779
11779
|
};
|
|
11780
11780
|
} & {
|
|
11781
11781
|
json: {
|
|
11782
|
-
template: "
|
|
11782
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11783
11783
|
body: string;
|
|
11784
11784
|
from: string;
|
|
11785
11785
|
subject: string;
|
|
@@ -11800,7 +11800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11800
11800
|
};
|
|
11801
11801
|
} & {
|
|
11802
11802
|
json: {
|
|
11803
|
-
template: "
|
|
11803
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11804
11804
|
body: string;
|
|
11805
11805
|
from: string;
|
|
11806
11806
|
subject: string;
|
|
@@ -11812,7 +11812,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11812
11812
|
};
|
|
11813
11813
|
};
|
|
11814
11814
|
output: {
|
|
11815
|
-
template: "
|
|
11815
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11816
11816
|
body: string;
|
|
11817
11817
|
from: string;
|
|
11818
11818
|
subject: string;
|
|
@@ -11835,7 +11835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11835
11835
|
};
|
|
11836
11836
|
};
|
|
11837
11837
|
output: {
|
|
11838
|
-
name: "
|
|
11838
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11839
11839
|
body: string;
|
|
11840
11840
|
subject: string;
|
|
11841
11841
|
}[];
|
|
@@ -11848,7 +11848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11848
11848
|
$get: {
|
|
11849
11849
|
input: {
|
|
11850
11850
|
param: {
|
|
11851
|
-
templateName: "
|
|
11851
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11852
11852
|
};
|
|
11853
11853
|
} & {
|
|
11854
11854
|
header: {
|
|
@@ -11861,7 +11861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11861
11861
|
} | {
|
|
11862
11862
|
input: {
|
|
11863
11863
|
param: {
|
|
11864
|
-
templateName: "
|
|
11864
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11865
11865
|
};
|
|
11866
11866
|
} & {
|
|
11867
11867
|
header: {
|
|
@@ -11869,7 +11869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11869
11869
|
};
|
|
11870
11870
|
};
|
|
11871
11871
|
output: {
|
|
11872
|
-
template: "
|
|
11872
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11873
11873
|
body: string;
|
|
11874
11874
|
from: string;
|
|
11875
11875
|
subject: string;
|
|
@@ -11888,7 +11888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11888
11888
|
$put: {
|
|
11889
11889
|
input: {
|
|
11890
11890
|
param: {
|
|
11891
|
-
templateName: "
|
|
11891
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11892
11892
|
};
|
|
11893
11893
|
} & {
|
|
11894
11894
|
header: {
|
|
@@ -11896,7 +11896,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11896
11896
|
};
|
|
11897
11897
|
} & {
|
|
11898
11898
|
json: {
|
|
11899
|
-
template: "
|
|
11899
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11900
11900
|
body: string;
|
|
11901
11901
|
subject: string;
|
|
11902
11902
|
syntax?: "liquid" | undefined;
|
|
@@ -11908,7 +11908,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11908
11908
|
};
|
|
11909
11909
|
};
|
|
11910
11910
|
output: {
|
|
11911
|
-
template: "
|
|
11911
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11912
11912
|
body: string;
|
|
11913
11913
|
from: string;
|
|
11914
11914
|
subject: string;
|
|
@@ -11927,7 +11927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11927
11927
|
$patch: {
|
|
11928
11928
|
input: {
|
|
11929
11929
|
param: {
|
|
11930
|
-
templateName: "
|
|
11930
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11931
11931
|
};
|
|
11932
11932
|
} & {
|
|
11933
11933
|
header: {
|
|
@@ -11935,7 +11935,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11935
11935
|
};
|
|
11936
11936
|
} & {
|
|
11937
11937
|
json: {
|
|
11938
|
-
template?: "
|
|
11938
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11939
11939
|
body?: string | undefined;
|
|
11940
11940
|
from?: string | undefined;
|
|
11941
11941
|
subject?: string | undefined;
|
|
@@ -11952,7 +11952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11952
11952
|
} | {
|
|
11953
11953
|
input: {
|
|
11954
11954
|
param: {
|
|
11955
|
-
templateName: "
|
|
11955
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11956
11956
|
};
|
|
11957
11957
|
} & {
|
|
11958
11958
|
header: {
|
|
@@ -11960,7 +11960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11960
11960
|
};
|
|
11961
11961
|
} & {
|
|
11962
11962
|
json: {
|
|
11963
|
-
template?: "
|
|
11963
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11964
11964
|
body?: string | undefined;
|
|
11965
11965
|
from?: string | undefined;
|
|
11966
11966
|
subject?: string | undefined;
|
|
@@ -11972,7 +11972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11972
11972
|
};
|
|
11973
11973
|
};
|
|
11974
11974
|
output: {
|
|
11975
|
-
template: "
|
|
11975
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11976
11976
|
body: string;
|
|
11977
11977
|
from: string;
|
|
11978
11978
|
subject: string;
|
|
@@ -11991,7 +11991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11991
11991
|
$delete: {
|
|
11992
11992
|
input: {
|
|
11993
11993
|
param: {
|
|
11994
|
-
templateName: "
|
|
11994
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11995
11995
|
};
|
|
11996
11996
|
} & {
|
|
11997
11997
|
header: {
|
|
@@ -12004,7 +12004,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12004
12004
|
} | {
|
|
12005
12005
|
input: {
|
|
12006
12006
|
param: {
|
|
12007
|
-
templateName: "
|
|
12007
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12008
12008
|
};
|
|
12009
12009
|
} & {
|
|
12010
12010
|
header: {
|
|
@@ -12021,7 +12021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12021
12021
|
$post: {
|
|
12022
12022
|
input: {
|
|
12023
12023
|
param: {
|
|
12024
|
-
templateName: "
|
|
12024
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12025
12025
|
};
|
|
12026
12026
|
} & {
|
|
12027
12027
|
header: {
|
|
@@ -12304,7 +12304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12304
12304
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12305
12305
|
custom_domain_id: string;
|
|
12306
12306
|
primary: boolean;
|
|
12307
|
-
status: "
|
|
12307
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12308
12308
|
verification_method?: "txt" | undefined;
|
|
12309
12309
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12310
12310
|
domain_metadata?: {
|
|
@@ -12345,7 +12345,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12345
12345
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12346
12346
|
custom_domain_id: string;
|
|
12347
12347
|
primary: boolean;
|
|
12348
|
-
status: "
|
|
12348
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12349
12349
|
verification_method?: "txt" | undefined;
|
|
12350
12350
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12351
12351
|
domain_metadata?: {
|
|
@@ -12409,7 +12409,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12409
12409
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12410
12410
|
custom_domain_id: string;
|
|
12411
12411
|
primary: boolean;
|
|
12412
|
-
status: "
|
|
12412
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12413
12413
|
verification_method?: "txt" | undefined;
|
|
12414
12414
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12415
12415
|
domain_metadata?: {
|
|
@@ -12456,7 +12456,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12456
12456
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12457
12457
|
custom_domain_id: string;
|
|
12458
12458
|
primary: boolean;
|
|
12459
|
-
status: "
|
|
12459
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12460
12460
|
verification_method?: "txt" | undefined;
|
|
12461
12461
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12462
12462
|
domain_metadata?: {
|
|
@@ -12502,7 +12502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12502
12502
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12503
12503
|
custom_domain_id: string;
|
|
12504
12504
|
primary: boolean;
|
|
12505
|
-
status: "
|
|
12505
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12506
12506
|
verification_method?: "txt" | undefined;
|
|
12507
12507
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12508
12508
|
domain_metadata?: {
|
|
@@ -12543,7 +12543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12543
12543
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12544
12544
|
custom_domain_id: string;
|
|
12545
12545
|
primary: boolean;
|
|
12546
|
-
status: "
|
|
12546
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12547
12547
|
verification_method?: "txt" | undefined;
|
|
12548
12548
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12549
12549
|
domain_metadata?: {
|
|
@@ -12934,7 +12934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12934
12934
|
};
|
|
12935
12935
|
output: {};
|
|
12936
12936
|
outputFormat: string;
|
|
12937
|
-
status:
|
|
12937
|
+
status: 204;
|
|
12938
12938
|
} | {
|
|
12939
12939
|
input: {
|
|
12940
12940
|
header: {
|
|
@@ -12947,7 +12947,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12947
12947
|
};
|
|
12948
12948
|
output: {};
|
|
12949
12949
|
outputFormat: string;
|
|
12950
|
-
status:
|
|
12950
|
+
status: 400;
|
|
12951
12951
|
};
|
|
12952
12952
|
};
|
|
12953
12953
|
} & {
|
|
@@ -12973,7 +12973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12973
12973
|
} & {
|
|
12974
12974
|
json: {
|
|
12975
12975
|
body?: string | undefined;
|
|
12976
|
-
screen?: "password" | "
|
|
12976
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12977
12977
|
branding?: {
|
|
12978
12978
|
colors?: {
|
|
12979
12979
|
primary: string;
|
|
@@ -13217,7 +13217,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13217
13217
|
output: {
|
|
13218
13218
|
id: string;
|
|
13219
13219
|
trigger_id: string;
|
|
13220
|
-
status: "
|
|
13220
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13221
13221
|
results: {
|
|
13222
13222
|
action_name: string;
|
|
13223
13223
|
error: {
|
|
@@ -14388,7 +14388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14388
14388
|
client_id: string;
|
|
14389
14389
|
redirect_url?: string | undefined;
|
|
14390
14390
|
login_hint?: string | undefined;
|
|
14391
|
-
screen_hint?: "
|
|
14391
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14392
14392
|
};
|
|
14393
14393
|
};
|
|
14394
14394
|
output: {};
|
|
@@ -14400,7 +14400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14400
14400
|
client_id: string;
|
|
14401
14401
|
redirect_url?: string | undefined;
|
|
14402
14402
|
login_hint?: string | undefined;
|
|
14403
|
-
screen_hint?: "
|
|
14403
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14404
14404
|
};
|
|
14405
14405
|
};
|
|
14406
14406
|
output: {
|
|
@@ -14477,17 +14477,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14477
14477
|
request_uri?: string | undefined;
|
|
14478
14478
|
};
|
|
14479
14479
|
};
|
|
14480
|
-
output:
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
expires_in: number;
|
|
14484
|
-
id_token?: string | undefined;
|
|
14485
|
-
scope?: string | undefined;
|
|
14486
|
-
state?: string | undefined;
|
|
14487
|
-
refresh_token?: string | undefined;
|
|
14488
|
-
};
|
|
14489
|
-
outputFormat: "json";
|
|
14490
|
-
status: 200;
|
|
14480
|
+
output: {};
|
|
14481
|
+
outputFormat: string;
|
|
14482
|
+
status: 302;
|
|
14491
14483
|
} | {
|
|
14492
14484
|
input: {
|
|
14493
14485
|
query: {
|
|
@@ -14519,9 +14511,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14519
14511
|
request_uri?: string | undefined;
|
|
14520
14512
|
};
|
|
14521
14513
|
};
|
|
14522
|
-
output: {
|
|
14523
|
-
|
|
14524
|
-
|
|
14514
|
+
output: string | {
|
|
14515
|
+
access_token: string;
|
|
14516
|
+
token_type: string;
|
|
14517
|
+
expires_in: number;
|
|
14518
|
+
id_token?: string | undefined;
|
|
14519
|
+
scope?: string | undefined;
|
|
14520
|
+
state?: string | undefined;
|
|
14521
|
+
refresh_token?: string | undefined;
|
|
14522
|
+
};
|
|
14523
|
+
outputFormat: "json";
|
|
14524
|
+
status: 200;
|
|
14525
14525
|
} | {
|
|
14526
14526
|
input: {
|
|
14527
14527
|
query: {
|
|
@@ -14677,21 +14677,22 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14677
14677
|
email: string;
|
|
14678
14678
|
send: "code" | "link";
|
|
14679
14679
|
authParams: {
|
|
14680
|
-
|
|
14681
|
-
|
|
14680
|
+
username?: string | undefined;
|
|
14681
|
+
audience?: string | undefined;
|
|
14682
14682
|
scope?: string | undefined;
|
|
14683
14683
|
state?: string | undefined;
|
|
14684
|
-
prompt?: string | undefined;
|
|
14685
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14686
14684
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14687
|
-
|
|
14685
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14686
|
+
prompt?: string | undefined;
|
|
14687
|
+
act_as?: string | undefined;
|
|
14688
|
+
redirect_uri?: string | undefined;
|
|
14689
|
+
organization?: string | undefined;
|
|
14688
14690
|
nonce?: string | undefined;
|
|
14689
|
-
max_age?: number | undefined;
|
|
14690
|
-
acr_values?: string | undefined;
|
|
14691
14691
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14692
14692
|
code_challenge?: string | undefined;
|
|
14693
|
-
organization?: string | undefined;
|
|
14694
14693
|
ui_locales?: string | undefined;
|
|
14694
|
+
max_age?: number | undefined;
|
|
14695
|
+
acr_values?: string | undefined;
|
|
14695
14696
|
claims?: {
|
|
14696
14697
|
userinfo?: Record<string, {
|
|
14697
14698
|
essential?: boolean | undefined;
|
|
@@ -14704,8 +14705,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14704
14705
|
values?: unknown[] | undefined;
|
|
14705
14706
|
} | null> | undefined;
|
|
14706
14707
|
} | undefined;
|
|
14707
|
-
|
|
14708
|
-
username?: string | undefined;
|
|
14708
|
+
vendor_id?: string | undefined;
|
|
14709
14709
|
};
|
|
14710
14710
|
} | {
|
|
14711
14711
|
client_id: string;
|
|
@@ -14713,21 +14713,22 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14713
14713
|
phone_number: string;
|
|
14714
14714
|
send: "code" | "link";
|
|
14715
14715
|
authParams: {
|
|
14716
|
-
|
|
14717
|
-
|
|
14716
|
+
username?: string | undefined;
|
|
14717
|
+
audience?: string | undefined;
|
|
14718
14718
|
scope?: string | undefined;
|
|
14719
14719
|
state?: string | undefined;
|
|
14720
|
-
prompt?: string | undefined;
|
|
14721
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14722
14720
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14723
|
-
|
|
14721
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14722
|
+
prompt?: string | undefined;
|
|
14723
|
+
act_as?: string | undefined;
|
|
14724
|
+
redirect_uri?: string | undefined;
|
|
14725
|
+
organization?: string | undefined;
|
|
14724
14726
|
nonce?: string | undefined;
|
|
14725
|
-
max_age?: number | undefined;
|
|
14726
|
-
acr_values?: string | undefined;
|
|
14727
14727
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14728
14728
|
code_challenge?: string | undefined;
|
|
14729
|
-
organization?: string | undefined;
|
|
14730
14729
|
ui_locales?: string | undefined;
|
|
14730
|
+
max_age?: number | undefined;
|
|
14731
|
+
acr_values?: string | undefined;
|
|
14731
14732
|
claims?: {
|
|
14732
14733
|
userinfo?: Record<string, {
|
|
14733
14734
|
essential?: boolean | undefined;
|
|
@@ -14740,8 +14741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14740
14741
|
values?: unknown[] | undefined;
|
|
14741
14742
|
} | null> | undefined;
|
|
14742
14743
|
} | undefined;
|
|
14743
|
-
|
|
14744
|
-
username?: string | undefined;
|
|
14744
|
+
vendor_id?: string | undefined;
|
|
14745
14745
|
};
|
|
14746
14746
|
};
|
|
14747
14747
|
};
|
|
@@ -14955,7 +14955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14955
14955
|
client_id: string;
|
|
14956
14956
|
username: string;
|
|
14957
14957
|
otp: string;
|
|
14958
|
-
realm: "
|
|
14958
|
+
realm: "email" | "sms";
|
|
14959
14959
|
} | {
|
|
14960
14960
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14961
14961
|
subject_token: string;
|
|
@@ -15002,7 +15002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15002
15002
|
client_id: string;
|
|
15003
15003
|
username: string;
|
|
15004
15004
|
otp: string;
|
|
15005
|
-
realm: "
|
|
15005
|
+
realm: "email" | "sms";
|
|
15006
15006
|
} | {
|
|
15007
15007
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15008
15008
|
subject_token: string;
|
|
@@ -15054,7 +15054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15054
15054
|
client_id: string;
|
|
15055
15055
|
username: string;
|
|
15056
15056
|
otp: string;
|
|
15057
|
-
realm: "
|
|
15057
|
+
realm: "email" | "sms";
|
|
15058
15058
|
} | {
|
|
15059
15059
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15060
15060
|
subject_token: string;
|
|
@@ -15101,7 +15101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15101
15101
|
client_id: string;
|
|
15102
15102
|
username: string;
|
|
15103
15103
|
otp: string;
|
|
15104
|
-
realm: "
|
|
15104
|
+
realm: "email" | "sms";
|
|
15105
15105
|
} | {
|
|
15106
15106
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15107
15107
|
subject_token: string;
|
|
@@ -15161,7 +15161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15161
15161
|
client_id: string;
|
|
15162
15162
|
username: string;
|
|
15163
15163
|
otp: string;
|
|
15164
|
-
realm: "
|
|
15164
|
+
realm: "email" | "sms";
|
|
15165
15165
|
} | {
|
|
15166
15166
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15167
15167
|
subject_token: string;
|
|
@@ -15208,7 +15208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15208
15208
|
client_id: string;
|
|
15209
15209
|
username: string;
|
|
15210
15210
|
otp: string;
|
|
15211
|
-
realm: "
|
|
15211
|
+
realm: "email" | "sms";
|
|
15212
15212
|
} | {
|
|
15213
15213
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15214
15214
|
subject_token: string;
|
|
@@ -15263,7 +15263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15263
15263
|
client_id: string;
|
|
15264
15264
|
username: string;
|
|
15265
15265
|
otp: string;
|
|
15266
|
-
realm: "
|
|
15266
|
+
realm: "email" | "sms";
|
|
15267
15267
|
} | {
|
|
15268
15268
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15269
15269
|
subject_token: string;
|
|
@@ -15310,7 +15310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15310
15310
|
client_id: string;
|
|
15311
15311
|
username: string;
|
|
15312
15312
|
otp: string;
|
|
15313
|
-
realm: "
|
|
15313
|
+
realm: "email" | "sms";
|
|
15314
15314
|
} | {
|
|
15315
15315
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15316
15316
|
subject_token: string;
|
|
@@ -15329,7 +15329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15329
15329
|
error_description?: string | undefined;
|
|
15330
15330
|
};
|
|
15331
15331
|
outputFormat: "json";
|
|
15332
|
-
status:
|
|
15332
|
+
status: 401;
|
|
15333
15333
|
} | {
|
|
15334
15334
|
input: {
|
|
15335
15335
|
form: {
|
|
@@ -15365,7 +15365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15365
15365
|
client_id: string;
|
|
15366
15366
|
username: string;
|
|
15367
15367
|
otp: string;
|
|
15368
|
-
realm: "
|
|
15368
|
+
realm: "email" | "sms";
|
|
15369
15369
|
} | {
|
|
15370
15370
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15371
15371
|
subject_token: string;
|
|
@@ -15412,7 +15412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15412
15412
|
client_id: string;
|
|
15413
15413
|
username: string;
|
|
15414
15414
|
otp: string;
|
|
15415
|
-
realm: "
|
|
15415
|
+
realm: "email" | "sms";
|
|
15416
15416
|
} | {
|
|
15417
15417
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15418
15418
|
subject_token: string;
|
|
@@ -15431,7 +15431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15431
15431
|
error_description?: string | undefined;
|
|
15432
15432
|
};
|
|
15433
15433
|
outputFormat: "json";
|
|
15434
|
-
status:
|
|
15434
|
+
status: 403;
|
|
15435
15435
|
};
|
|
15436
15436
|
};
|
|
15437
15437
|
}, "/oauth/token"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15630,7 +15630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15630
15630
|
};
|
|
15631
15631
|
output: {};
|
|
15632
15632
|
outputFormat: string;
|
|
15633
|
-
status:
|
|
15633
|
+
status: 200;
|
|
15634
15634
|
} | {
|
|
15635
15635
|
input: {
|
|
15636
15636
|
query: {
|
|
@@ -15644,7 +15644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15644
15644
|
};
|
|
15645
15645
|
output: {};
|
|
15646
15646
|
outputFormat: string;
|
|
15647
|
-
status:
|
|
15647
|
+
status: 302;
|
|
15648
15648
|
} | {
|
|
15649
15649
|
input: {
|
|
15650
15650
|
query: {
|
|
@@ -16632,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16632
16632
|
$get: {
|
|
16633
16633
|
input: {
|
|
16634
16634
|
param: {
|
|
16635
|
-
screen: "signup" | "
|
|
16635
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16636
16636
|
};
|
|
16637
16637
|
} & {
|
|
16638
16638
|
query: {
|
|
@@ -16648,7 +16648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16648
16648
|
} | {
|
|
16649
16649
|
input: {
|
|
16650
16650
|
param: {
|
|
16651
|
-
screen: "signup" | "
|
|
16651
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16652
16652
|
};
|
|
16653
16653
|
} & {
|
|
16654
16654
|
query: {
|
|
@@ -16664,7 +16664,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16664
16664
|
} | {
|
|
16665
16665
|
input: {
|
|
16666
16666
|
param: {
|
|
16667
|
-
screen: "signup" | "
|
|
16667
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16668
16668
|
};
|
|
16669
16669
|
} & {
|
|
16670
16670
|
query: {
|
|
@@ -16684,7 +16684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16684
16684
|
$post: {
|
|
16685
16685
|
input: {
|
|
16686
16686
|
param: {
|
|
16687
|
-
screen: "signup" | "login" | "
|
|
16687
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16688
16688
|
};
|
|
16689
16689
|
} & {
|
|
16690
16690
|
query: {
|
|
@@ -16702,7 +16702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16702
16702
|
} | {
|
|
16703
16703
|
input: {
|
|
16704
16704
|
param: {
|
|
16705
|
-
screen: "signup" | "login" | "
|
|
16705
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16706
16706
|
};
|
|
16707
16707
|
} & {
|
|
16708
16708
|
query: {
|