authhero 5.20.0 → 5.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +17 -17
- package/dist/authhero.d.ts +314 -248
- package/dist/authhero.mjs +105 -66
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +12 -3
- package/dist/types/helpers/client.d.ts +20 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +247 -245
- package/dist/types/provisioning/index.d.ts +2 -0
- package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
- package/dist/types/provisioning/provisioner.d.ts +25 -0
- package/dist/types/routes/auth-api/index.d.ts +30 -30
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +33 -33
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +209 -209
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +27 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +38 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +12 -0
- package/dist/types/utils/jwks.d.ts +4 -4
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./rou
|
|
|
28
28
|
export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
29
29
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
30
30
|
export type { SeedOptions, SeedResult } from "./seed";
|
|
31
|
+
export { NoopTenantProvisioner } from "./provisioning";
|
|
32
|
+
export type { TenantProvisioner, TenantProvisionerContext, } from "./provisioning";
|
|
31
33
|
export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
|
|
32
34
|
export type { ManagementAudienceResolver } from "./middlewares/authentication";
|
|
33
35
|
export { tenantMiddleware } from "./middlewares/tenant";
|
|
@@ -83,7 +85,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
83
85
|
};
|
|
84
86
|
} & {
|
|
85
87
|
json: {
|
|
86
|
-
type: "
|
|
88
|
+
type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
87
89
|
phone_number?: string | undefined;
|
|
88
90
|
totp_secret?: string | undefined;
|
|
89
91
|
credential_id?: string | undefined;
|
|
@@ -223,7 +225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
223
225
|
};
|
|
224
226
|
};
|
|
225
227
|
output: {
|
|
226
|
-
name: "
|
|
228
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
227
229
|
enabled: boolean;
|
|
228
230
|
trial_expired?: boolean | undefined;
|
|
229
231
|
}[];
|
|
@@ -378,7 +380,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
378
380
|
$get: {
|
|
379
381
|
input: {
|
|
380
382
|
param: {
|
|
381
|
-
factor_name: "
|
|
383
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
382
384
|
};
|
|
383
385
|
} & {
|
|
384
386
|
header: {
|
|
@@ -386,7 +388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
386
388
|
};
|
|
387
389
|
};
|
|
388
390
|
output: {
|
|
389
|
-
name: "
|
|
391
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
390
392
|
enabled: boolean;
|
|
391
393
|
trial_expired?: boolean | undefined;
|
|
392
394
|
};
|
|
@@ -399,7 +401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
399
401
|
$put: {
|
|
400
402
|
input: {
|
|
401
403
|
param: {
|
|
402
|
-
factor_name: "
|
|
404
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
405
|
};
|
|
404
406
|
} & {
|
|
405
407
|
header: {
|
|
@@ -411,7 +413,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
411
413
|
};
|
|
412
414
|
};
|
|
413
415
|
output: {
|
|
414
|
-
name: "
|
|
416
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
415
417
|
enabled: boolean;
|
|
416
418
|
trial_expired?: boolean | undefined;
|
|
417
419
|
};
|
|
@@ -1156,9 +1158,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1156
1158
|
invitee: {
|
|
1157
1159
|
email?: string | undefined;
|
|
1158
1160
|
};
|
|
1161
|
+
id?: string | undefined;
|
|
1159
1162
|
app_metadata?: Record<string, any> | undefined;
|
|
1160
1163
|
user_metadata?: Record<string, any> | undefined;
|
|
1161
|
-
id?: string | undefined;
|
|
1162
1164
|
connection_id?: string | undefined;
|
|
1163
1165
|
roles?: string[] | undefined;
|
|
1164
1166
|
ttl_sec?: number | undefined;
|
|
@@ -2587,7 +2589,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2587
2589
|
hint?: string | undefined;
|
|
2588
2590
|
messages?: {
|
|
2589
2591
|
text: string;
|
|
2590
|
-
type: "
|
|
2592
|
+
type: "error" | "success" | "info" | "warning";
|
|
2591
2593
|
id?: number | undefined;
|
|
2592
2594
|
}[] | undefined;
|
|
2593
2595
|
required?: boolean | undefined;
|
|
@@ -2605,7 +2607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2605
2607
|
hint?: string | undefined;
|
|
2606
2608
|
messages?: {
|
|
2607
2609
|
text: string;
|
|
2608
|
-
type: "
|
|
2610
|
+
type: "error" | "success" | "info" | "warning";
|
|
2609
2611
|
id?: number | undefined;
|
|
2610
2612
|
}[] | undefined;
|
|
2611
2613
|
required?: boolean | undefined;
|
|
@@ -2629,7 +2631,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2629
2631
|
hint?: string | undefined;
|
|
2630
2632
|
messages?: {
|
|
2631
2633
|
text: string;
|
|
2632
|
-
type: "
|
|
2634
|
+
type: "error" | "success" | "info" | "warning";
|
|
2633
2635
|
id?: number | undefined;
|
|
2634
2636
|
}[] | undefined;
|
|
2635
2637
|
required?: boolean | undefined;
|
|
@@ -2639,7 +2641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2639
2641
|
value: string;
|
|
2640
2642
|
label: string;
|
|
2641
2643
|
}[] | undefined;
|
|
2642
|
-
display?: "
|
|
2644
|
+
display?: "radio" | "checkbox" | undefined;
|
|
2643
2645
|
multiple?: boolean | undefined;
|
|
2644
2646
|
default_value?: string | string[] | undefined;
|
|
2645
2647
|
} | undefined;
|
|
@@ -2653,7 +2655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2653
2655
|
hint?: string | undefined;
|
|
2654
2656
|
messages?: {
|
|
2655
2657
|
text: string;
|
|
2656
|
-
type: "
|
|
2658
|
+
type: "error" | "success" | "info" | "warning";
|
|
2657
2659
|
id?: number | undefined;
|
|
2658
2660
|
}[] | undefined;
|
|
2659
2661
|
required?: boolean | undefined;
|
|
@@ -2682,7 +2684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2682
2684
|
hint?: string | undefined;
|
|
2683
2685
|
messages?: {
|
|
2684
2686
|
text: string;
|
|
2685
|
-
type: "
|
|
2687
|
+
type: "error" | "success" | "info" | "warning";
|
|
2686
2688
|
id?: number | undefined;
|
|
2687
2689
|
}[] | undefined;
|
|
2688
2690
|
required?: boolean | undefined;
|
|
@@ -2697,7 +2699,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2697
2699
|
hint?: string | undefined;
|
|
2698
2700
|
messages?: {
|
|
2699
2701
|
text: string;
|
|
2700
|
-
type: "
|
|
2702
|
+
type: "error" | "success" | "info" | "warning";
|
|
2701
2703
|
id?: number | undefined;
|
|
2702
2704
|
}[] | undefined;
|
|
2703
2705
|
required?: boolean | undefined;
|
|
@@ -2718,7 +2720,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2718
2720
|
hint?: string | undefined;
|
|
2719
2721
|
messages?: {
|
|
2720
2722
|
text: string;
|
|
2721
|
-
type: "
|
|
2723
|
+
type: "error" | "success" | "info" | "warning";
|
|
2722
2724
|
id?: number | undefined;
|
|
2723
2725
|
}[] | undefined;
|
|
2724
2726
|
required?: boolean | undefined;
|
|
@@ -2743,7 +2745,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2743
2745
|
hint?: string | undefined;
|
|
2744
2746
|
messages?: {
|
|
2745
2747
|
text: string;
|
|
2746
|
-
type: "
|
|
2748
|
+
type: "error" | "success" | "info" | "warning";
|
|
2747
2749
|
id?: number | undefined;
|
|
2748
2750
|
}[] | undefined;
|
|
2749
2751
|
required?: boolean | undefined;
|
|
@@ -2762,7 +2764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2762
2764
|
hint?: string | undefined;
|
|
2763
2765
|
messages?: {
|
|
2764
2766
|
text: string;
|
|
2765
|
-
type: "
|
|
2767
|
+
type: "error" | "success" | "info" | "warning";
|
|
2766
2768
|
id?: number | undefined;
|
|
2767
2769
|
}[] | undefined;
|
|
2768
2770
|
required?: boolean | undefined;
|
|
@@ -2782,7 +2784,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2782
2784
|
hint?: string | undefined;
|
|
2783
2785
|
messages?: {
|
|
2784
2786
|
text: string;
|
|
2785
|
-
type: "
|
|
2787
|
+
type: "error" | "success" | "info" | "warning";
|
|
2786
2788
|
id?: number | undefined;
|
|
2787
2789
|
}[] | undefined;
|
|
2788
2790
|
required?: boolean | undefined;
|
|
@@ -2801,7 +2803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2801
2803
|
hint?: string | undefined;
|
|
2802
2804
|
messages?: {
|
|
2803
2805
|
text: string;
|
|
2804
|
-
type: "
|
|
2806
|
+
type: "error" | "success" | "info" | "warning";
|
|
2805
2807
|
id?: number | undefined;
|
|
2806
2808
|
}[] | undefined;
|
|
2807
2809
|
required?: boolean | undefined;
|
|
@@ -2823,7 +2825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2823
2825
|
hint?: string | undefined;
|
|
2824
2826
|
messages?: {
|
|
2825
2827
|
text: string;
|
|
2826
|
-
type: "
|
|
2828
|
+
type: "error" | "success" | "info" | "warning";
|
|
2827
2829
|
id?: number | undefined;
|
|
2828
2830
|
}[] | undefined;
|
|
2829
2831
|
required?: boolean | undefined;
|
|
@@ -2845,7 +2847,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2845
2847
|
hint?: string | undefined;
|
|
2846
2848
|
messages?: {
|
|
2847
2849
|
text: string;
|
|
2848
|
-
type: "
|
|
2850
|
+
type: "error" | "success" | "info" | "warning";
|
|
2849
2851
|
id?: number | undefined;
|
|
2850
2852
|
}[] | undefined;
|
|
2851
2853
|
required?: boolean | undefined;
|
|
@@ -2864,7 +2866,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2864
2866
|
hint?: string | undefined;
|
|
2865
2867
|
messages?: {
|
|
2866
2868
|
text: string;
|
|
2867
|
-
type: "
|
|
2869
|
+
type: "error" | "success" | "info" | "warning";
|
|
2868
2870
|
id?: number | undefined;
|
|
2869
2871
|
}[] | undefined;
|
|
2870
2872
|
required?: boolean | undefined;
|
|
@@ -2889,7 +2891,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2889
2891
|
hint?: string | undefined;
|
|
2890
2892
|
messages?: {
|
|
2891
2893
|
text: string;
|
|
2892
|
-
type: "
|
|
2894
|
+
type: "error" | "success" | "info" | "warning";
|
|
2893
2895
|
id?: number | undefined;
|
|
2894
2896
|
}[] | undefined;
|
|
2895
2897
|
required?: boolean | undefined;
|
|
@@ -2910,7 +2912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2910
2912
|
hint?: string | undefined;
|
|
2911
2913
|
messages?: {
|
|
2912
2914
|
text: string;
|
|
2913
|
-
type: "
|
|
2915
|
+
type: "error" | "success" | "info" | "warning";
|
|
2914
2916
|
id?: number | undefined;
|
|
2915
2917
|
}[] | undefined;
|
|
2916
2918
|
required?: boolean | undefined;
|
|
@@ -2931,7 +2933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2931
2933
|
hint?: string | undefined;
|
|
2932
2934
|
messages?: {
|
|
2933
2935
|
text: string;
|
|
2934
|
-
type: "
|
|
2936
|
+
type: "error" | "success" | "info" | "warning";
|
|
2935
2937
|
id?: number | undefined;
|
|
2936
2938
|
}[] | undefined;
|
|
2937
2939
|
required?: boolean | undefined;
|
|
@@ -3164,7 +3166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3164
3166
|
hint?: string | undefined;
|
|
3165
3167
|
messages?: {
|
|
3166
3168
|
text: string;
|
|
3167
|
-
type: "
|
|
3169
|
+
type: "error" | "success" | "info" | "warning";
|
|
3168
3170
|
id?: number | undefined;
|
|
3169
3171
|
}[] | undefined;
|
|
3170
3172
|
required?: boolean | undefined;
|
|
@@ -3182,7 +3184,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3182
3184
|
hint?: string | undefined;
|
|
3183
3185
|
messages?: {
|
|
3184
3186
|
text: string;
|
|
3185
|
-
type: "
|
|
3187
|
+
type: "error" | "success" | "info" | "warning";
|
|
3186
3188
|
id?: number | undefined;
|
|
3187
3189
|
}[] | undefined;
|
|
3188
3190
|
required?: boolean | undefined;
|
|
@@ -3206,7 +3208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3206
3208
|
hint?: string | undefined;
|
|
3207
3209
|
messages?: {
|
|
3208
3210
|
text: string;
|
|
3209
|
-
type: "
|
|
3211
|
+
type: "error" | "success" | "info" | "warning";
|
|
3210
3212
|
id?: number | undefined;
|
|
3211
3213
|
}[] | undefined;
|
|
3212
3214
|
required?: boolean | undefined;
|
|
@@ -3216,7 +3218,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3216
3218
|
value: string;
|
|
3217
3219
|
label: string;
|
|
3218
3220
|
}[] | undefined;
|
|
3219
|
-
display?: "
|
|
3221
|
+
display?: "radio" | "checkbox" | undefined;
|
|
3220
3222
|
multiple?: boolean | undefined;
|
|
3221
3223
|
default_value?: string | string[] | undefined;
|
|
3222
3224
|
} | undefined;
|
|
@@ -3230,7 +3232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3230
3232
|
hint?: string | undefined;
|
|
3231
3233
|
messages?: {
|
|
3232
3234
|
text: string;
|
|
3233
|
-
type: "
|
|
3235
|
+
type: "error" | "success" | "info" | "warning";
|
|
3234
3236
|
id?: number | undefined;
|
|
3235
3237
|
}[] | undefined;
|
|
3236
3238
|
required?: boolean | undefined;
|
|
@@ -3259,7 +3261,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3259
3261
|
hint?: string | undefined;
|
|
3260
3262
|
messages?: {
|
|
3261
3263
|
text: string;
|
|
3262
|
-
type: "
|
|
3264
|
+
type: "error" | "success" | "info" | "warning";
|
|
3263
3265
|
id?: number | undefined;
|
|
3264
3266
|
}[] | undefined;
|
|
3265
3267
|
required?: boolean | undefined;
|
|
@@ -3274,7 +3276,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3274
3276
|
hint?: string | undefined;
|
|
3275
3277
|
messages?: {
|
|
3276
3278
|
text: string;
|
|
3277
|
-
type: "
|
|
3279
|
+
type: "error" | "success" | "info" | "warning";
|
|
3278
3280
|
id?: number | undefined;
|
|
3279
3281
|
}[] | undefined;
|
|
3280
3282
|
required?: boolean | undefined;
|
|
@@ -3295,7 +3297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3295
3297
|
hint?: string | undefined;
|
|
3296
3298
|
messages?: {
|
|
3297
3299
|
text: string;
|
|
3298
|
-
type: "
|
|
3300
|
+
type: "error" | "success" | "info" | "warning";
|
|
3299
3301
|
id?: number | undefined;
|
|
3300
3302
|
}[] | undefined;
|
|
3301
3303
|
required?: boolean | undefined;
|
|
@@ -3320,7 +3322,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3320
3322
|
hint?: string | undefined;
|
|
3321
3323
|
messages?: {
|
|
3322
3324
|
text: string;
|
|
3323
|
-
type: "
|
|
3325
|
+
type: "error" | "success" | "info" | "warning";
|
|
3324
3326
|
id?: number | undefined;
|
|
3325
3327
|
}[] | undefined;
|
|
3326
3328
|
required?: boolean | undefined;
|
|
@@ -3339,7 +3341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3339
3341
|
hint?: string | undefined;
|
|
3340
3342
|
messages?: {
|
|
3341
3343
|
text: string;
|
|
3342
|
-
type: "
|
|
3344
|
+
type: "error" | "success" | "info" | "warning";
|
|
3343
3345
|
id?: number | undefined;
|
|
3344
3346
|
}[] | undefined;
|
|
3345
3347
|
required?: boolean | undefined;
|
|
@@ -3359,7 +3361,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3359
3361
|
hint?: string | undefined;
|
|
3360
3362
|
messages?: {
|
|
3361
3363
|
text: string;
|
|
3362
|
-
type: "
|
|
3364
|
+
type: "error" | "success" | "info" | "warning";
|
|
3363
3365
|
id?: number | undefined;
|
|
3364
3366
|
}[] | undefined;
|
|
3365
3367
|
required?: boolean | undefined;
|
|
@@ -3378,7 +3380,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3378
3380
|
hint?: string | undefined;
|
|
3379
3381
|
messages?: {
|
|
3380
3382
|
text: string;
|
|
3381
|
-
type: "
|
|
3383
|
+
type: "error" | "success" | "info" | "warning";
|
|
3382
3384
|
id?: number | undefined;
|
|
3383
3385
|
}[] | undefined;
|
|
3384
3386
|
required?: boolean | undefined;
|
|
@@ -3400,7 +3402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3400
3402
|
hint?: string | undefined;
|
|
3401
3403
|
messages?: {
|
|
3402
3404
|
text: string;
|
|
3403
|
-
type: "
|
|
3405
|
+
type: "error" | "success" | "info" | "warning";
|
|
3404
3406
|
id?: number | undefined;
|
|
3405
3407
|
}[] | undefined;
|
|
3406
3408
|
required?: boolean | undefined;
|
|
@@ -3422,7 +3424,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3422
3424
|
hint?: string | undefined;
|
|
3423
3425
|
messages?: {
|
|
3424
3426
|
text: string;
|
|
3425
|
-
type: "
|
|
3427
|
+
type: "error" | "success" | "info" | "warning";
|
|
3426
3428
|
id?: number | undefined;
|
|
3427
3429
|
}[] | undefined;
|
|
3428
3430
|
required?: boolean | undefined;
|
|
@@ -3441,7 +3443,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3441
3443
|
hint?: string | undefined;
|
|
3442
3444
|
messages?: {
|
|
3443
3445
|
text: string;
|
|
3444
|
-
type: "
|
|
3446
|
+
type: "error" | "success" | "info" | "warning";
|
|
3445
3447
|
id?: number | undefined;
|
|
3446
3448
|
}[] | undefined;
|
|
3447
3449
|
required?: boolean | undefined;
|
|
@@ -3466,7 +3468,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3466
3468
|
hint?: string | undefined;
|
|
3467
3469
|
messages?: {
|
|
3468
3470
|
text: string;
|
|
3469
|
-
type: "
|
|
3471
|
+
type: "error" | "success" | "info" | "warning";
|
|
3470
3472
|
id?: number | undefined;
|
|
3471
3473
|
}[] | undefined;
|
|
3472
3474
|
required?: boolean | undefined;
|
|
@@ -3487,7 +3489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3487
3489
|
hint?: string | undefined;
|
|
3488
3490
|
messages?: {
|
|
3489
3491
|
text: string;
|
|
3490
|
-
type: "
|
|
3492
|
+
type: "error" | "success" | "info" | "warning";
|
|
3491
3493
|
id?: number | undefined;
|
|
3492
3494
|
}[] | undefined;
|
|
3493
3495
|
required?: boolean | undefined;
|
|
@@ -3508,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3508
3510
|
hint?: string | undefined;
|
|
3509
3511
|
messages?: {
|
|
3510
3512
|
text: string;
|
|
3511
|
-
type: "
|
|
3513
|
+
type: "error" | "success" | "info" | "warning";
|
|
3512
3514
|
id?: number | undefined;
|
|
3513
3515
|
}[] | undefined;
|
|
3514
3516
|
required?: boolean | undefined;
|
|
@@ -3756,7 +3758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3756
3758
|
hint?: string | undefined;
|
|
3757
3759
|
messages?: {
|
|
3758
3760
|
text: string;
|
|
3759
|
-
type: "
|
|
3761
|
+
type: "error" | "success" | "info" | "warning";
|
|
3760
3762
|
id?: number | undefined;
|
|
3761
3763
|
}[] | undefined;
|
|
3762
3764
|
required?: boolean | undefined;
|
|
@@ -3774,7 +3776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3774
3776
|
hint?: string | undefined;
|
|
3775
3777
|
messages?: {
|
|
3776
3778
|
text: string;
|
|
3777
|
-
type: "
|
|
3779
|
+
type: "error" | "success" | "info" | "warning";
|
|
3778
3780
|
id?: number | undefined;
|
|
3779
3781
|
}[] | undefined;
|
|
3780
3782
|
required?: boolean | undefined;
|
|
@@ -3798,7 +3800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3798
3800
|
hint?: string | undefined;
|
|
3799
3801
|
messages?: {
|
|
3800
3802
|
text: string;
|
|
3801
|
-
type: "
|
|
3803
|
+
type: "error" | "success" | "info" | "warning";
|
|
3802
3804
|
id?: number | undefined;
|
|
3803
3805
|
}[] | undefined;
|
|
3804
3806
|
required?: boolean | undefined;
|
|
@@ -3808,7 +3810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3808
3810
|
value: string;
|
|
3809
3811
|
label: string;
|
|
3810
3812
|
}[] | undefined;
|
|
3811
|
-
display?: "
|
|
3813
|
+
display?: "radio" | "checkbox" | undefined;
|
|
3812
3814
|
multiple?: boolean | undefined;
|
|
3813
3815
|
default_value?: string | string[] | undefined;
|
|
3814
3816
|
} | undefined;
|
|
@@ -3822,7 +3824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3822
3824
|
hint?: string | undefined;
|
|
3823
3825
|
messages?: {
|
|
3824
3826
|
text: string;
|
|
3825
|
-
type: "
|
|
3827
|
+
type: "error" | "success" | "info" | "warning";
|
|
3826
3828
|
id?: number | undefined;
|
|
3827
3829
|
}[] | undefined;
|
|
3828
3830
|
required?: boolean | undefined;
|
|
@@ -3851,7 +3853,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3851
3853
|
hint?: string | undefined;
|
|
3852
3854
|
messages?: {
|
|
3853
3855
|
text: string;
|
|
3854
|
-
type: "
|
|
3856
|
+
type: "error" | "success" | "info" | "warning";
|
|
3855
3857
|
id?: number | undefined;
|
|
3856
3858
|
}[] | undefined;
|
|
3857
3859
|
required?: boolean | undefined;
|
|
@@ -3866,7 +3868,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3866
3868
|
hint?: string | undefined;
|
|
3867
3869
|
messages?: {
|
|
3868
3870
|
text: string;
|
|
3869
|
-
type: "
|
|
3871
|
+
type: "error" | "success" | "info" | "warning";
|
|
3870
3872
|
id?: number | undefined;
|
|
3871
3873
|
}[] | undefined;
|
|
3872
3874
|
required?: boolean | undefined;
|
|
@@ -3887,7 +3889,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3887
3889
|
hint?: string | undefined;
|
|
3888
3890
|
messages?: {
|
|
3889
3891
|
text: string;
|
|
3890
|
-
type: "
|
|
3892
|
+
type: "error" | "success" | "info" | "warning";
|
|
3891
3893
|
id?: number | undefined;
|
|
3892
3894
|
}[] | undefined;
|
|
3893
3895
|
required?: boolean | undefined;
|
|
@@ -3912,7 +3914,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3912
3914
|
hint?: string | undefined;
|
|
3913
3915
|
messages?: {
|
|
3914
3916
|
text: string;
|
|
3915
|
-
type: "
|
|
3917
|
+
type: "error" | "success" | "info" | "warning";
|
|
3916
3918
|
id?: number | undefined;
|
|
3917
3919
|
}[] | undefined;
|
|
3918
3920
|
required?: boolean | undefined;
|
|
@@ -3931,7 +3933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3931
3933
|
hint?: string | undefined;
|
|
3932
3934
|
messages?: {
|
|
3933
3935
|
text: string;
|
|
3934
|
-
type: "
|
|
3936
|
+
type: "error" | "success" | "info" | "warning";
|
|
3935
3937
|
id?: number | undefined;
|
|
3936
3938
|
}[] | undefined;
|
|
3937
3939
|
required?: boolean | undefined;
|
|
@@ -3951,7 +3953,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3951
3953
|
hint?: string | undefined;
|
|
3952
3954
|
messages?: {
|
|
3953
3955
|
text: string;
|
|
3954
|
-
type: "
|
|
3956
|
+
type: "error" | "success" | "info" | "warning";
|
|
3955
3957
|
id?: number | undefined;
|
|
3956
3958
|
}[] | undefined;
|
|
3957
3959
|
required?: boolean | undefined;
|
|
@@ -3970,7 +3972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3970
3972
|
hint?: string | undefined;
|
|
3971
3973
|
messages?: {
|
|
3972
3974
|
text: string;
|
|
3973
|
-
type: "
|
|
3975
|
+
type: "error" | "success" | "info" | "warning";
|
|
3974
3976
|
id?: number | undefined;
|
|
3975
3977
|
}[] | undefined;
|
|
3976
3978
|
required?: boolean | undefined;
|
|
@@ -3992,7 +3994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3992
3994
|
hint?: string | undefined;
|
|
3993
3995
|
messages?: {
|
|
3994
3996
|
text: string;
|
|
3995
|
-
type: "
|
|
3997
|
+
type: "error" | "success" | "info" | "warning";
|
|
3996
3998
|
id?: number | undefined;
|
|
3997
3999
|
}[] | undefined;
|
|
3998
4000
|
required?: boolean | undefined;
|
|
@@ -4014,7 +4016,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4014
4016
|
hint?: string | undefined;
|
|
4015
4017
|
messages?: {
|
|
4016
4018
|
text: string;
|
|
4017
|
-
type: "
|
|
4019
|
+
type: "error" | "success" | "info" | "warning";
|
|
4018
4020
|
id?: number | undefined;
|
|
4019
4021
|
}[] | undefined;
|
|
4020
4022
|
required?: boolean | undefined;
|
|
@@ -4033,7 +4035,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4033
4035
|
hint?: string | undefined;
|
|
4034
4036
|
messages?: {
|
|
4035
4037
|
text: string;
|
|
4036
|
-
type: "
|
|
4038
|
+
type: "error" | "success" | "info" | "warning";
|
|
4037
4039
|
id?: number | undefined;
|
|
4038
4040
|
}[] | undefined;
|
|
4039
4041
|
required?: boolean | undefined;
|
|
@@ -4058,7 +4060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4058
4060
|
hint?: string | undefined;
|
|
4059
4061
|
messages?: {
|
|
4060
4062
|
text: string;
|
|
4061
|
-
type: "
|
|
4063
|
+
type: "error" | "success" | "info" | "warning";
|
|
4062
4064
|
id?: number | undefined;
|
|
4063
4065
|
}[] | undefined;
|
|
4064
4066
|
required?: boolean | undefined;
|
|
@@ -4079,7 +4081,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4079
4081
|
hint?: string | undefined;
|
|
4080
4082
|
messages?: {
|
|
4081
4083
|
text: string;
|
|
4082
|
-
type: "
|
|
4084
|
+
type: "error" | "success" | "info" | "warning";
|
|
4083
4085
|
id?: number | undefined;
|
|
4084
4086
|
}[] | undefined;
|
|
4085
4087
|
required?: boolean | undefined;
|
|
@@ -4100,7 +4102,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4100
4102
|
hint?: string | undefined;
|
|
4101
4103
|
messages?: {
|
|
4102
4104
|
text: string;
|
|
4103
|
-
type: "
|
|
4105
|
+
type: "error" | "success" | "info" | "warning";
|
|
4104
4106
|
id?: number | undefined;
|
|
4105
4107
|
}[] | undefined;
|
|
4106
4108
|
required?: boolean | undefined;
|
|
@@ -4354,7 +4356,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4354
4356
|
hint?: string | undefined;
|
|
4355
4357
|
messages?: {
|
|
4356
4358
|
text: string;
|
|
4357
|
-
type: "
|
|
4359
|
+
type: "error" | "success" | "info" | "warning";
|
|
4358
4360
|
id?: number | undefined;
|
|
4359
4361
|
}[] | undefined;
|
|
4360
4362
|
required?: boolean | undefined;
|
|
@@ -4372,7 +4374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4372
4374
|
hint?: string | undefined;
|
|
4373
4375
|
messages?: {
|
|
4374
4376
|
text: string;
|
|
4375
|
-
type: "
|
|
4377
|
+
type: "error" | "success" | "info" | "warning";
|
|
4376
4378
|
id?: number | undefined;
|
|
4377
4379
|
}[] | undefined;
|
|
4378
4380
|
required?: boolean | undefined;
|
|
@@ -4396,7 +4398,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4396
4398
|
hint?: string | undefined;
|
|
4397
4399
|
messages?: {
|
|
4398
4400
|
text: string;
|
|
4399
|
-
type: "
|
|
4401
|
+
type: "error" | "success" | "info" | "warning";
|
|
4400
4402
|
id?: number | undefined;
|
|
4401
4403
|
}[] | undefined;
|
|
4402
4404
|
required?: boolean | undefined;
|
|
@@ -4406,7 +4408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4406
4408
|
value: string;
|
|
4407
4409
|
label: string;
|
|
4408
4410
|
}[] | undefined;
|
|
4409
|
-
display?: "
|
|
4411
|
+
display?: "radio" | "checkbox" | undefined;
|
|
4410
4412
|
multiple?: boolean | undefined;
|
|
4411
4413
|
default_value?: string | string[] | undefined;
|
|
4412
4414
|
} | undefined;
|
|
@@ -4420,7 +4422,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4420
4422
|
hint?: string | undefined;
|
|
4421
4423
|
messages?: {
|
|
4422
4424
|
text: string;
|
|
4423
|
-
type: "
|
|
4425
|
+
type: "error" | "success" | "info" | "warning";
|
|
4424
4426
|
id?: number | undefined;
|
|
4425
4427
|
}[] | undefined;
|
|
4426
4428
|
required?: boolean | undefined;
|
|
@@ -4445,7 +4447,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4445
4447
|
hint?: string | undefined;
|
|
4446
4448
|
messages?: {
|
|
4447
4449
|
text: string;
|
|
4448
|
-
type: "
|
|
4450
|
+
type: "error" | "success" | "info" | "warning";
|
|
4449
4451
|
id?: number | undefined;
|
|
4450
4452
|
}[] | undefined;
|
|
4451
4453
|
required?: boolean | undefined;
|
|
@@ -4460,7 +4462,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4460
4462
|
hint?: string | undefined;
|
|
4461
4463
|
messages?: {
|
|
4462
4464
|
text: string;
|
|
4463
|
-
type: "
|
|
4465
|
+
type: "error" | "success" | "info" | "warning";
|
|
4464
4466
|
id?: number | undefined;
|
|
4465
4467
|
}[] | undefined;
|
|
4466
4468
|
required?: boolean | undefined;
|
|
@@ -4481,7 +4483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4481
4483
|
hint?: string | undefined;
|
|
4482
4484
|
messages?: {
|
|
4483
4485
|
text: string;
|
|
4484
|
-
type: "
|
|
4486
|
+
type: "error" | "success" | "info" | "warning";
|
|
4485
4487
|
id?: number | undefined;
|
|
4486
4488
|
}[] | undefined;
|
|
4487
4489
|
required?: boolean | undefined;
|
|
@@ -4506,7 +4508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4506
4508
|
hint?: string | undefined;
|
|
4507
4509
|
messages?: {
|
|
4508
4510
|
text: string;
|
|
4509
|
-
type: "
|
|
4511
|
+
type: "error" | "success" | "info" | "warning";
|
|
4510
4512
|
id?: number | undefined;
|
|
4511
4513
|
}[] | undefined;
|
|
4512
4514
|
required?: boolean | undefined;
|
|
@@ -4525,7 +4527,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4525
4527
|
hint?: string | undefined;
|
|
4526
4528
|
messages?: {
|
|
4527
4529
|
text: string;
|
|
4528
|
-
type: "
|
|
4530
|
+
type: "error" | "success" | "info" | "warning";
|
|
4529
4531
|
id?: number | undefined;
|
|
4530
4532
|
}[] | undefined;
|
|
4531
4533
|
required?: boolean | undefined;
|
|
@@ -4545,7 +4547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4545
4547
|
hint?: string | undefined;
|
|
4546
4548
|
messages?: {
|
|
4547
4549
|
text: string;
|
|
4548
|
-
type: "
|
|
4550
|
+
type: "error" | "success" | "info" | "warning";
|
|
4549
4551
|
id?: number | undefined;
|
|
4550
4552
|
}[] | undefined;
|
|
4551
4553
|
required?: boolean | undefined;
|
|
@@ -4564,7 +4566,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4564
4566
|
hint?: string | undefined;
|
|
4565
4567
|
messages?: {
|
|
4566
4568
|
text: string;
|
|
4567
|
-
type: "
|
|
4569
|
+
type: "error" | "success" | "info" | "warning";
|
|
4568
4570
|
id?: number | undefined;
|
|
4569
4571
|
}[] | undefined;
|
|
4570
4572
|
required?: boolean | undefined;
|
|
@@ -4586,7 +4588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4586
4588
|
hint?: string | undefined;
|
|
4587
4589
|
messages?: {
|
|
4588
4590
|
text: string;
|
|
4589
|
-
type: "
|
|
4591
|
+
type: "error" | "success" | "info" | "warning";
|
|
4590
4592
|
id?: number | undefined;
|
|
4591
4593
|
}[] | undefined;
|
|
4592
4594
|
required?: boolean | undefined;
|
|
@@ -4608,7 +4610,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4608
4610
|
hint?: string | undefined;
|
|
4609
4611
|
messages?: {
|
|
4610
4612
|
text: string;
|
|
4611
|
-
type: "
|
|
4613
|
+
type: "error" | "success" | "info" | "warning";
|
|
4612
4614
|
id?: number | undefined;
|
|
4613
4615
|
}[] | undefined;
|
|
4614
4616
|
required?: boolean | undefined;
|
|
@@ -4627,7 +4629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4627
4629
|
hint?: string | undefined;
|
|
4628
4630
|
messages?: {
|
|
4629
4631
|
text: string;
|
|
4630
|
-
type: "
|
|
4632
|
+
type: "error" | "success" | "info" | "warning";
|
|
4631
4633
|
id?: number | undefined;
|
|
4632
4634
|
}[] | undefined;
|
|
4633
4635
|
required?: boolean | undefined;
|
|
@@ -4652,7 +4654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4652
4654
|
hint?: string | undefined;
|
|
4653
4655
|
messages?: {
|
|
4654
4656
|
text: string;
|
|
4655
|
-
type: "
|
|
4657
|
+
type: "error" | "success" | "info" | "warning";
|
|
4656
4658
|
id?: number | undefined;
|
|
4657
4659
|
}[] | undefined;
|
|
4658
4660
|
required?: boolean | undefined;
|
|
@@ -4673,7 +4675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4673
4675
|
hint?: string | undefined;
|
|
4674
4676
|
messages?: {
|
|
4675
4677
|
text: string;
|
|
4676
|
-
type: "
|
|
4678
|
+
type: "error" | "success" | "info" | "warning";
|
|
4677
4679
|
id?: number | undefined;
|
|
4678
4680
|
}[] | undefined;
|
|
4679
4681
|
required?: boolean | undefined;
|
|
@@ -4694,7 +4696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4694
4696
|
hint?: string | undefined;
|
|
4695
4697
|
messages?: {
|
|
4696
4698
|
text: string;
|
|
4697
|
-
type: "
|
|
4699
|
+
type: "error" | "success" | "info" | "warning";
|
|
4698
4700
|
id?: number | undefined;
|
|
4699
4701
|
}[] | undefined;
|
|
4700
4702
|
required?: boolean | undefined;
|
|
@@ -4925,7 +4927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4925
4927
|
hint?: string | undefined;
|
|
4926
4928
|
messages?: {
|
|
4927
4929
|
text: string;
|
|
4928
|
-
type: "
|
|
4930
|
+
type: "error" | "success" | "info" | "warning";
|
|
4929
4931
|
id?: number | undefined;
|
|
4930
4932
|
}[] | undefined;
|
|
4931
4933
|
required?: boolean | undefined;
|
|
@@ -4943,7 +4945,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4943
4945
|
hint?: string | undefined;
|
|
4944
4946
|
messages?: {
|
|
4945
4947
|
text: string;
|
|
4946
|
-
type: "
|
|
4948
|
+
type: "error" | "success" | "info" | "warning";
|
|
4947
4949
|
id?: number | undefined;
|
|
4948
4950
|
}[] | undefined;
|
|
4949
4951
|
required?: boolean | undefined;
|
|
@@ -4967,7 +4969,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4967
4969
|
hint?: string | undefined;
|
|
4968
4970
|
messages?: {
|
|
4969
4971
|
text: string;
|
|
4970
|
-
type: "
|
|
4972
|
+
type: "error" | "success" | "info" | "warning";
|
|
4971
4973
|
id?: number | undefined;
|
|
4972
4974
|
}[] | undefined;
|
|
4973
4975
|
required?: boolean | undefined;
|
|
@@ -4977,7 +4979,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4977
4979
|
value: string;
|
|
4978
4980
|
label: string;
|
|
4979
4981
|
}[] | undefined;
|
|
4980
|
-
display?: "
|
|
4982
|
+
display?: "radio" | "checkbox" | undefined;
|
|
4981
4983
|
multiple?: boolean | undefined;
|
|
4982
4984
|
default_value?: string | string[] | undefined;
|
|
4983
4985
|
} | undefined;
|
|
@@ -4991,7 +4993,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4991
4993
|
hint?: string | undefined;
|
|
4992
4994
|
messages?: {
|
|
4993
4995
|
text: string;
|
|
4994
|
-
type: "
|
|
4996
|
+
type: "error" | "success" | "info" | "warning";
|
|
4995
4997
|
id?: number | undefined;
|
|
4996
4998
|
}[] | undefined;
|
|
4997
4999
|
required?: boolean | undefined;
|
|
@@ -5020,7 +5022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5020
5022
|
hint?: string | undefined;
|
|
5021
5023
|
messages?: {
|
|
5022
5024
|
text: string;
|
|
5023
|
-
type: "
|
|
5025
|
+
type: "error" | "success" | "info" | "warning";
|
|
5024
5026
|
id?: number | undefined;
|
|
5025
5027
|
}[] | undefined;
|
|
5026
5028
|
required?: boolean | undefined;
|
|
@@ -5035,7 +5037,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5035
5037
|
hint?: string | undefined;
|
|
5036
5038
|
messages?: {
|
|
5037
5039
|
text: string;
|
|
5038
|
-
type: "
|
|
5040
|
+
type: "error" | "success" | "info" | "warning";
|
|
5039
5041
|
id?: number | undefined;
|
|
5040
5042
|
}[] | undefined;
|
|
5041
5043
|
required?: boolean | undefined;
|
|
@@ -5056,7 +5058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5056
5058
|
hint?: string | undefined;
|
|
5057
5059
|
messages?: {
|
|
5058
5060
|
text: string;
|
|
5059
|
-
type: "
|
|
5061
|
+
type: "error" | "success" | "info" | "warning";
|
|
5060
5062
|
id?: number | undefined;
|
|
5061
5063
|
}[] | undefined;
|
|
5062
5064
|
required?: boolean | undefined;
|
|
@@ -5081,7 +5083,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5081
5083
|
hint?: string | undefined;
|
|
5082
5084
|
messages?: {
|
|
5083
5085
|
text: string;
|
|
5084
|
-
type: "
|
|
5086
|
+
type: "error" | "success" | "info" | "warning";
|
|
5085
5087
|
id?: number | undefined;
|
|
5086
5088
|
}[] | undefined;
|
|
5087
5089
|
required?: boolean | undefined;
|
|
@@ -5100,7 +5102,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5100
5102
|
hint?: string | undefined;
|
|
5101
5103
|
messages?: {
|
|
5102
5104
|
text: string;
|
|
5103
|
-
type: "
|
|
5105
|
+
type: "error" | "success" | "info" | "warning";
|
|
5104
5106
|
id?: number | undefined;
|
|
5105
5107
|
}[] | undefined;
|
|
5106
5108
|
required?: boolean | undefined;
|
|
@@ -5120,7 +5122,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5120
5122
|
hint?: string | undefined;
|
|
5121
5123
|
messages?: {
|
|
5122
5124
|
text: string;
|
|
5123
|
-
type: "
|
|
5125
|
+
type: "error" | "success" | "info" | "warning";
|
|
5124
5126
|
id?: number | undefined;
|
|
5125
5127
|
}[] | undefined;
|
|
5126
5128
|
required?: boolean | undefined;
|
|
@@ -5139,7 +5141,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5139
5141
|
hint?: string | undefined;
|
|
5140
5142
|
messages?: {
|
|
5141
5143
|
text: string;
|
|
5142
|
-
type: "
|
|
5144
|
+
type: "error" | "success" | "info" | "warning";
|
|
5143
5145
|
id?: number | undefined;
|
|
5144
5146
|
}[] | undefined;
|
|
5145
5147
|
required?: boolean | undefined;
|
|
@@ -5161,7 +5163,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5161
5163
|
hint?: string | undefined;
|
|
5162
5164
|
messages?: {
|
|
5163
5165
|
text: string;
|
|
5164
|
-
type: "
|
|
5166
|
+
type: "error" | "success" | "info" | "warning";
|
|
5165
5167
|
id?: number | undefined;
|
|
5166
5168
|
}[] | undefined;
|
|
5167
5169
|
required?: boolean | undefined;
|
|
@@ -5183,7 +5185,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5183
5185
|
hint?: string | undefined;
|
|
5184
5186
|
messages?: {
|
|
5185
5187
|
text: string;
|
|
5186
|
-
type: "
|
|
5188
|
+
type: "error" | "success" | "info" | "warning";
|
|
5187
5189
|
id?: number | undefined;
|
|
5188
5190
|
}[] | undefined;
|
|
5189
5191
|
required?: boolean | undefined;
|
|
@@ -5202,7 +5204,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5202
5204
|
hint?: string | undefined;
|
|
5203
5205
|
messages?: {
|
|
5204
5206
|
text: string;
|
|
5205
|
-
type: "
|
|
5207
|
+
type: "error" | "success" | "info" | "warning";
|
|
5206
5208
|
id?: number | undefined;
|
|
5207
5209
|
}[] | undefined;
|
|
5208
5210
|
required?: boolean | undefined;
|
|
@@ -5227,7 +5229,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5227
5229
|
hint?: string | undefined;
|
|
5228
5230
|
messages?: {
|
|
5229
5231
|
text: string;
|
|
5230
|
-
type: "
|
|
5232
|
+
type: "error" | "success" | "info" | "warning";
|
|
5231
5233
|
id?: number | undefined;
|
|
5232
5234
|
}[] | undefined;
|
|
5233
5235
|
required?: boolean | undefined;
|
|
@@ -5248,7 +5250,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5248
5250
|
hint?: string | undefined;
|
|
5249
5251
|
messages?: {
|
|
5250
5252
|
text: string;
|
|
5251
|
-
type: "
|
|
5253
|
+
type: "error" | "success" | "info" | "warning";
|
|
5252
5254
|
id?: number | undefined;
|
|
5253
5255
|
}[] | undefined;
|
|
5254
5256
|
required?: boolean | undefined;
|
|
@@ -5269,7 +5271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5269
5271
|
hint?: string | undefined;
|
|
5270
5272
|
messages?: {
|
|
5271
5273
|
text: string;
|
|
5272
|
-
type: "
|
|
5274
|
+
type: "error" | "success" | "info" | "warning";
|
|
5273
5275
|
id?: number | undefined;
|
|
5274
5276
|
}[] | undefined;
|
|
5275
5277
|
required?: boolean | undefined;
|
|
@@ -5502,7 +5504,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5502
5504
|
hint?: string | undefined;
|
|
5503
5505
|
messages?: {
|
|
5504
5506
|
text: string;
|
|
5505
|
-
type: "
|
|
5507
|
+
type: "error" | "success" | "info" | "warning";
|
|
5506
5508
|
id?: number | undefined;
|
|
5507
5509
|
}[] | undefined;
|
|
5508
5510
|
required?: boolean | undefined;
|
|
@@ -5520,7 +5522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5520
5522
|
hint?: string | undefined;
|
|
5521
5523
|
messages?: {
|
|
5522
5524
|
text: string;
|
|
5523
|
-
type: "
|
|
5525
|
+
type: "error" | "success" | "info" | "warning";
|
|
5524
5526
|
id?: number | undefined;
|
|
5525
5527
|
}[] | undefined;
|
|
5526
5528
|
required?: boolean | undefined;
|
|
@@ -5544,7 +5546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5544
5546
|
hint?: string | undefined;
|
|
5545
5547
|
messages?: {
|
|
5546
5548
|
text: string;
|
|
5547
|
-
type: "
|
|
5549
|
+
type: "error" | "success" | "info" | "warning";
|
|
5548
5550
|
id?: number | undefined;
|
|
5549
5551
|
}[] | undefined;
|
|
5550
5552
|
required?: boolean | undefined;
|
|
@@ -5554,7 +5556,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5554
5556
|
value: string;
|
|
5555
5557
|
label: string;
|
|
5556
5558
|
}[] | undefined;
|
|
5557
|
-
display?: "
|
|
5559
|
+
display?: "radio" | "checkbox" | undefined;
|
|
5558
5560
|
multiple?: boolean | undefined;
|
|
5559
5561
|
default_value?: string | string[] | undefined;
|
|
5560
5562
|
} | undefined;
|
|
@@ -5568,7 +5570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5568
5570
|
hint?: string | undefined;
|
|
5569
5571
|
messages?: {
|
|
5570
5572
|
text: string;
|
|
5571
|
-
type: "
|
|
5573
|
+
type: "error" | "success" | "info" | "warning";
|
|
5572
5574
|
id?: number | undefined;
|
|
5573
5575
|
}[] | undefined;
|
|
5574
5576
|
required?: boolean | undefined;
|
|
@@ -5593,7 +5595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5593
5595
|
hint?: string | undefined;
|
|
5594
5596
|
messages?: {
|
|
5595
5597
|
text: string;
|
|
5596
|
-
type: "
|
|
5598
|
+
type: "error" | "success" | "info" | "warning";
|
|
5597
5599
|
id?: number | undefined;
|
|
5598
5600
|
}[] | undefined;
|
|
5599
5601
|
required?: boolean | undefined;
|
|
@@ -5608,7 +5610,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5608
5610
|
hint?: string | undefined;
|
|
5609
5611
|
messages?: {
|
|
5610
5612
|
text: string;
|
|
5611
|
-
type: "
|
|
5613
|
+
type: "error" | "success" | "info" | "warning";
|
|
5612
5614
|
id?: number | undefined;
|
|
5613
5615
|
}[] | undefined;
|
|
5614
5616
|
required?: boolean | undefined;
|
|
@@ -5629,7 +5631,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5629
5631
|
hint?: string | undefined;
|
|
5630
5632
|
messages?: {
|
|
5631
5633
|
text: string;
|
|
5632
|
-
type: "
|
|
5634
|
+
type: "error" | "success" | "info" | "warning";
|
|
5633
5635
|
id?: number | undefined;
|
|
5634
5636
|
}[] | undefined;
|
|
5635
5637
|
required?: boolean | undefined;
|
|
@@ -5654,7 +5656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5654
5656
|
hint?: string | undefined;
|
|
5655
5657
|
messages?: {
|
|
5656
5658
|
text: string;
|
|
5657
|
-
type: "
|
|
5659
|
+
type: "error" | "success" | "info" | "warning";
|
|
5658
5660
|
id?: number | undefined;
|
|
5659
5661
|
}[] | undefined;
|
|
5660
5662
|
required?: boolean | undefined;
|
|
@@ -5673,7 +5675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5673
5675
|
hint?: string | undefined;
|
|
5674
5676
|
messages?: {
|
|
5675
5677
|
text: string;
|
|
5676
|
-
type: "
|
|
5678
|
+
type: "error" | "success" | "info" | "warning";
|
|
5677
5679
|
id?: number | undefined;
|
|
5678
5680
|
}[] | undefined;
|
|
5679
5681
|
required?: boolean | undefined;
|
|
@@ -5693,7 +5695,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5693
5695
|
hint?: string | undefined;
|
|
5694
5696
|
messages?: {
|
|
5695
5697
|
text: string;
|
|
5696
|
-
type: "
|
|
5698
|
+
type: "error" | "success" | "info" | "warning";
|
|
5697
5699
|
id?: number | undefined;
|
|
5698
5700
|
}[] | undefined;
|
|
5699
5701
|
required?: boolean | undefined;
|
|
@@ -5712,7 +5714,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5712
5714
|
hint?: string | undefined;
|
|
5713
5715
|
messages?: {
|
|
5714
5716
|
text: string;
|
|
5715
|
-
type: "
|
|
5717
|
+
type: "error" | "success" | "info" | "warning";
|
|
5716
5718
|
id?: number | undefined;
|
|
5717
5719
|
}[] | undefined;
|
|
5718
5720
|
required?: boolean | undefined;
|
|
@@ -5734,7 +5736,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5734
5736
|
hint?: string | undefined;
|
|
5735
5737
|
messages?: {
|
|
5736
5738
|
text: string;
|
|
5737
|
-
type: "
|
|
5739
|
+
type: "error" | "success" | "info" | "warning";
|
|
5738
5740
|
id?: number | undefined;
|
|
5739
5741
|
}[] | undefined;
|
|
5740
5742
|
required?: boolean | undefined;
|
|
@@ -5756,7 +5758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5756
5758
|
hint?: string | undefined;
|
|
5757
5759
|
messages?: {
|
|
5758
5760
|
text: string;
|
|
5759
|
-
type: "
|
|
5761
|
+
type: "error" | "success" | "info" | "warning";
|
|
5760
5762
|
id?: number | undefined;
|
|
5761
5763
|
}[] | undefined;
|
|
5762
5764
|
required?: boolean | undefined;
|
|
@@ -5775,7 +5777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5775
5777
|
hint?: string | undefined;
|
|
5776
5778
|
messages?: {
|
|
5777
5779
|
text: string;
|
|
5778
|
-
type: "
|
|
5780
|
+
type: "error" | "success" | "info" | "warning";
|
|
5779
5781
|
id?: number | undefined;
|
|
5780
5782
|
}[] | undefined;
|
|
5781
5783
|
required?: boolean | undefined;
|
|
@@ -5800,7 +5802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5800
5802
|
hint?: string | undefined;
|
|
5801
5803
|
messages?: {
|
|
5802
5804
|
text: string;
|
|
5803
|
-
type: "
|
|
5805
|
+
type: "error" | "success" | "info" | "warning";
|
|
5804
5806
|
id?: number | undefined;
|
|
5805
5807
|
}[] | undefined;
|
|
5806
5808
|
required?: boolean | undefined;
|
|
@@ -5821,7 +5823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5821
5823
|
hint?: string | undefined;
|
|
5822
5824
|
messages?: {
|
|
5823
5825
|
text: string;
|
|
5824
|
-
type: "
|
|
5826
|
+
type: "error" | "success" | "info" | "warning";
|
|
5825
5827
|
id?: number | undefined;
|
|
5826
5828
|
}[] | undefined;
|
|
5827
5829
|
required?: boolean | undefined;
|
|
@@ -5842,7 +5844,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5842
5844
|
hint?: string | undefined;
|
|
5843
5845
|
messages?: {
|
|
5844
5846
|
text: string;
|
|
5845
|
-
type: "
|
|
5847
|
+
type: "error" | "success" | "info" | "warning";
|
|
5846
5848
|
id?: number | undefined;
|
|
5847
5849
|
}[] | undefined;
|
|
5848
5850
|
required?: boolean | undefined;
|
|
@@ -6073,7 +6075,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6073
6075
|
hint?: string | undefined;
|
|
6074
6076
|
messages?: {
|
|
6075
6077
|
text: string;
|
|
6076
|
-
type: "
|
|
6078
|
+
type: "error" | "success" | "info" | "warning";
|
|
6077
6079
|
id?: number | undefined;
|
|
6078
6080
|
}[] | undefined;
|
|
6079
6081
|
required?: boolean | undefined;
|
|
@@ -6091,7 +6093,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6091
6093
|
hint?: string | undefined;
|
|
6092
6094
|
messages?: {
|
|
6093
6095
|
text: string;
|
|
6094
|
-
type: "
|
|
6096
|
+
type: "error" | "success" | "info" | "warning";
|
|
6095
6097
|
id?: number | undefined;
|
|
6096
6098
|
}[] | undefined;
|
|
6097
6099
|
required?: boolean | undefined;
|
|
@@ -6115,7 +6117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6115
6117
|
hint?: string | undefined;
|
|
6116
6118
|
messages?: {
|
|
6117
6119
|
text: string;
|
|
6118
|
-
type: "
|
|
6120
|
+
type: "error" | "success" | "info" | "warning";
|
|
6119
6121
|
id?: number | undefined;
|
|
6120
6122
|
}[] | undefined;
|
|
6121
6123
|
required?: boolean | undefined;
|
|
@@ -6125,7 +6127,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6125
6127
|
value: string;
|
|
6126
6128
|
label: string;
|
|
6127
6129
|
}[] | undefined;
|
|
6128
|
-
display?: "
|
|
6130
|
+
display?: "radio" | "checkbox" | undefined;
|
|
6129
6131
|
multiple?: boolean | undefined;
|
|
6130
6132
|
default_value?: string | string[] | undefined;
|
|
6131
6133
|
} | undefined;
|
|
@@ -6139,7 +6141,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6139
6141
|
hint?: string | undefined;
|
|
6140
6142
|
messages?: {
|
|
6141
6143
|
text: string;
|
|
6142
|
-
type: "
|
|
6144
|
+
type: "error" | "success" | "info" | "warning";
|
|
6143
6145
|
id?: number | undefined;
|
|
6144
6146
|
}[] | undefined;
|
|
6145
6147
|
required?: boolean | undefined;
|
|
@@ -6168,7 +6170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6168
6170
|
hint?: string | undefined;
|
|
6169
6171
|
messages?: {
|
|
6170
6172
|
text: string;
|
|
6171
|
-
type: "
|
|
6173
|
+
type: "error" | "success" | "info" | "warning";
|
|
6172
6174
|
id?: number | undefined;
|
|
6173
6175
|
}[] | undefined;
|
|
6174
6176
|
required?: boolean | undefined;
|
|
@@ -6183,7 +6185,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6183
6185
|
hint?: string | undefined;
|
|
6184
6186
|
messages?: {
|
|
6185
6187
|
text: string;
|
|
6186
|
-
type: "
|
|
6188
|
+
type: "error" | "success" | "info" | "warning";
|
|
6187
6189
|
id?: number | undefined;
|
|
6188
6190
|
}[] | undefined;
|
|
6189
6191
|
required?: boolean | undefined;
|
|
@@ -6204,7 +6206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6204
6206
|
hint?: string | undefined;
|
|
6205
6207
|
messages?: {
|
|
6206
6208
|
text: string;
|
|
6207
|
-
type: "
|
|
6209
|
+
type: "error" | "success" | "info" | "warning";
|
|
6208
6210
|
id?: number | undefined;
|
|
6209
6211
|
}[] | undefined;
|
|
6210
6212
|
required?: boolean | undefined;
|
|
@@ -6229,7 +6231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6229
6231
|
hint?: string | undefined;
|
|
6230
6232
|
messages?: {
|
|
6231
6233
|
text: string;
|
|
6232
|
-
type: "
|
|
6234
|
+
type: "error" | "success" | "info" | "warning";
|
|
6233
6235
|
id?: number | undefined;
|
|
6234
6236
|
}[] | undefined;
|
|
6235
6237
|
required?: boolean | undefined;
|
|
@@ -6248,7 +6250,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6248
6250
|
hint?: string | undefined;
|
|
6249
6251
|
messages?: {
|
|
6250
6252
|
text: string;
|
|
6251
|
-
type: "
|
|
6253
|
+
type: "error" | "success" | "info" | "warning";
|
|
6252
6254
|
id?: number | undefined;
|
|
6253
6255
|
}[] | undefined;
|
|
6254
6256
|
required?: boolean | undefined;
|
|
@@ -6268,7 +6270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6268
6270
|
hint?: string | undefined;
|
|
6269
6271
|
messages?: {
|
|
6270
6272
|
text: string;
|
|
6271
|
-
type: "
|
|
6273
|
+
type: "error" | "success" | "info" | "warning";
|
|
6272
6274
|
id?: number | undefined;
|
|
6273
6275
|
}[] | undefined;
|
|
6274
6276
|
required?: boolean | undefined;
|
|
@@ -6287,7 +6289,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6287
6289
|
hint?: string | undefined;
|
|
6288
6290
|
messages?: {
|
|
6289
6291
|
text: string;
|
|
6290
|
-
type: "
|
|
6292
|
+
type: "error" | "success" | "info" | "warning";
|
|
6291
6293
|
id?: number | undefined;
|
|
6292
6294
|
}[] | undefined;
|
|
6293
6295
|
required?: boolean | undefined;
|
|
@@ -6309,7 +6311,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6309
6311
|
hint?: string | undefined;
|
|
6310
6312
|
messages?: {
|
|
6311
6313
|
text: string;
|
|
6312
|
-
type: "
|
|
6314
|
+
type: "error" | "success" | "info" | "warning";
|
|
6313
6315
|
id?: number | undefined;
|
|
6314
6316
|
}[] | undefined;
|
|
6315
6317
|
required?: boolean | undefined;
|
|
@@ -6331,7 +6333,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6331
6333
|
hint?: string | undefined;
|
|
6332
6334
|
messages?: {
|
|
6333
6335
|
text: string;
|
|
6334
|
-
type: "
|
|
6336
|
+
type: "error" | "success" | "info" | "warning";
|
|
6335
6337
|
id?: number | undefined;
|
|
6336
6338
|
}[] | undefined;
|
|
6337
6339
|
required?: boolean | undefined;
|
|
@@ -6350,7 +6352,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6350
6352
|
hint?: string | undefined;
|
|
6351
6353
|
messages?: {
|
|
6352
6354
|
text: string;
|
|
6353
|
-
type: "
|
|
6355
|
+
type: "error" | "success" | "info" | "warning";
|
|
6354
6356
|
id?: number | undefined;
|
|
6355
6357
|
}[] | undefined;
|
|
6356
6358
|
required?: boolean | undefined;
|
|
@@ -6375,7 +6377,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6375
6377
|
hint?: string | undefined;
|
|
6376
6378
|
messages?: {
|
|
6377
6379
|
text: string;
|
|
6378
|
-
type: "
|
|
6380
|
+
type: "error" | "success" | "info" | "warning";
|
|
6379
6381
|
id?: number | undefined;
|
|
6380
6382
|
}[] | undefined;
|
|
6381
6383
|
required?: boolean | undefined;
|
|
@@ -6396,7 +6398,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6396
6398
|
hint?: string | undefined;
|
|
6397
6399
|
messages?: {
|
|
6398
6400
|
text: string;
|
|
6399
|
-
type: "
|
|
6401
|
+
type: "error" | "success" | "info" | "warning";
|
|
6400
6402
|
id?: number | undefined;
|
|
6401
6403
|
}[] | undefined;
|
|
6402
6404
|
required?: boolean | undefined;
|
|
@@ -6417,7 +6419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6417
6419
|
hint?: string | undefined;
|
|
6418
6420
|
messages?: {
|
|
6419
6421
|
text: string;
|
|
6420
|
-
type: "
|
|
6422
|
+
type: "error" | "success" | "info" | "warning";
|
|
6421
6423
|
id?: number | undefined;
|
|
6422
6424
|
}[] | undefined;
|
|
6423
6425
|
required?: boolean | undefined;
|
|
@@ -6647,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6647
6649
|
};
|
|
6648
6650
|
};
|
|
6649
6651
|
output: {
|
|
6650
|
-
prompt: "mfa" | "organizations" | "
|
|
6652
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6651
6653
|
language: string;
|
|
6652
6654
|
}[];
|
|
6653
6655
|
outputFormat: "json";
|
|
@@ -6685,7 +6687,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6685
6687
|
$get: {
|
|
6686
6688
|
input: {
|
|
6687
6689
|
param: {
|
|
6688
|
-
prompt: "mfa" | "organizations" | "
|
|
6690
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6689
6691
|
language: string;
|
|
6690
6692
|
};
|
|
6691
6693
|
} & {
|
|
@@ -6707,7 +6709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6707
6709
|
$put: {
|
|
6708
6710
|
input: {
|
|
6709
6711
|
param: {
|
|
6710
|
-
prompt: "mfa" | "organizations" | "
|
|
6712
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6711
6713
|
language: string;
|
|
6712
6714
|
};
|
|
6713
6715
|
} & {
|
|
@@ -6731,7 +6733,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6731
6733
|
$delete: {
|
|
6732
6734
|
input: {
|
|
6733
6735
|
param: {
|
|
6734
|
-
prompt: "mfa" | "organizations" | "
|
|
6736
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6735
6737
|
language: string;
|
|
6736
6738
|
};
|
|
6737
6739
|
} & {
|
|
@@ -7593,7 +7595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7593
7595
|
};
|
|
7594
7596
|
} | {
|
|
7595
7597
|
mode: "inline";
|
|
7596
|
-
status: "
|
|
7598
|
+
status: "error" | "success";
|
|
7597
7599
|
connection_id: string;
|
|
7598
7600
|
connection_name: string;
|
|
7599
7601
|
strategy: string;
|
|
@@ -7629,7 +7631,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7629
7631
|
tenant_id: string;
|
|
7630
7632
|
created_at: string;
|
|
7631
7633
|
updated_at: string;
|
|
7632
|
-
deploymentStatus: "
|
|
7634
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7633
7635
|
secrets?: {
|
|
7634
7636
|
[x: string]: string;
|
|
7635
7637
|
} | undefined;
|
|
@@ -7719,7 +7721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7719
7721
|
tenant_id: string;
|
|
7720
7722
|
created_at: string;
|
|
7721
7723
|
updated_at: string;
|
|
7722
|
-
deploymentStatus: "
|
|
7724
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7723
7725
|
secrets?: {
|
|
7724
7726
|
[x: string]: string;
|
|
7725
7727
|
} | undefined;
|
|
@@ -8480,7 +8482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8480
8482
|
created_at: string;
|
|
8481
8483
|
updated_at: string;
|
|
8482
8484
|
name: string;
|
|
8483
|
-
provider: "auth0" | "
|
|
8485
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8484
8486
|
connection: string;
|
|
8485
8487
|
enabled: boolean;
|
|
8486
8488
|
credentials: {
|
|
@@ -8512,7 +8514,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8512
8514
|
created_at: string;
|
|
8513
8515
|
updated_at: string;
|
|
8514
8516
|
name: string;
|
|
8515
|
-
provider: "auth0" | "
|
|
8517
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8516
8518
|
connection: string;
|
|
8517
8519
|
enabled: boolean;
|
|
8518
8520
|
credentials: {
|
|
@@ -8538,7 +8540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8538
8540
|
} & {
|
|
8539
8541
|
json: {
|
|
8540
8542
|
name: string;
|
|
8541
|
-
provider: "auth0" | "
|
|
8543
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8542
8544
|
connection: string;
|
|
8543
8545
|
credentials: {
|
|
8544
8546
|
domain: string;
|
|
@@ -8555,7 +8557,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8555
8557
|
created_at: string;
|
|
8556
8558
|
updated_at: string;
|
|
8557
8559
|
name: string;
|
|
8558
|
-
provider: "auth0" | "
|
|
8560
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8559
8561
|
connection: string;
|
|
8560
8562
|
enabled: boolean;
|
|
8561
8563
|
credentials: {
|
|
@@ -8586,7 +8588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8586
8588
|
json: {
|
|
8587
8589
|
id?: string | undefined;
|
|
8588
8590
|
name?: string | undefined;
|
|
8589
|
-
provider?: "auth0" | "
|
|
8591
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8590
8592
|
connection?: string | undefined;
|
|
8591
8593
|
enabled?: boolean | undefined;
|
|
8592
8594
|
credentials?: {
|
|
@@ -8602,7 +8604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8602
8604
|
created_at: string;
|
|
8603
8605
|
updated_at: string;
|
|
8604
8606
|
name: string;
|
|
8605
|
-
provider: "auth0" | "
|
|
8607
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8606
8608
|
connection: string;
|
|
8607
8609
|
enabled: boolean;
|
|
8608
8610
|
credentials: {
|
|
@@ -8820,7 +8822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8820
8822
|
};
|
|
8821
8823
|
};
|
|
8822
8824
|
output: {
|
|
8823
|
-
type: "
|
|
8825
|
+
type: "fn" | "i" | "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" | "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";
|
|
8824
8826
|
date: string;
|
|
8825
8827
|
isMobile: boolean;
|
|
8826
8828
|
log_id: string;
|
|
@@ -8859,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8859
8861
|
limit: number;
|
|
8860
8862
|
length: number;
|
|
8861
8863
|
logs: {
|
|
8862
|
-
type: "
|
|
8864
|
+
type: "fn" | "i" | "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" | "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";
|
|
8863
8865
|
date: string;
|
|
8864
8866
|
isMobile: boolean;
|
|
8865
8867
|
log_id: string;
|
|
@@ -8913,7 +8915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8913
8915
|
};
|
|
8914
8916
|
};
|
|
8915
8917
|
output: {
|
|
8916
|
-
type: "
|
|
8918
|
+
type: "fn" | "i" | "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" | "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";
|
|
8917
8919
|
date: string;
|
|
8918
8920
|
isMobile: boolean;
|
|
8919
8921
|
log_id: string;
|
|
@@ -9068,7 +9070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9068
9070
|
audience?: string | undefined;
|
|
9069
9071
|
client_id?: string | undefined;
|
|
9070
9072
|
allow_any_organization?: string | undefined;
|
|
9071
|
-
subject_type?: "
|
|
9073
|
+
subject_type?: "client" | "user" | undefined;
|
|
9072
9074
|
};
|
|
9073
9075
|
} & {
|
|
9074
9076
|
header: {
|
|
@@ -9083,7 +9085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9083
9085
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9084
9086
|
allow_any_organization?: boolean | undefined;
|
|
9085
9087
|
is_system?: boolean | undefined;
|
|
9086
|
-
subject_type?: "
|
|
9088
|
+
subject_type?: "client" | "user" | undefined;
|
|
9087
9089
|
authorization_details_types?: string[] | undefined;
|
|
9088
9090
|
created_at?: string | undefined;
|
|
9089
9091
|
updated_at?: string | undefined;
|
|
@@ -9099,7 +9101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9099
9101
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9100
9102
|
allow_any_organization?: boolean | undefined;
|
|
9101
9103
|
is_system?: boolean | undefined;
|
|
9102
|
-
subject_type?: "
|
|
9104
|
+
subject_type?: "client" | "user" | undefined;
|
|
9103
9105
|
authorization_details_types?: string[] | undefined;
|
|
9104
9106
|
created_at?: string | undefined;
|
|
9105
9107
|
updated_at?: string | undefined;
|
|
@@ -9130,7 +9132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9130
9132
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9131
9133
|
allow_any_organization?: boolean | undefined;
|
|
9132
9134
|
is_system?: boolean | undefined;
|
|
9133
|
-
subject_type?: "
|
|
9135
|
+
subject_type?: "client" | "user" | undefined;
|
|
9134
9136
|
authorization_details_types?: string[] | undefined;
|
|
9135
9137
|
created_at?: string | undefined;
|
|
9136
9138
|
updated_at?: string | undefined;
|
|
@@ -9175,7 +9177,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9175
9177
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9176
9178
|
allow_any_organization?: boolean | undefined;
|
|
9177
9179
|
is_system?: boolean | undefined;
|
|
9178
|
-
subject_type?: "
|
|
9180
|
+
subject_type?: "client" | "user" | undefined;
|
|
9179
9181
|
authorization_details_types?: string[] | undefined;
|
|
9180
9182
|
};
|
|
9181
9183
|
};
|
|
@@ -9187,7 +9189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9187
9189
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9188
9190
|
allow_any_organization?: boolean | undefined;
|
|
9189
9191
|
is_system?: boolean | undefined;
|
|
9190
|
-
subject_type?: "
|
|
9192
|
+
subject_type?: "client" | "user" | undefined;
|
|
9191
9193
|
authorization_details_types?: string[] | undefined;
|
|
9192
9194
|
created_at?: string | undefined;
|
|
9193
9195
|
updated_at?: string | undefined;
|
|
@@ -9211,7 +9213,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9211
9213
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9212
9214
|
allow_any_organization?: boolean | undefined;
|
|
9213
9215
|
is_system?: boolean | undefined;
|
|
9214
|
-
subject_type?: "
|
|
9216
|
+
subject_type?: "client" | "user" | undefined;
|
|
9215
9217
|
authorization_details_types?: string[] | undefined;
|
|
9216
9218
|
};
|
|
9217
9219
|
};
|
|
@@ -9223,7 +9225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9223
9225
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9224
9226
|
allow_any_organization?: boolean | undefined;
|
|
9225
9227
|
is_system?: boolean | undefined;
|
|
9226
|
-
subject_type?: "
|
|
9228
|
+
subject_type?: "client" | "user" | undefined;
|
|
9227
9229
|
authorization_details_types?: string[] | undefined;
|
|
9228
9230
|
created_at?: string | undefined;
|
|
9229
9231
|
updated_at?: string | undefined;
|
|
@@ -9301,7 +9303,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9301
9303
|
addons?: {
|
|
9302
9304
|
[x: string]: any;
|
|
9303
9305
|
} | undefined;
|
|
9304
|
-
token_endpoint_auth_method?: "
|
|
9306
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9305
9307
|
client_metadata?: {
|
|
9306
9308
|
[x: string]: string;
|
|
9307
9309
|
} | undefined;
|
|
@@ -9397,7 +9399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9397
9399
|
addons?: {
|
|
9398
9400
|
[x: string]: any;
|
|
9399
9401
|
} | undefined;
|
|
9400
|
-
token_endpoint_auth_method?: "
|
|
9402
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9401
9403
|
client_metadata?: {
|
|
9402
9404
|
[x: string]: string;
|
|
9403
9405
|
} | undefined;
|
|
@@ -9508,7 +9510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9508
9510
|
addons?: {
|
|
9509
9511
|
[x: string]: any;
|
|
9510
9512
|
} | undefined;
|
|
9511
|
-
token_endpoint_auth_method?: "
|
|
9513
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9512
9514
|
client_metadata?: {
|
|
9513
9515
|
[x: string]: string;
|
|
9514
9516
|
} | undefined;
|
|
@@ -9618,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9618
9620
|
custom_login_page_preview?: string | undefined;
|
|
9619
9621
|
form_template?: string | undefined;
|
|
9620
9622
|
addons?: Record<string, any> | undefined;
|
|
9621
|
-
token_endpoint_auth_method?: "
|
|
9623
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9622
9624
|
client_metadata?: Record<string, string> | undefined;
|
|
9623
9625
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9624
9626
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9698,7 +9700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9698
9700
|
addons?: {
|
|
9699
9701
|
[x: string]: any;
|
|
9700
9702
|
} | undefined;
|
|
9701
|
-
token_endpoint_auth_method?: "
|
|
9703
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9702
9704
|
client_metadata?: {
|
|
9703
9705
|
[x: string]: string;
|
|
9704
9706
|
} | undefined;
|
|
@@ -9787,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9787
9789
|
custom_login_page_preview?: string | undefined;
|
|
9788
9790
|
form_template?: string | undefined;
|
|
9789
9791
|
addons?: Record<string, any> | undefined;
|
|
9790
|
-
token_endpoint_auth_method?: "
|
|
9792
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9791
9793
|
client_metadata?: Record<string, string> | undefined;
|
|
9792
9794
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9793
9795
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9867,7 +9869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9867
9869
|
addons?: {
|
|
9868
9870
|
[x: string]: any;
|
|
9869
9871
|
} | undefined;
|
|
9870
|
-
token_endpoint_auth_method?: "
|
|
9872
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9871
9873
|
client_metadata?: {
|
|
9872
9874
|
[x: string]: string;
|
|
9873
9875
|
} | undefined;
|
|
@@ -11131,7 +11133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11131
11133
|
};
|
|
11132
11134
|
};
|
|
11133
11135
|
output: {
|
|
11134
|
-
type: "
|
|
11136
|
+
type: "fn" | "i" | "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" | "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";
|
|
11135
11137
|
date: string;
|
|
11136
11138
|
isMobile: boolean;
|
|
11137
11139
|
log_id: string;
|
|
@@ -11170,7 +11172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11170
11172
|
limit: number;
|
|
11171
11173
|
length: number;
|
|
11172
11174
|
logs: {
|
|
11173
|
-
type: "
|
|
11175
|
+
type: "fn" | "i" | "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" | "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";
|
|
11174
11176
|
date: string;
|
|
11175
11177
|
isMobile: boolean;
|
|
11176
11178
|
log_id: string;
|
|
@@ -11485,7 +11487,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11485
11487
|
};
|
|
11486
11488
|
} & {
|
|
11487
11489
|
json: {
|
|
11488
|
-
template: "
|
|
11490
|
+
template: "change_password" | "verify_email" | "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";
|
|
11489
11491
|
body: string;
|
|
11490
11492
|
from: string;
|
|
11491
11493
|
subject: string;
|
|
@@ -11496,19 +11498,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11496
11498
|
enabled?: boolean | undefined;
|
|
11497
11499
|
};
|
|
11498
11500
|
};
|
|
11499
|
-
output: {
|
|
11500
|
-
|
|
11501
|
-
|
|
11502
|
-
from: string;
|
|
11503
|
-
subject: string;
|
|
11504
|
-
syntax: "liquid";
|
|
11505
|
-
includeEmailInRedirect: boolean;
|
|
11506
|
-
enabled: boolean;
|
|
11507
|
-
resultUrl?: string | undefined;
|
|
11508
|
-
urlLifetimeInSeconds?: number | undefined;
|
|
11509
|
-
};
|
|
11510
|
-
outputFormat: "json";
|
|
11511
|
-
status: 201;
|
|
11501
|
+
output: {};
|
|
11502
|
+
outputFormat: string;
|
|
11503
|
+
status: 409;
|
|
11512
11504
|
} | {
|
|
11513
11505
|
input: {
|
|
11514
11506
|
header: {
|
|
@@ -11516,7 +11508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11516
11508
|
};
|
|
11517
11509
|
} & {
|
|
11518
11510
|
json: {
|
|
11519
|
-
template: "
|
|
11511
|
+
template: "change_password" | "verify_email" | "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";
|
|
11520
11512
|
body: string;
|
|
11521
11513
|
from: string;
|
|
11522
11514
|
subject: string;
|
|
@@ -11527,9 +11519,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11527
11519
|
enabled?: boolean | undefined;
|
|
11528
11520
|
};
|
|
11529
11521
|
};
|
|
11530
|
-
output: {
|
|
11531
|
-
|
|
11532
|
-
|
|
11522
|
+
output: {
|
|
11523
|
+
template: "change_password" | "verify_email" | "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";
|
|
11524
|
+
body: string;
|
|
11525
|
+
from: string;
|
|
11526
|
+
subject: string;
|
|
11527
|
+
syntax: "liquid";
|
|
11528
|
+
includeEmailInRedirect: boolean;
|
|
11529
|
+
enabled: boolean;
|
|
11530
|
+
resultUrl?: string | undefined;
|
|
11531
|
+
urlLifetimeInSeconds?: number | undefined;
|
|
11532
|
+
};
|
|
11533
|
+
outputFormat: "json";
|
|
11534
|
+
status: 201;
|
|
11533
11535
|
};
|
|
11534
11536
|
};
|
|
11535
11537
|
} & {
|
|
@@ -11541,7 +11543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11541
11543
|
};
|
|
11542
11544
|
};
|
|
11543
11545
|
output: {
|
|
11544
|
-
name: "
|
|
11546
|
+
name: "change_password" | "verify_email" | "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";
|
|
11545
11547
|
body: string;
|
|
11546
11548
|
subject: string;
|
|
11547
11549
|
}[];
|
|
@@ -11554,7 +11556,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11554
11556
|
$get: {
|
|
11555
11557
|
input: {
|
|
11556
11558
|
param: {
|
|
11557
|
-
templateName: "
|
|
11559
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11558
11560
|
};
|
|
11559
11561
|
} & {
|
|
11560
11562
|
header: {
|
|
@@ -11567,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11569
|
} | {
|
|
11568
11570
|
input: {
|
|
11569
11571
|
param: {
|
|
11570
|
-
templateName: "
|
|
11572
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11571
11573
|
};
|
|
11572
11574
|
} & {
|
|
11573
11575
|
header: {
|
|
@@ -11575,7 +11577,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11575
11577
|
};
|
|
11576
11578
|
};
|
|
11577
11579
|
output: {
|
|
11578
|
-
template: "
|
|
11580
|
+
template: "change_password" | "verify_email" | "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";
|
|
11579
11581
|
body: string;
|
|
11580
11582
|
from: string;
|
|
11581
11583
|
subject: string;
|
|
@@ -11594,7 +11596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11594
11596
|
$put: {
|
|
11595
11597
|
input: {
|
|
11596
11598
|
param: {
|
|
11597
|
-
templateName: "
|
|
11599
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11598
11600
|
};
|
|
11599
11601
|
} & {
|
|
11600
11602
|
header: {
|
|
@@ -11602,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11604
|
};
|
|
11603
11605
|
} & {
|
|
11604
11606
|
json: {
|
|
11605
|
-
template: "
|
|
11607
|
+
template: "change_password" | "verify_email" | "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";
|
|
11606
11608
|
body: string;
|
|
11607
11609
|
subject: string;
|
|
11608
11610
|
syntax?: "liquid" | undefined;
|
|
@@ -11614,7 +11616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11614
11616
|
};
|
|
11615
11617
|
};
|
|
11616
11618
|
output: {
|
|
11617
|
-
template: "
|
|
11619
|
+
template: "change_password" | "verify_email" | "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";
|
|
11618
11620
|
body: string;
|
|
11619
11621
|
from: string;
|
|
11620
11622
|
subject: string;
|
|
@@ -11633,7 +11635,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11633
11635
|
$patch: {
|
|
11634
11636
|
input: {
|
|
11635
11637
|
param: {
|
|
11636
|
-
templateName: "
|
|
11638
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11637
11639
|
};
|
|
11638
11640
|
} & {
|
|
11639
11641
|
header: {
|
|
@@ -11641,7 +11643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11641
11643
|
};
|
|
11642
11644
|
} & {
|
|
11643
11645
|
json: {
|
|
11644
|
-
template?: "
|
|
11646
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11645
11647
|
body?: string | undefined;
|
|
11646
11648
|
from?: string | undefined;
|
|
11647
11649
|
subject?: string | undefined;
|
|
@@ -11658,7 +11660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11658
11660
|
} | {
|
|
11659
11661
|
input: {
|
|
11660
11662
|
param: {
|
|
11661
|
-
templateName: "
|
|
11663
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11662
11664
|
};
|
|
11663
11665
|
} & {
|
|
11664
11666
|
header: {
|
|
@@ -11666,7 +11668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11666
11668
|
};
|
|
11667
11669
|
} & {
|
|
11668
11670
|
json: {
|
|
11669
|
-
template?: "
|
|
11671
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11670
11672
|
body?: string | undefined;
|
|
11671
11673
|
from?: string | undefined;
|
|
11672
11674
|
subject?: string | undefined;
|
|
@@ -11678,7 +11680,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11678
11680
|
};
|
|
11679
11681
|
};
|
|
11680
11682
|
output: {
|
|
11681
|
-
template: "
|
|
11683
|
+
template: "change_password" | "verify_email" | "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";
|
|
11682
11684
|
body: string;
|
|
11683
11685
|
from: string;
|
|
11684
11686
|
subject: string;
|
|
@@ -11697,7 +11699,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11697
11699
|
$delete: {
|
|
11698
11700
|
input: {
|
|
11699
11701
|
param: {
|
|
11700
|
-
templateName: "
|
|
11702
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11701
11703
|
};
|
|
11702
11704
|
} & {
|
|
11703
11705
|
header: {
|
|
@@ -11710,7 +11712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11710
11712
|
} | {
|
|
11711
11713
|
input: {
|
|
11712
11714
|
param: {
|
|
11713
|
-
templateName: "
|
|
11715
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11714
11716
|
};
|
|
11715
11717
|
} & {
|
|
11716
11718
|
header: {
|
|
@@ -11727,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11729
|
$post: {
|
|
11728
11730
|
input: {
|
|
11729
11731
|
param: {
|
|
11730
|
-
templateName: "
|
|
11732
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11731
11733
|
};
|
|
11732
11734
|
} & {
|
|
11733
11735
|
header: {
|
|
@@ -12010,7 +12012,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12010
12012
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12011
12013
|
custom_domain_id: string;
|
|
12012
12014
|
primary: boolean;
|
|
12013
|
-
status: "
|
|
12015
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12014
12016
|
verification_method?: "txt" | undefined;
|
|
12015
12017
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12016
12018
|
domain_metadata?: {
|
|
@@ -12051,7 +12053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12051
12053
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12052
12054
|
custom_domain_id: string;
|
|
12053
12055
|
primary: boolean;
|
|
12054
|
-
status: "
|
|
12056
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12055
12057
|
verification_method?: "txt" | undefined;
|
|
12056
12058
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12057
12059
|
domain_metadata?: {
|
|
@@ -12112,7 +12114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12114
|
domain_metadata?: Record<string, string> | undefined;
|
|
12113
12115
|
custom_domain_id?: string | undefined;
|
|
12114
12116
|
primary?: boolean | undefined;
|
|
12115
|
-
status?: "
|
|
12117
|
+
status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
|
|
12116
12118
|
origin_domain_name?: string | undefined;
|
|
12117
12119
|
verification?: {
|
|
12118
12120
|
methods: ({
|
|
@@ -12133,7 +12135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12133
12135
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12134
12136
|
custom_domain_id: string;
|
|
12135
12137
|
primary: boolean;
|
|
12136
|
-
status: "
|
|
12138
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12137
12139
|
verification_method?: "txt" | undefined;
|
|
12138
12140
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12139
12141
|
domain_metadata?: {
|
|
@@ -12180,7 +12182,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12180
12182
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12181
12183
|
custom_domain_id: string;
|
|
12182
12184
|
primary: boolean;
|
|
12183
|
-
status: "
|
|
12185
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12184
12186
|
verification_method?: "txt" | undefined;
|
|
12185
12187
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12186
12188
|
domain_metadata?: {
|
|
@@ -12226,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12226
12228
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12227
12229
|
custom_domain_id: string;
|
|
12228
12230
|
primary: boolean;
|
|
12229
|
-
status: "
|
|
12231
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12230
12232
|
verification_method?: "txt" | undefined;
|
|
12231
12233
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12232
12234
|
domain_metadata?: {
|
|
@@ -12267,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12267
12269
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12268
12270
|
custom_domain_id: string;
|
|
12269
12271
|
primary: boolean;
|
|
12270
|
-
status: "
|
|
12272
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12271
12273
|
verification_method?: "txt" | undefined;
|
|
12272
12274
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12273
12275
|
domain_metadata?: {
|
|
@@ -13181,7 +13183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13181
13183
|
};
|
|
13182
13184
|
output: {};
|
|
13183
13185
|
outputFormat: string;
|
|
13184
|
-
status:
|
|
13186
|
+
status: 200;
|
|
13185
13187
|
} | {
|
|
13186
13188
|
input: {
|
|
13187
13189
|
param: {
|
|
@@ -13194,7 +13196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13194
13196
|
};
|
|
13195
13197
|
output: {};
|
|
13196
13198
|
outputFormat: string;
|
|
13197
|
-
status:
|
|
13199
|
+
status: 404;
|
|
13198
13200
|
} | {
|
|
13199
13201
|
input: {
|
|
13200
13202
|
param: {
|
|
@@ -13207,7 +13209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13207
13209
|
};
|
|
13208
13210
|
output: {};
|
|
13209
13211
|
outputFormat: string;
|
|
13210
|
-
status:
|
|
13212
|
+
status: 409;
|
|
13211
13213
|
};
|
|
13212
13214
|
};
|
|
13213
13215
|
} & {
|
|
@@ -13839,7 +13841,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13839
13841
|
scope?: string | undefined;
|
|
13840
13842
|
grant_types?: string[] | undefined;
|
|
13841
13843
|
response_types?: string[] | undefined;
|
|
13842
|
-
token_endpoint_auth_method?: "
|
|
13844
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13843
13845
|
jwks_uri?: string | undefined;
|
|
13844
13846
|
jwks?: Record<string, unknown> | undefined;
|
|
13845
13847
|
software_id?: string | undefined;
|
|
@@ -13928,7 +13930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13928
13930
|
scope?: string | undefined;
|
|
13929
13931
|
grant_types?: string[] | undefined;
|
|
13930
13932
|
response_types?: string[] | undefined;
|
|
13931
|
-
token_endpoint_auth_method?: "
|
|
13933
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13932
13934
|
jwks_uri?: string | undefined;
|
|
13933
13935
|
jwks?: Record<string, unknown> | undefined;
|
|
13934
13936
|
software_id?: string | undefined;
|
|
@@ -14274,20 +14276,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14274
14276
|
email: string;
|
|
14275
14277
|
send: "code" | "link";
|
|
14276
14278
|
authParams: {
|
|
14277
|
-
|
|
14278
|
-
state?: string | undefined;
|
|
14279
|
-
act_as?: string | undefined;
|
|
14279
|
+
audience?: string | undefined;
|
|
14280
14280
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14281
14281
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14282
|
-
redirect_uri?: string | undefined;
|
|
14283
|
-
audience?: string | undefined;
|
|
14284
|
-
organization?: string | undefined;
|
|
14285
|
-
nonce?: string | undefined;
|
|
14286
14282
|
scope?: string | undefined;
|
|
14283
|
+
username?: string | undefined;
|
|
14284
|
+
state?: string | undefined;
|
|
14287
14285
|
prompt?: string | undefined;
|
|
14286
|
+
ui_locales?: string | undefined;
|
|
14287
|
+
organization?: string | undefined;
|
|
14288
|
+
redirect_uri?: string | undefined;
|
|
14289
|
+
act_as?: string | undefined;
|
|
14290
|
+
nonce?: string | undefined;
|
|
14288
14291
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14289
14292
|
code_challenge?: string | undefined;
|
|
14290
|
-
ui_locales?: string | undefined;
|
|
14291
14293
|
max_age?: number | undefined;
|
|
14292
14294
|
acr_values?: string | undefined;
|
|
14293
14295
|
claims?: {
|
|
@@ -14310,20 +14312,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14310
14312
|
phone_number: string;
|
|
14311
14313
|
send: "code" | "link";
|
|
14312
14314
|
authParams: {
|
|
14313
|
-
|
|
14314
|
-
state?: string | undefined;
|
|
14315
|
-
act_as?: string | undefined;
|
|
14315
|
+
audience?: string | undefined;
|
|
14316
14316
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14317
14317
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14318
|
-
redirect_uri?: string | undefined;
|
|
14319
|
-
audience?: string | undefined;
|
|
14320
|
-
organization?: string | undefined;
|
|
14321
|
-
nonce?: string | undefined;
|
|
14322
14318
|
scope?: string | undefined;
|
|
14319
|
+
username?: string | undefined;
|
|
14320
|
+
state?: string | undefined;
|
|
14323
14321
|
prompt?: string | undefined;
|
|
14322
|
+
ui_locales?: string | undefined;
|
|
14323
|
+
organization?: string | undefined;
|
|
14324
|
+
redirect_uri?: string | undefined;
|
|
14325
|
+
act_as?: string | undefined;
|
|
14326
|
+
nonce?: string | undefined;
|
|
14324
14327
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14325
14328
|
code_challenge?: string | undefined;
|
|
14326
|
-
ui_locales?: string | undefined;
|
|
14327
14329
|
max_age?: number | undefined;
|
|
14328
14330
|
acr_values?: string | undefined;
|
|
14329
14331
|
claims?: {
|
|
@@ -14552,7 +14554,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14552
14554
|
client_id: string;
|
|
14553
14555
|
username: string;
|
|
14554
14556
|
otp: string;
|
|
14555
|
-
realm: "
|
|
14557
|
+
realm: "sms" | "email";
|
|
14556
14558
|
} | {
|
|
14557
14559
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14558
14560
|
subject_token: string;
|
|
@@ -14599,7 +14601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14599
14601
|
client_id: string;
|
|
14600
14602
|
username: string;
|
|
14601
14603
|
otp: string;
|
|
14602
|
-
realm: "
|
|
14604
|
+
realm: "sms" | "email";
|
|
14603
14605
|
} | {
|
|
14604
14606
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14605
14607
|
subject_token: string;
|
|
@@ -14651,7 +14653,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14651
14653
|
client_id: string;
|
|
14652
14654
|
username: string;
|
|
14653
14655
|
otp: string;
|
|
14654
|
-
realm: "
|
|
14656
|
+
realm: "sms" | "email";
|
|
14655
14657
|
} | {
|
|
14656
14658
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14657
14659
|
subject_token: string;
|
|
@@ -14698,7 +14700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14698
14700
|
client_id: string;
|
|
14699
14701
|
username: string;
|
|
14700
14702
|
otp: string;
|
|
14701
|
-
realm: "
|
|
14703
|
+
realm: "sms" | "email";
|
|
14702
14704
|
} | {
|
|
14703
14705
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14704
14706
|
subject_token: string;
|
|
@@ -14758,7 +14760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14758
14760
|
client_id: string;
|
|
14759
14761
|
username: string;
|
|
14760
14762
|
otp: string;
|
|
14761
|
-
realm: "
|
|
14763
|
+
realm: "sms" | "email";
|
|
14762
14764
|
} | {
|
|
14763
14765
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14764
14766
|
subject_token: string;
|
|
@@ -14805,7 +14807,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14805
14807
|
client_id: string;
|
|
14806
14808
|
username: string;
|
|
14807
14809
|
otp: string;
|
|
14808
|
-
realm: "
|
|
14810
|
+
realm: "sms" | "email";
|
|
14809
14811
|
} | {
|
|
14810
14812
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14811
14813
|
subject_token: string;
|
|
@@ -14860,7 +14862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14860
14862
|
client_id: string;
|
|
14861
14863
|
username: string;
|
|
14862
14864
|
otp: string;
|
|
14863
|
-
realm: "
|
|
14865
|
+
realm: "sms" | "email";
|
|
14864
14866
|
} | {
|
|
14865
14867
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14866
14868
|
subject_token: string;
|
|
@@ -14907,7 +14909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14907
14909
|
client_id: string;
|
|
14908
14910
|
username: string;
|
|
14909
14911
|
otp: string;
|
|
14910
|
-
realm: "
|
|
14912
|
+
realm: "sms" | "email";
|
|
14911
14913
|
} | {
|
|
14912
14914
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14913
14915
|
subject_token: string;
|
|
@@ -14962,7 +14964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14962
14964
|
client_id: string;
|
|
14963
14965
|
username: string;
|
|
14964
14966
|
otp: string;
|
|
14965
|
-
realm: "
|
|
14967
|
+
realm: "sms" | "email";
|
|
14966
14968
|
} | {
|
|
14967
14969
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14968
14970
|
subject_token: string;
|
|
@@ -15009,7 +15011,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15009
15011
|
client_id: string;
|
|
15010
15012
|
username: string;
|
|
15011
15013
|
otp: string;
|
|
15012
|
-
realm: "
|
|
15014
|
+
realm: "sms" | "email";
|
|
15013
15015
|
} | {
|
|
15014
15016
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15015
15017
|
subject_token: string;
|
|
@@ -15038,8 +15040,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15038
15040
|
output: {
|
|
15039
15041
|
keys: {
|
|
15040
15042
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
+
kty: "EC" | "RSA" | "oct";
|
|
15044
|
+
kid?: string | undefined;
|
|
15043
15045
|
use?: "sig" | "enc" | undefined;
|
|
15044
15046
|
n?: string | undefined;
|
|
15045
15047
|
e?: string | undefined;
|
|
@@ -16229,7 +16231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16229
16231
|
$get: {
|
|
16230
16232
|
input: {
|
|
16231
16233
|
param: {
|
|
16232
|
-
screen: "signup" | "
|
|
16234
|
+
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";
|
|
16233
16235
|
};
|
|
16234
16236
|
} & {
|
|
16235
16237
|
query: {
|
|
@@ -16245,7 +16247,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16245
16247
|
} | {
|
|
16246
16248
|
input: {
|
|
16247
16249
|
param: {
|
|
16248
|
-
screen: "signup" | "
|
|
16250
|
+
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";
|
|
16249
16251
|
};
|
|
16250
16252
|
} & {
|
|
16251
16253
|
query: {
|
|
@@ -16261,7 +16263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16261
16263
|
} | {
|
|
16262
16264
|
input: {
|
|
16263
16265
|
param: {
|
|
16264
|
-
screen: "signup" | "
|
|
16266
|
+
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";
|
|
16265
16267
|
};
|
|
16266
16268
|
} & {
|
|
16267
16269
|
query: {
|
|
@@ -16281,7 +16283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16281
16283
|
$post: {
|
|
16282
16284
|
input: {
|
|
16283
16285
|
param: {
|
|
16284
|
-
screen: "signup" | "
|
|
16286
|
+
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";
|
|
16285
16287
|
};
|
|
16286
16288
|
} & {
|
|
16287
16289
|
query: {
|
|
@@ -16299,7 +16301,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16299
16301
|
} | {
|
|
16300
16302
|
input: {
|
|
16301
16303
|
param: {
|
|
16302
|
-
screen: "signup" | "
|
|
16304
|
+
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";
|
|
16303
16305
|
};
|
|
16304
16306
|
} & {
|
|
16305
16307
|
query: {
|
|
@@ -16317,7 +16319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16317
16319
|
} | {
|
|
16318
16320
|
input: {
|
|
16319
16321
|
param: {
|
|
16320
|
-
screen: "signup" | "
|
|
16322
|
+
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";
|
|
16321
16323
|
};
|
|
16322
16324
|
} & {
|
|
16323
16325
|
query: {
|