authhero 5.17.1 → 5.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-35c8b265.entry.js +1 -0
- package/dist/authhero.cjs +139 -136
- package/dist/authhero.d.ts +425 -194
- package/dist/authhero.mjs +10490 -9833
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/emails/defaults/Layout.d.ts +3 -3
- package/dist/types/emails/defaults/PrimaryButton.d.ts +5 -2
- package/dist/types/helpers/consent.d.ts +31 -0
- package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/default-destinations.d.ts +11 -0
- package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
- package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
- package/dist/types/index.d.ts +285 -191
- package/dist/types/middlewares/index.d.ts +3 -0
- package/dist/types/middlewares/prefer.d.ts +12 -0
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- 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/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +31 -14
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/grants.d.ts +80 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +250 -159
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/screens/consent.d.ts +9 -0
- 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/state-machines/login-session.d.ts +12 -1
- package/dist/types/types/AuthHeroConfig.d.ts +26 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +2 -0
- package/package.json +5 -5
- package/dist/assets/u/widget/p-f0f9eca3.entry.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
|
|
|
22
22
|
export { LogsDestination } from "./helpers/outbox-destinations/logs";
|
|
23
23
|
export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
|
|
24
24
|
export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
|
|
25
|
+
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
26
|
+
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
27
|
+
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
25
28
|
export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
26
29
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
27
30
|
export type { SeedOptions, SeedResult } from "./seed";
|
|
@@ -80,7 +83,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
83
|
};
|
|
81
84
|
} & {
|
|
82
85
|
json: {
|
|
83
|
-
type: "
|
|
86
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
84
87
|
phone_number?: string | undefined;
|
|
85
88
|
totp_secret?: string | undefined;
|
|
86
89
|
credential_id?: string | undefined;
|
|
@@ -220,7 +223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
220
223
|
};
|
|
221
224
|
};
|
|
222
225
|
output: {
|
|
223
|
-
name: "
|
|
226
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
224
227
|
enabled: boolean;
|
|
225
228
|
trial_expired?: boolean | undefined;
|
|
226
229
|
}[];
|
|
@@ -375,7 +378,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
375
378
|
$get: {
|
|
376
379
|
input: {
|
|
377
380
|
param: {
|
|
378
|
-
factor_name: "
|
|
381
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
379
382
|
};
|
|
380
383
|
} & {
|
|
381
384
|
header: {
|
|
@@ -383,7 +386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
383
386
|
};
|
|
384
387
|
};
|
|
385
388
|
output: {
|
|
386
|
-
name: "
|
|
389
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
387
390
|
enabled: boolean;
|
|
388
391
|
trial_expired?: boolean | undefined;
|
|
389
392
|
};
|
|
@@ -396,7 +399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
396
399
|
$put: {
|
|
397
400
|
input: {
|
|
398
401
|
param: {
|
|
399
|
-
factor_name: "
|
|
402
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
400
403
|
};
|
|
401
404
|
} & {
|
|
402
405
|
header: {
|
|
@@ -408,7 +411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
408
411
|
};
|
|
409
412
|
};
|
|
410
413
|
output: {
|
|
411
|
-
name: "
|
|
414
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
412
415
|
enabled: boolean;
|
|
413
416
|
trial_expired?: boolean | undefined;
|
|
414
417
|
};
|
|
@@ -934,7 +937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
934
937
|
};
|
|
935
938
|
output: {};
|
|
936
939
|
outputFormat: string;
|
|
937
|
-
status:
|
|
940
|
+
status: 204;
|
|
938
941
|
};
|
|
939
942
|
};
|
|
940
943
|
} & {
|
|
@@ -1153,10 +1156,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1153
1156
|
invitee: {
|
|
1154
1157
|
email?: string | undefined;
|
|
1155
1158
|
};
|
|
1159
|
+
id?: string | undefined;
|
|
1156
1160
|
app_metadata?: Record<string, any> | undefined;
|
|
1157
1161
|
user_metadata?: Record<string, any> | undefined;
|
|
1158
1162
|
connection_id?: string | undefined;
|
|
1159
|
-
id?: string | undefined;
|
|
1160
1163
|
roles?: string[] | undefined;
|
|
1161
1164
|
ttl_sec?: number | undefined;
|
|
1162
1165
|
send_invitation_email?: boolean | undefined;
|
|
@@ -2584,7 +2587,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2584
2587
|
hint?: string | undefined;
|
|
2585
2588
|
messages?: {
|
|
2586
2589
|
text: string;
|
|
2587
|
-
type: "
|
|
2590
|
+
type: "error" | "success" | "info" | "warning";
|
|
2588
2591
|
id?: number | undefined;
|
|
2589
2592
|
}[] | undefined;
|
|
2590
2593
|
required?: boolean | undefined;
|
|
@@ -2602,7 +2605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2602
2605
|
hint?: string | undefined;
|
|
2603
2606
|
messages?: {
|
|
2604
2607
|
text: string;
|
|
2605
|
-
type: "
|
|
2608
|
+
type: "error" | "success" | "info" | "warning";
|
|
2606
2609
|
id?: number | undefined;
|
|
2607
2610
|
}[] | undefined;
|
|
2608
2611
|
required?: boolean | undefined;
|
|
@@ -2626,7 +2629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2626
2629
|
hint?: string | undefined;
|
|
2627
2630
|
messages?: {
|
|
2628
2631
|
text: string;
|
|
2629
|
-
type: "
|
|
2632
|
+
type: "error" | "success" | "info" | "warning";
|
|
2630
2633
|
id?: number | undefined;
|
|
2631
2634
|
}[] | undefined;
|
|
2632
2635
|
required?: boolean | undefined;
|
|
@@ -2650,7 +2653,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2650
2653
|
hint?: string | undefined;
|
|
2651
2654
|
messages?: {
|
|
2652
2655
|
text: string;
|
|
2653
|
-
type: "
|
|
2656
|
+
type: "error" | "success" | "info" | "warning";
|
|
2654
2657
|
id?: number | undefined;
|
|
2655
2658
|
}[] | undefined;
|
|
2656
2659
|
required?: boolean | undefined;
|
|
@@ -2679,7 +2682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2679
2682
|
hint?: string | undefined;
|
|
2680
2683
|
messages?: {
|
|
2681
2684
|
text: string;
|
|
2682
|
-
type: "
|
|
2685
|
+
type: "error" | "success" | "info" | "warning";
|
|
2683
2686
|
id?: number | undefined;
|
|
2684
2687
|
}[] | undefined;
|
|
2685
2688
|
required?: boolean | undefined;
|
|
@@ -2694,7 +2697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2694
2697
|
hint?: string | undefined;
|
|
2695
2698
|
messages?: {
|
|
2696
2699
|
text: string;
|
|
2697
|
-
type: "
|
|
2700
|
+
type: "error" | "success" | "info" | "warning";
|
|
2698
2701
|
id?: number | undefined;
|
|
2699
2702
|
}[] | undefined;
|
|
2700
2703
|
required?: boolean | undefined;
|
|
@@ -2715,7 +2718,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2715
2718
|
hint?: string | undefined;
|
|
2716
2719
|
messages?: {
|
|
2717
2720
|
text: string;
|
|
2718
|
-
type: "
|
|
2721
|
+
type: "error" | "success" | "info" | "warning";
|
|
2719
2722
|
id?: number | undefined;
|
|
2720
2723
|
}[] | undefined;
|
|
2721
2724
|
required?: boolean | undefined;
|
|
@@ -2740,7 +2743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2740
2743
|
hint?: string | undefined;
|
|
2741
2744
|
messages?: {
|
|
2742
2745
|
text: string;
|
|
2743
|
-
type: "
|
|
2746
|
+
type: "error" | "success" | "info" | "warning";
|
|
2744
2747
|
id?: number | undefined;
|
|
2745
2748
|
}[] | undefined;
|
|
2746
2749
|
required?: boolean | undefined;
|
|
@@ -2759,7 +2762,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2759
2762
|
hint?: string | undefined;
|
|
2760
2763
|
messages?: {
|
|
2761
2764
|
text: string;
|
|
2762
|
-
type: "
|
|
2765
|
+
type: "error" | "success" | "info" | "warning";
|
|
2763
2766
|
id?: number | undefined;
|
|
2764
2767
|
}[] | undefined;
|
|
2765
2768
|
required?: boolean | undefined;
|
|
@@ -2779,7 +2782,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2779
2782
|
hint?: string | undefined;
|
|
2780
2783
|
messages?: {
|
|
2781
2784
|
text: string;
|
|
2782
|
-
type: "
|
|
2785
|
+
type: "error" | "success" | "info" | "warning";
|
|
2783
2786
|
id?: number | undefined;
|
|
2784
2787
|
}[] | undefined;
|
|
2785
2788
|
required?: boolean | undefined;
|
|
@@ -2798,7 +2801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2798
2801
|
hint?: string | undefined;
|
|
2799
2802
|
messages?: {
|
|
2800
2803
|
text: string;
|
|
2801
|
-
type: "
|
|
2804
|
+
type: "error" | "success" | "info" | "warning";
|
|
2802
2805
|
id?: number | undefined;
|
|
2803
2806
|
}[] | undefined;
|
|
2804
2807
|
required?: boolean | undefined;
|
|
@@ -2820,7 +2823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2820
2823
|
hint?: string | undefined;
|
|
2821
2824
|
messages?: {
|
|
2822
2825
|
text: string;
|
|
2823
|
-
type: "
|
|
2826
|
+
type: "error" | "success" | "info" | "warning";
|
|
2824
2827
|
id?: number | undefined;
|
|
2825
2828
|
}[] | undefined;
|
|
2826
2829
|
required?: boolean | undefined;
|
|
@@ -2842,7 +2845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2842
2845
|
hint?: string | undefined;
|
|
2843
2846
|
messages?: {
|
|
2844
2847
|
text: string;
|
|
2845
|
-
type: "
|
|
2848
|
+
type: "error" | "success" | "info" | "warning";
|
|
2846
2849
|
id?: number | undefined;
|
|
2847
2850
|
}[] | undefined;
|
|
2848
2851
|
required?: boolean | undefined;
|
|
@@ -2861,7 +2864,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2861
2864
|
hint?: string | undefined;
|
|
2862
2865
|
messages?: {
|
|
2863
2866
|
text: string;
|
|
2864
|
-
type: "
|
|
2867
|
+
type: "error" | "success" | "info" | "warning";
|
|
2865
2868
|
id?: number | undefined;
|
|
2866
2869
|
}[] | undefined;
|
|
2867
2870
|
required?: boolean | undefined;
|
|
@@ -2886,7 +2889,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2886
2889
|
hint?: string | undefined;
|
|
2887
2890
|
messages?: {
|
|
2888
2891
|
text: string;
|
|
2889
|
-
type: "
|
|
2892
|
+
type: "error" | "success" | "info" | "warning";
|
|
2890
2893
|
id?: number | undefined;
|
|
2891
2894
|
}[] | undefined;
|
|
2892
2895
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2907
2910
|
hint?: string | undefined;
|
|
2908
2911
|
messages?: {
|
|
2909
2912
|
text: string;
|
|
2910
|
-
type: "
|
|
2913
|
+
type: "error" | "success" | "info" | "warning";
|
|
2911
2914
|
id?: number | undefined;
|
|
2912
2915
|
}[] | undefined;
|
|
2913
2916
|
required?: boolean | undefined;
|
|
@@ -2928,7 +2931,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2928
2931
|
hint?: string | undefined;
|
|
2929
2932
|
messages?: {
|
|
2930
2933
|
text: string;
|
|
2931
|
-
type: "
|
|
2934
|
+
type: "error" | "success" | "info" | "warning";
|
|
2932
2935
|
id?: number | undefined;
|
|
2933
2936
|
}[] | undefined;
|
|
2934
2937
|
required?: boolean | undefined;
|
|
@@ -3161,7 +3164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3161
3164
|
hint?: string | undefined;
|
|
3162
3165
|
messages?: {
|
|
3163
3166
|
text: string;
|
|
3164
|
-
type: "
|
|
3167
|
+
type: "error" | "success" | "info" | "warning";
|
|
3165
3168
|
id?: number | undefined;
|
|
3166
3169
|
}[] | undefined;
|
|
3167
3170
|
required?: boolean | undefined;
|
|
@@ -3179,7 +3182,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3179
3182
|
hint?: string | undefined;
|
|
3180
3183
|
messages?: {
|
|
3181
3184
|
text: string;
|
|
3182
|
-
type: "
|
|
3185
|
+
type: "error" | "success" | "info" | "warning";
|
|
3183
3186
|
id?: number | undefined;
|
|
3184
3187
|
}[] | undefined;
|
|
3185
3188
|
required?: boolean | undefined;
|
|
@@ -3203,7 +3206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3203
3206
|
hint?: string | undefined;
|
|
3204
3207
|
messages?: {
|
|
3205
3208
|
text: string;
|
|
3206
|
-
type: "
|
|
3209
|
+
type: "error" | "success" | "info" | "warning";
|
|
3207
3210
|
id?: number | undefined;
|
|
3208
3211
|
}[] | undefined;
|
|
3209
3212
|
required?: boolean | undefined;
|
|
@@ -3227,7 +3230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3227
3230
|
hint?: string | undefined;
|
|
3228
3231
|
messages?: {
|
|
3229
3232
|
text: string;
|
|
3230
|
-
type: "
|
|
3233
|
+
type: "error" | "success" | "info" | "warning";
|
|
3231
3234
|
id?: number | undefined;
|
|
3232
3235
|
}[] | undefined;
|
|
3233
3236
|
required?: boolean | undefined;
|
|
@@ -3256,7 +3259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3256
3259
|
hint?: string | undefined;
|
|
3257
3260
|
messages?: {
|
|
3258
3261
|
text: string;
|
|
3259
|
-
type: "
|
|
3262
|
+
type: "error" | "success" | "info" | "warning";
|
|
3260
3263
|
id?: number | undefined;
|
|
3261
3264
|
}[] | undefined;
|
|
3262
3265
|
required?: boolean | undefined;
|
|
@@ -3271,7 +3274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3271
3274
|
hint?: string | undefined;
|
|
3272
3275
|
messages?: {
|
|
3273
3276
|
text: string;
|
|
3274
|
-
type: "
|
|
3277
|
+
type: "error" | "success" | "info" | "warning";
|
|
3275
3278
|
id?: number | undefined;
|
|
3276
3279
|
}[] | undefined;
|
|
3277
3280
|
required?: boolean | undefined;
|
|
@@ -3292,7 +3295,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3292
3295
|
hint?: string | undefined;
|
|
3293
3296
|
messages?: {
|
|
3294
3297
|
text: string;
|
|
3295
|
-
type: "
|
|
3298
|
+
type: "error" | "success" | "info" | "warning";
|
|
3296
3299
|
id?: number | undefined;
|
|
3297
3300
|
}[] | undefined;
|
|
3298
3301
|
required?: boolean | undefined;
|
|
@@ -3317,7 +3320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3317
3320
|
hint?: string | undefined;
|
|
3318
3321
|
messages?: {
|
|
3319
3322
|
text: string;
|
|
3320
|
-
type: "
|
|
3323
|
+
type: "error" | "success" | "info" | "warning";
|
|
3321
3324
|
id?: number | undefined;
|
|
3322
3325
|
}[] | undefined;
|
|
3323
3326
|
required?: boolean | undefined;
|
|
@@ -3336,7 +3339,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3336
3339
|
hint?: string | undefined;
|
|
3337
3340
|
messages?: {
|
|
3338
3341
|
text: string;
|
|
3339
|
-
type: "
|
|
3342
|
+
type: "error" | "success" | "info" | "warning";
|
|
3340
3343
|
id?: number | undefined;
|
|
3341
3344
|
}[] | undefined;
|
|
3342
3345
|
required?: boolean | undefined;
|
|
@@ -3356,7 +3359,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3356
3359
|
hint?: string | undefined;
|
|
3357
3360
|
messages?: {
|
|
3358
3361
|
text: string;
|
|
3359
|
-
type: "
|
|
3362
|
+
type: "error" | "success" | "info" | "warning";
|
|
3360
3363
|
id?: number | undefined;
|
|
3361
3364
|
}[] | undefined;
|
|
3362
3365
|
required?: boolean | undefined;
|
|
@@ -3375,7 +3378,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3375
3378
|
hint?: string | undefined;
|
|
3376
3379
|
messages?: {
|
|
3377
3380
|
text: string;
|
|
3378
|
-
type: "
|
|
3381
|
+
type: "error" | "success" | "info" | "warning";
|
|
3379
3382
|
id?: number | undefined;
|
|
3380
3383
|
}[] | undefined;
|
|
3381
3384
|
required?: boolean | undefined;
|
|
@@ -3397,7 +3400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3397
3400
|
hint?: string | undefined;
|
|
3398
3401
|
messages?: {
|
|
3399
3402
|
text: string;
|
|
3400
|
-
type: "
|
|
3403
|
+
type: "error" | "success" | "info" | "warning";
|
|
3401
3404
|
id?: number | undefined;
|
|
3402
3405
|
}[] | undefined;
|
|
3403
3406
|
required?: boolean | undefined;
|
|
@@ -3419,7 +3422,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3419
3422
|
hint?: string | undefined;
|
|
3420
3423
|
messages?: {
|
|
3421
3424
|
text: string;
|
|
3422
|
-
type: "
|
|
3425
|
+
type: "error" | "success" | "info" | "warning";
|
|
3423
3426
|
id?: number | undefined;
|
|
3424
3427
|
}[] | undefined;
|
|
3425
3428
|
required?: boolean | undefined;
|
|
@@ -3438,7 +3441,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3438
3441
|
hint?: string | undefined;
|
|
3439
3442
|
messages?: {
|
|
3440
3443
|
text: string;
|
|
3441
|
-
type: "
|
|
3444
|
+
type: "error" | "success" | "info" | "warning";
|
|
3442
3445
|
id?: number | undefined;
|
|
3443
3446
|
}[] | undefined;
|
|
3444
3447
|
required?: boolean | undefined;
|
|
@@ -3463,7 +3466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3463
3466
|
hint?: string | undefined;
|
|
3464
3467
|
messages?: {
|
|
3465
3468
|
text: string;
|
|
3466
|
-
type: "
|
|
3469
|
+
type: "error" | "success" | "info" | "warning";
|
|
3467
3470
|
id?: number | undefined;
|
|
3468
3471
|
}[] | undefined;
|
|
3469
3472
|
required?: boolean | undefined;
|
|
@@ -3484,7 +3487,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3484
3487
|
hint?: string | undefined;
|
|
3485
3488
|
messages?: {
|
|
3486
3489
|
text: string;
|
|
3487
|
-
type: "
|
|
3490
|
+
type: "error" | "success" | "info" | "warning";
|
|
3488
3491
|
id?: number | undefined;
|
|
3489
3492
|
}[] | undefined;
|
|
3490
3493
|
required?: boolean | undefined;
|
|
@@ -3505,7 +3508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3505
3508
|
hint?: string | undefined;
|
|
3506
3509
|
messages?: {
|
|
3507
3510
|
text: string;
|
|
3508
|
-
type: "
|
|
3511
|
+
type: "error" | "success" | "info" | "warning";
|
|
3509
3512
|
id?: number | undefined;
|
|
3510
3513
|
}[] | undefined;
|
|
3511
3514
|
required?: boolean | undefined;
|
|
@@ -3753,7 +3756,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3753
3756
|
hint?: string | undefined;
|
|
3754
3757
|
messages?: {
|
|
3755
3758
|
text: string;
|
|
3756
|
-
type: "
|
|
3759
|
+
type: "error" | "success" | "info" | "warning";
|
|
3757
3760
|
id?: number | undefined;
|
|
3758
3761
|
}[] | undefined;
|
|
3759
3762
|
required?: boolean | undefined;
|
|
@@ -3771,7 +3774,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3771
3774
|
hint?: string | undefined;
|
|
3772
3775
|
messages?: {
|
|
3773
3776
|
text: string;
|
|
3774
|
-
type: "
|
|
3777
|
+
type: "error" | "success" | "info" | "warning";
|
|
3775
3778
|
id?: number | undefined;
|
|
3776
3779
|
}[] | undefined;
|
|
3777
3780
|
required?: boolean | undefined;
|
|
@@ -3795,7 +3798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3795
3798
|
hint?: string | undefined;
|
|
3796
3799
|
messages?: {
|
|
3797
3800
|
text: string;
|
|
3798
|
-
type: "
|
|
3801
|
+
type: "error" | "success" | "info" | "warning";
|
|
3799
3802
|
id?: number | undefined;
|
|
3800
3803
|
}[] | undefined;
|
|
3801
3804
|
required?: boolean | undefined;
|
|
@@ -3819,7 +3822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3819
3822
|
hint?: string | undefined;
|
|
3820
3823
|
messages?: {
|
|
3821
3824
|
text: string;
|
|
3822
|
-
type: "
|
|
3825
|
+
type: "error" | "success" | "info" | "warning";
|
|
3823
3826
|
id?: number | undefined;
|
|
3824
3827
|
}[] | undefined;
|
|
3825
3828
|
required?: boolean | undefined;
|
|
@@ -3848,7 +3851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3848
3851
|
hint?: string | undefined;
|
|
3849
3852
|
messages?: {
|
|
3850
3853
|
text: string;
|
|
3851
|
-
type: "
|
|
3854
|
+
type: "error" | "success" | "info" | "warning";
|
|
3852
3855
|
id?: number | undefined;
|
|
3853
3856
|
}[] | undefined;
|
|
3854
3857
|
required?: boolean | undefined;
|
|
@@ -3863,7 +3866,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3863
3866
|
hint?: string | undefined;
|
|
3864
3867
|
messages?: {
|
|
3865
3868
|
text: string;
|
|
3866
|
-
type: "
|
|
3869
|
+
type: "error" | "success" | "info" | "warning";
|
|
3867
3870
|
id?: number | undefined;
|
|
3868
3871
|
}[] | undefined;
|
|
3869
3872
|
required?: boolean | undefined;
|
|
@@ -3884,7 +3887,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3884
3887
|
hint?: string | undefined;
|
|
3885
3888
|
messages?: {
|
|
3886
3889
|
text: string;
|
|
3887
|
-
type: "
|
|
3890
|
+
type: "error" | "success" | "info" | "warning";
|
|
3888
3891
|
id?: number | undefined;
|
|
3889
3892
|
}[] | undefined;
|
|
3890
3893
|
required?: boolean | undefined;
|
|
@@ -3909,7 +3912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3909
3912
|
hint?: string | undefined;
|
|
3910
3913
|
messages?: {
|
|
3911
3914
|
text: string;
|
|
3912
|
-
type: "
|
|
3915
|
+
type: "error" | "success" | "info" | "warning";
|
|
3913
3916
|
id?: number | undefined;
|
|
3914
3917
|
}[] | undefined;
|
|
3915
3918
|
required?: boolean | undefined;
|
|
@@ -3928,7 +3931,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3928
3931
|
hint?: string | undefined;
|
|
3929
3932
|
messages?: {
|
|
3930
3933
|
text: string;
|
|
3931
|
-
type: "
|
|
3934
|
+
type: "error" | "success" | "info" | "warning";
|
|
3932
3935
|
id?: number | undefined;
|
|
3933
3936
|
}[] | undefined;
|
|
3934
3937
|
required?: boolean | undefined;
|
|
@@ -3948,7 +3951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3948
3951
|
hint?: string | undefined;
|
|
3949
3952
|
messages?: {
|
|
3950
3953
|
text: string;
|
|
3951
|
-
type: "
|
|
3954
|
+
type: "error" | "success" | "info" | "warning";
|
|
3952
3955
|
id?: number | undefined;
|
|
3953
3956
|
}[] | undefined;
|
|
3954
3957
|
required?: boolean | undefined;
|
|
@@ -3967,7 +3970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3967
3970
|
hint?: string | undefined;
|
|
3968
3971
|
messages?: {
|
|
3969
3972
|
text: string;
|
|
3970
|
-
type: "
|
|
3973
|
+
type: "error" | "success" | "info" | "warning";
|
|
3971
3974
|
id?: number | undefined;
|
|
3972
3975
|
}[] | undefined;
|
|
3973
3976
|
required?: boolean | undefined;
|
|
@@ -3989,7 +3992,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3989
3992
|
hint?: string | undefined;
|
|
3990
3993
|
messages?: {
|
|
3991
3994
|
text: string;
|
|
3992
|
-
type: "
|
|
3995
|
+
type: "error" | "success" | "info" | "warning";
|
|
3993
3996
|
id?: number | undefined;
|
|
3994
3997
|
}[] | undefined;
|
|
3995
3998
|
required?: boolean | undefined;
|
|
@@ -4011,7 +4014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4011
4014
|
hint?: string | undefined;
|
|
4012
4015
|
messages?: {
|
|
4013
4016
|
text: string;
|
|
4014
|
-
type: "
|
|
4017
|
+
type: "error" | "success" | "info" | "warning";
|
|
4015
4018
|
id?: number | undefined;
|
|
4016
4019
|
}[] | undefined;
|
|
4017
4020
|
required?: boolean | undefined;
|
|
@@ -4030,7 +4033,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4030
4033
|
hint?: string | undefined;
|
|
4031
4034
|
messages?: {
|
|
4032
4035
|
text: string;
|
|
4033
|
-
type: "
|
|
4036
|
+
type: "error" | "success" | "info" | "warning";
|
|
4034
4037
|
id?: number | undefined;
|
|
4035
4038
|
}[] | undefined;
|
|
4036
4039
|
required?: boolean | undefined;
|
|
@@ -4055,7 +4058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4055
4058
|
hint?: string | undefined;
|
|
4056
4059
|
messages?: {
|
|
4057
4060
|
text: string;
|
|
4058
|
-
type: "
|
|
4061
|
+
type: "error" | "success" | "info" | "warning";
|
|
4059
4062
|
id?: number | undefined;
|
|
4060
4063
|
}[] | undefined;
|
|
4061
4064
|
required?: boolean | undefined;
|
|
@@ -4076,7 +4079,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4076
4079
|
hint?: string | undefined;
|
|
4077
4080
|
messages?: {
|
|
4078
4081
|
text: string;
|
|
4079
|
-
type: "
|
|
4082
|
+
type: "error" | "success" | "info" | "warning";
|
|
4080
4083
|
id?: number | undefined;
|
|
4081
4084
|
}[] | undefined;
|
|
4082
4085
|
required?: boolean | undefined;
|
|
@@ -4097,7 +4100,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4097
4100
|
hint?: string | undefined;
|
|
4098
4101
|
messages?: {
|
|
4099
4102
|
text: string;
|
|
4100
|
-
type: "
|
|
4103
|
+
type: "error" | "success" | "info" | "warning";
|
|
4101
4104
|
id?: number | undefined;
|
|
4102
4105
|
}[] | undefined;
|
|
4103
4106
|
required?: boolean | undefined;
|
|
@@ -4351,7 +4354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4351
4354
|
hint?: string | undefined;
|
|
4352
4355
|
messages?: {
|
|
4353
4356
|
text: string;
|
|
4354
|
-
type: "
|
|
4357
|
+
type: "error" | "success" | "info" | "warning";
|
|
4355
4358
|
id?: number | undefined;
|
|
4356
4359
|
}[] | undefined;
|
|
4357
4360
|
required?: boolean | undefined;
|
|
@@ -4369,7 +4372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4369
4372
|
hint?: string | undefined;
|
|
4370
4373
|
messages?: {
|
|
4371
4374
|
text: string;
|
|
4372
|
-
type: "
|
|
4375
|
+
type: "error" | "success" | "info" | "warning";
|
|
4373
4376
|
id?: number | undefined;
|
|
4374
4377
|
}[] | undefined;
|
|
4375
4378
|
required?: boolean | undefined;
|
|
@@ -4393,7 +4396,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4393
4396
|
hint?: string | undefined;
|
|
4394
4397
|
messages?: {
|
|
4395
4398
|
text: string;
|
|
4396
|
-
type: "
|
|
4399
|
+
type: "error" | "success" | "info" | "warning";
|
|
4397
4400
|
id?: number | undefined;
|
|
4398
4401
|
}[] | undefined;
|
|
4399
4402
|
required?: boolean | undefined;
|
|
@@ -4417,7 +4420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4417
4420
|
hint?: string | undefined;
|
|
4418
4421
|
messages?: {
|
|
4419
4422
|
text: string;
|
|
4420
|
-
type: "
|
|
4423
|
+
type: "error" | "success" | "info" | "warning";
|
|
4421
4424
|
id?: number | undefined;
|
|
4422
4425
|
}[] | undefined;
|
|
4423
4426
|
required?: boolean | undefined;
|
|
@@ -4442,7 +4445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4442
4445
|
hint?: string | undefined;
|
|
4443
4446
|
messages?: {
|
|
4444
4447
|
text: string;
|
|
4445
|
-
type: "
|
|
4448
|
+
type: "error" | "success" | "info" | "warning";
|
|
4446
4449
|
id?: number | undefined;
|
|
4447
4450
|
}[] | undefined;
|
|
4448
4451
|
required?: boolean | undefined;
|
|
@@ -4457,7 +4460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4457
4460
|
hint?: string | undefined;
|
|
4458
4461
|
messages?: {
|
|
4459
4462
|
text: string;
|
|
4460
|
-
type: "
|
|
4463
|
+
type: "error" | "success" | "info" | "warning";
|
|
4461
4464
|
id?: number | undefined;
|
|
4462
4465
|
}[] | undefined;
|
|
4463
4466
|
required?: boolean | undefined;
|
|
@@ -4478,7 +4481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4478
4481
|
hint?: string | undefined;
|
|
4479
4482
|
messages?: {
|
|
4480
4483
|
text: string;
|
|
4481
|
-
type: "
|
|
4484
|
+
type: "error" | "success" | "info" | "warning";
|
|
4482
4485
|
id?: number | undefined;
|
|
4483
4486
|
}[] | undefined;
|
|
4484
4487
|
required?: boolean | undefined;
|
|
@@ -4503,7 +4506,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4503
4506
|
hint?: string | undefined;
|
|
4504
4507
|
messages?: {
|
|
4505
4508
|
text: string;
|
|
4506
|
-
type: "
|
|
4509
|
+
type: "error" | "success" | "info" | "warning";
|
|
4507
4510
|
id?: number | undefined;
|
|
4508
4511
|
}[] | undefined;
|
|
4509
4512
|
required?: boolean | undefined;
|
|
@@ -4522,7 +4525,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4522
4525
|
hint?: string | undefined;
|
|
4523
4526
|
messages?: {
|
|
4524
4527
|
text: string;
|
|
4525
|
-
type: "
|
|
4528
|
+
type: "error" | "success" | "info" | "warning";
|
|
4526
4529
|
id?: number | undefined;
|
|
4527
4530
|
}[] | undefined;
|
|
4528
4531
|
required?: boolean | undefined;
|
|
@@ -4542,7 +4545,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4542
4545
|
hint?: string | undefined;
|
|
4543
4546
|
messages?: {
|
|
4544
4547
|
text: string;
|
|
4545
|
-
type: "
|
|
4548
|
+
type: "error" | "success" | "info" | "warning";
|
|
4546
4549
|
id?: number | undefined;
|
|
4547
4550
|
}[] | undefined;
|
|
4548
4551
|
required?: boolean | undefined;
|
|
@@ -4561,7 +4564,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4561
4564
|
hint?: string | undefined;
|
|
4562
4565
|
messages?: {
|
|
4563
4566
|
text: string;
|
|
4564
|
-
type: "
|
|
4567
|
+
type: "error" | "success" | "info" | "warning";
|
|
4565
4568
|
id?: number | undefined;
|
|
4566
4569
|
}[] | undefined;
|
|
4567
4570
|
required?: boolean | undefined;
|
|
@@ -4583,7 +4586,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4583
4586
|
hint?: string | undefined;
|
|
4584
4587
|
messages?: {
|
|
4585
4588
|
text: string;
|
|
4586
|
-
type: "
|
|
4589
|
+
type: "error" | "success" | "info" | "warning";
|
|
4587
4590
|
id?: number | undefined;
|
|
4588
4591
|
}[] | undefined;
|
|
4589
4592
|
required?: boolean | undefined;
|
|
@@ -4605,7 +4608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4605
4608
|
hint?: string | undefined;
|
|
4606
4609
|
messages?: {
|
|
4607
4610
|
text: string;
|
|
4608
|
-
type: "
|
|
4611
|
+
type: "error" | "success" | "info" | "warning";
|
|
4609
4612
|
id?: number | undefined;
|
|
4610
4613
|
}[] | undefined;
|
|
4611
4614
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4627,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4624
4627
|
hint?: string | undefined;
|
|
4625
4628
|
messages?: {
|
|
4626
4629
|
text: string;
|
|
4627
|
-
type: "
|
|
4630
|
+
type: "error" | "success" | "info" | "warning";
|
|
4628
4631
|
id?: number | undefined;
|
|
4629
4632
|
}[] | undefined;
|
|
4630
4633
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4649
4652
|
hint?: string | undefined;
|
|
4650
4653
|
messages?: {
|
|
4651
4654
|
text: string;
|
|
4652
|
-
type: "
|
|
4655
|
+
type: "error" | "success" | "info" | "warning";
|
|
4653
4656
|
id?: number | undefined;
|
|
4654
4657
|
}[] | undefined;
|
|
4655
4658
|
required?: boolean | undefined;
|
|
@@ -4670,7 +4673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4670
4673
|
hint?: string | undefined;
|
|
4671
4674
|
messages?: {
|
|
4672
4675
|
text: string;
|
|
4673
|
-
type: "
|
|
4676
|
+
type: "error" | "success" | "info" | "warning";
|
|
4674
4677
|
id?: number | undefined;
|
|
4675
4678
|
}[] | undefined;
|
|
4676
4679
|
required?: boolean | undefined;
|
|
@@ -4691,7 +4694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4691
4694
|
hint?: string | undefined;
|
|
4692
4695
|
messages?: {
|
|
4693
4696
|
text: string;
|
|
4694
|
-
type: "
|
|
4697
|
+
type: "error" | "success" | "info" | "warning";
|
|
4695
4698
|
id?: number | undefined;
|
|
4696
4699
|
}[] | undefined;
|
|
4697
4700
|
required?: boolean | undefined;
|
|
@@ -4922,7 +4925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4922
4925
|
hint?: string | undefined;
|
|
4923
4926
|
messages?: {
|
|
4924
4927
|
text: string;
|
|
4925
|
-
type: "
|
|
4928
|
+
type: "error" | "success" | "info" | "warning";
|
|
4926
4929
|
id?: number | undefined;
|
|
4927
4930
|
}[] | undefined;
|
|
4928
4931
|
required?: boolean | undefined;
|
|
@@ -4940,7 +4943,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4940
4943
|
hint?: string | undefined;
|
|
4941
4944
|
messages?: {
|
|
4942
4945
|
text: string;
|
|
4943
|
-
type: "
|
|
4946
|
+
type: "error" | "success" | "info" | "warning";
|
|
4944
4947
|
id?: number | undefined;
|
|
4945
4948
|
}[] | undefined;
|
|
4946
4949
|
required?: boolean | undefined;
|
|
@@ -4964,7 +4967,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4964
4967
|
hint?: string | undefined;
|
|
4965
4968
|
messages?: {
|
|
4966
4969
|
text: string;
|
|
4967
|
-
type: "
|
|
4970
|
+
type: "error" | "success" | "info" | "warning";
|
|
4968
4971
|
id?: number | undefined;
|
|
4969
4972
|
}[] | undefined;
|
|
4970
4973
|
required?: boolean | undefined;
|
|
@@ -4988,7 +4991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4988
4991
|
hint?: string | undefined;
|
|
4989
4992
|
messages?: {
|
|
4990
4993
|
text: string;
|
|
4991
|
-
type: "
|
|
4994
|
+
type: "error" | "success" | "info" | "warning";
|
|
4992
4995
|
id?: number | undefined;
|
|
4993
4996
|
}[] | undefined;
|
|
4994
4997
|
required?: boolean | undefined;
|
|
@@ -5017,7 +5020,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5017
5020
|
hint?: string | undefined;
|
|
5018
5021
|
messages?: {
|
|
5019
5022
|
text: string;
|
|
5020
|
-
type: "
|
|
5023
|
+
type: "error" | "success" | "info" | "warning";
|
|
5021
5024
|
id?: number | undefined;
|
|
5022
5025
|
}[] | undefined;
|
|
5023
5026
|
required?: boolean | undefined;
|
|
@@ -5032,7 +5035,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5032
5035
|
hint?: string | undefined;
|
|
5033
5036
|
messages?: {
|
|
5034
5037
|
text: string;
|
|
5035
|
-
type: "
|
|
5038
|
+
type: "error" | "success" | "info" | "warning";
|
|
5036
5039
|
id?: number | undefined;
|
|
5037
5040
|
}[] | undefined;
|
|
5038
5041
|
required?: boolean | undefined;
|
|
@@ -5053,7 +5056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5053
5056
|
hint?: string | undefined;
|
|
5054
5057
|
messages?: {
|
|
5055
5058
|
text: string;
|
|
5056
|
-
type: "
|
|
5059
|
+
type: "error" | "success" | "info" | "warning";
|
|
5057
5060
|
id?: number | undefined;
|
|
5058
5061
|
}[] | undefined;
|
|
5059
5062
|
required?: boolean | undefined;
|
|
@@ -5078,7 +5081,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5078
5081
|
hint?: string | undefined;
|
|
5079
5082
|
messages?: {
|
|
5080
5083
|
text: string;
|
|
5081
|
-
type: "
|
|
5084
|
+
type: "error" | "success" | "info" | "warning";
|
|
5082
5085
|
id?: number | undefined;
|
|
5083
5086
|
}[] | undefined;
|
|
5084
5087
|
required?: boolean | undefined;
|
|
@@ -5097,7 +5100,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5097
5100
|
hint?: string | undefined;
|
|
5098
5101
|
messages?: {
|
|
5099
5102
|
text: string;
|
|
5100
|
-
type: "
|
|
5103
|
+
type: "error" | "success" | "info" | "warning";
|
|
5101
5104
|
id?: number | undefined;
|
|
5102
5105
|
}[] | undefined;
|
|
5103
5106
|
required?: boolean | undefined;
|
|
@@ -5117,7 +5120,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5117
5120
|
hint?: string | undefined;
|
|
5118
5121
|
messages?: {
|
|
5119
5122
|
text: string;
|
|
5120
|
-
type: "
|
|
5123
|
+
type: "error" | "success" | "info" | "warning";
|
|
5121
5124
|
id?: number | undefined;
|
|
5122
5125
|
}[] | undefined;
|
|
5123
5126
|
required?: boolean | undefined;
|
|
@@ -5136,7 +5139,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5136
5139
|
hint?: string | undefined;
|
|
5137
5140
|
messages?: {
|
|
5138
5141
|
text: string;
|
|
5139
|
-
type: "
|
|
5142
|
+
type: "error" | "success" | "info" | "warning";
|
|
5140
5143
|
id?: number | undefined;
|
|
5141
5144
|
}[] | undefined;
|
|
5142
5145
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5158
5161
|
hint?: string | undefined;
|
|
5159
5162
|
messages?: {
|
|
5160
5163
|
text: string;
|
|
5161
|
-
type: "
|
|
5164
|
+
type: "error" | "success" | "info" | "warning";
|
|
5162
5165
|
id?: number | undefined;
|
|
5163
5166
|
}[] | undefined;
|
|
5164
5167
|
required?: boolean | undefined;
|
|
@@ -5180,7 +5183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5180
5183
|
hint?: string | undefined;
|
|
5181
5184
|
messages?: {
|
|
5182
5185
|
text: string;
|
|
5183
|
-
type: "
|
|
5186
|
+
type: "error" | "success" | "info" | "warning";
|
|
5184
5187
|
id?: number | undefined;
|
|
5185
5188
|
}[] | undefined;
|
|
5186
5189
|
required?: boolean | undefined;
|
|
@@ -5199,7 +5202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5199
5202
|
hint?: string | undefined;
|
|
5200
5203
|
messages?: {
|
|
5201
5204
|
text: string;
|
|
5202
|
-
type: "
|
|
5205
|
+
type: "error" | "success" | "info" | "warning";
|
|
5203
5206
|
id?: number | undefined;
|
|
5204
5207
|
}[] | undefined;
|
|
5205
5208
|
required?: boolean | undefined;
|
|
@@ -5224,7 +5227,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5224
5227
|
hint?: string | undefined;
|
|
5225
5228
|
messages?: {
|
|
5226
5229
|
text: string;
|
|
5227
|
-
type: "
|
|
5230
|
+
type: "error" | "success" | "info" | "warning";
|
|
5228
5231
|
id?: number | undefined;
|
|
5229
5232
|
}[] | undefined;
|
|
5230
5233
|
required?: boolean | undefined;
|
|
@@ -5245,7 +5248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5245
5248
|
hint?: string | undefined;
|
|
5246
5249
|
messages?: {
|
|
5247
5250
|
text: string;
|
|
5248
|
-
type: "
|
|
5251
|
+
type: "error" | "success" | "info" | "warning";
|
|
5249
5252
|
id?: number | undefined;
|
|
5250
5253
|
}[] | undefined;
|
|
5251
5254
|
required?: boolean | undefined;
|
|
@@ -5266,7 +5269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5266
5269
|
hint?: string | undefined;
|
|
5267
5270
|
messages?: {
|
|
5268
5271
|
text: string;
|
|
5269
|
-
type: "
|
|
5272
|
+
type: "error" | "success" | "info" | "warning";
|
|
5270
5273
|
id?: number | undefined;
|
|
5271
5274
|
}[] | undefined;
|
|
5272
5275
|
required?: boolean | undefined;
|
|
@@ -5499,7 +5502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5499
5502
|
hint?: string | undefined;
|
|
5500
5503
|
messages?: {
|
|
5501
5504
|
text: string;
|
|
5502
|
-
type: "
|
|
5505
|
+
type: "error" | "success" | "info" | "warning";
|
|
5503
5506
|
id?: number | undefined;
|
|
5504
5507
|
}[] | undefined;
|
|
5505
5508
|
required?: boolean | undefined;
|
|
@@ -5517,7 +5520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5517
5520
|
hint?: string | undefined;
|
|
5518
5521
|
messages?: {
|
|
5519
5522
|
text: string;
|
|
5520
|
-
type: "
|
|
5523
|
+
type: "error" | "success" | "info" | "warning";
|
|
5521
5524
|
id?: number | undefined;
|
|
5522
5525
|
}[] | undefined;
|
|
5523
5526
|
required?: boolean | undefined;
|
|
@@ -5541,7 +5544,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5541
5544
|
hint?: string | undefined;
|
|
5542
5545
|
messages?: {
|
|
5543
5546
|
text: string;
|
|
5544
|
-
type: "
|
|
5547
|
+
type: "error" | "success" | "info" | "warning";
|
|
5545
5548
|
id?: number | undefined;
|
|
5546
5549
|
}[] | undefined;
|
|
5547
5550
|
required?: boolean | undefined;
|
|
@@ -5565,7 +5568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5565
5568
|
hint?: string | undefined;
|
|
5566
5569
|
messages?: {
|
|
5567
5570
|
text: string;
|
|
5568
|
-
type: "
|
|
5571
|
+
type: "error" | "success" | "info" | "warning";
|
|
5569
5572
|
id?: number | undefined;
|
|
5570
5573
|
}[] | undefined;
|
|
5571
5574
|
required?: boolean | undefined;
|
|
@@ -5590,7 +5593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5590
5593
|
hint?: string | undefined;
|
|
5591
5594
|
messages?: {
|
|
5592
5595
|
text: string;
|
|
5593
|
-
type: "
|
|
5596
|
+
type: "error" | "success" | "info" | "warning";
|
|
5594
5597
|
id?: number | undefined;
|
|
5595
5598
|
}[] | undefined;
|
|
5596
5599
|
required?: boolean | undefined;
|
|
@@ -5605,7 +5608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5605
5608
|
hint?: string | undefined;
|
|
5606
5609
|
messages?: {
|
|
5607
5610
|
text: string;
|
|
5608
|
-
type: "
|
|
5611
|
+
type: "error" | "success" | "info" | "warning";
|
|
5609
5612
|
id?: number | undefined;
|
|
5610
5613
|
}[] | undefined;
|
|
5611
5614
|
required?: boolean | undefined;
|
|
@@ -5626,7 +5629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5626
5629
|
hint?: string | undefined;
|
|
5627
5630
|
messages?: {
|
|
5628
5631
|
text: string;
|
|
5629
|
-
type: "
|
|
5632
|
+
type: "error" | "success" | "info" | "warning";
|
|
5630
5633
|
id?: number | undefined;
|
|
5631
5634
|
}[] | undefined;
|
|
5632
5635
|
required?: boolean | undefined;
|
|
@@ -5651,7 +5654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5651
5654
|
hint?: string | undefined;
|
|
5652
5655
|
messages?: {
|
|
5653
5656
|
text: string;
|
|
5654
|
-
type: "
|
|
5657
|
+
type: "error" | "success" | "info" | "warning";
|
|
5655
5658
|
id?: number | undefined;
|
|
5656
5659
|
}[] | undefined;
|
|
5657
5660
|
required?: boolean | undefined;
|
|
@@ -5670,7 +5673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5670
5673
|
hint?: string | undefined;
|
|
5671
5674
|
messages?: {
|
|
5672
5675
|
text: string;
|
|
5673
|
-
type: "
|
|
5676
|
+
type: "error" | "success" | "info" | "warning";
|
|
5674
5677
|
id?: number | undefined;
|
|
5675
5678
|
}[] | undefined;
|
|
5676
5679
|
required?: boolean | undefined;
|
|
@@ -5690,7 +5693,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5690
5693
|
hint?: string | undefined;
|
|
5691
5694
|
messages?: {
|
|
5692
5695
|
text: string;
|
|
5693
|
-
type: "
|
|
5696
|
+
type: "error" | "success" | "info" | "warning";
|
|
5694
5697
|
id?: number | undefined;
|
|
5695
5698
|
}[] | undefined;
|
|
5696
5699
|
required?: boolean | undefined;
|
|
@@ -5709,7 +5712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5709
5712
|
hint?: string | undefined;
|
|
5710
5713
|
messages?: {
|
|
5711
5714
|
text: string;
|
|
5712
|
-
type: "
|
|
5715
|
+
type: "error" | "success" | "info" | "warning";
|
|
5713
5716
|
id?: number | undefined;
|
|
5714
5717
|
}[] | undefined;
|
|
5715
5718
|
required?: boolean | undefined;
|
|
@@ -5731,7 +5734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5731
5734
|
hint?: string | undefined;
|
|
5732
5735
|
messages?: {
|
|
5733
5736
|
text: string;
|
|
5734
|
-
type: "
|
|
5737
|
+
type: "error" | "success" | "info" | "warning";
|
|
5735
5738
|
id?: number | undefined;
|
|
5736
5739
|
}[] | undefined;
|
|
5737
5740
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5756,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5753
5756
|
hint?: string | undefined;
|
|
5754
5757
|
messages?: {
|
|
5755
5758
|
text: string;
|
|
5756
|
-
type: "
|
|
5759
|
+
type: "error" | "success" | "info" | "warning";
|
|
5757
5760
|
id?: number | undefined;
|
|
5758
5761
|
}[] | undefined;
|
|
5759
5762
|
required?: boolean | undefined;
|
|
@@ -5772,7 +5775,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5772
5775
|
hint?: string | undefined;
|
|
5773
5776
|
messages?: {
|
|
5774
5777
|
text: string;
|
|
5775
|
-
type: "
|
|
5778
|
+
type: "error" | "success" | "info" | "warning";
|
|
5776
5779
|
id?: number | undefined;
|
|
5777
5780
|
}[] | undefined;
|
|
5778
5781
|
required?: boolean | undefined;
|
|
@@ -5797,7 +5800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5797
5800
|
hint?: string | undefined;
|
|
5798
5801
|
messages?: {
|
|
5799
5802
|
text: string;
|
|
5800
|
-
type: "
|
|
5803
|
+
type: "error" | "success" | "info" | "warning";
|
|
5801
5804
|
id?: number | undefined;
|
|
5802
5805
|
}[] | undefined;
|
|
5803
5806
|
required?: boolean | undefined;
|
|
@@ -5818,7 +5821,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5818
5821
|
hint?: string | undefined;
|
|
5819
5822
|
messages?: {
|
|
5820
5823
|
text: string;
|
|
5821
|
-
type: "
|
|
5824
|
+
type: "error" | "success" | "info" | "warning";
|
|
5822
5825
|
id?: number | undefined;
|
|
5823
5826
|
}[] | undefined;
|
|
5824
5827
|
required?: boolean | undefined;
|
|
@@ -5839,7 +5842,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5839
5842
|
hint?: string | undefined;
|
|
5840
5843
|
messages?: {
|
|
5841
5844
|
text: string;
|
|
5842
|
-
type: "
|
|
5845
|
+
type: "error" | "success" | "info" | "warning";
|
|
5843
5846
|
id?: number | undefined;
|
|
5844
5847
|
}[] | undefined;
|
|
5845
5848
|
required?: boolean | undefined;
|
|
@@ -6070,7 +6073,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6070
6073
|
hint?: string | undefined;
|
|
6071
6074
|
messages?: {
|
|
6072
6075
|
text: string;
|
|
6073
|
-
type: "
|
|
6076
|
+
type: "error" | "success" | "info" | "warning";
|
|
6074
6077
|
id?: number | undefined;
|
|
6075
6078
|
}[] | undefined;
|
|
6076
6079
|
required?: boolean | undefined;
|
|
@@ -6088,7 +6091,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6088
6091
|
hint?: string | undefined;
|
|
6089
6092
|
messages?: {
|
|
6090
6093
|
text: string;
|
|
6091
|
-
type: "
|
|
6094
|
+
type: "error" | "success" | "info" | "warning";
|
|
6092
6095
|
id?: number | undefined;
|
|
6093
6096
|
}[] | undefined;
|
|
6094
6097
|
required?: boolean | undefined;
|
|
@@ -6112,7 +6115,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6112
6115
|
hint?: string | undefined;
|
|
6113
6116
|
messages?: {
|
|
6114
6117
|
text: string;
|
|
6115
|
-
type: "
|
|
6118
|
+
type: "error" | "success" | "info" | "warning";
|
|
6116
6119
|
id?: number | undefined;
|
|
6117
6120
|
}[] | undefined;
|
|
6118
6121
|
required?: boolean | undefined;
|
|
@@ -6136,7 +6139,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6136
6139
|
hint?: string | undefined;
|
|
6137
6140
|
messages?: {
|
|
6138
6141
|
text: string;
|
|
6139
|
-
type: "
|
|
6142
|
+
type: "error" | "success" | "info" | "warning";
|
|
6140
6143
|
id?: number | undefined;
|
|
6141
6144
|
}[] | undefined;
|
|
6142
6145
|
required?: boolean | undefined;
|
|
@@ -6165,7 +6168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6165
6168
|
hint?: string | undefined;
|
|
6166
6169
|
messages?: {
|
|
6167
6170
|
text: string;
|
|
6168
|
-
type: "
|
|
6171
|
+
type: "error" | "success" | "info" | "warning";
|
|
6169
6172
|
id?: number | undefined;
|
|
6170
6173
|
}[] | undefined;
|
|
6171
6174
|
required?: boolean | undefined;
|
|
@@ -6180,7 +6183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6180
6183
|
hint?: string | undefined;
|
|
6181
6184
|
messages?: {
|
|
6182
6185
|
text: string;
|
|
6183
|
-
type: "
|
|
6186
|
+
type: "error" | "success" | "info" | "warning";
|
|
6184
6187
|
id?: number | undefined;
|
|
6185
6188
|
}[] | undefined;
|
|
6186
6189
|
required?: boolean | undefined;
|
|
@@ -6201,7 +6204,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6201
6204
|
hint?: string | undefined;
|
|
6202
6205
|
messages?: {
|
|
6203
6206
|
text: string;
|
|
6204
|
-
type: "
|
|
6207
|
+
type: "error" | "success" | "info" | "warning";
|
|
6205
6208
|
id?: number | undefined;
|
|
6206
6209
|
}[] | undefined;
|
|
6207
6210
|
required?: boolean | undefined;
|
|
@@ -6226,7 +6229,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6226
6229
|
hint?: string | undefined;
|
|
6227
6230
|
messages?: {
|
|
6228
6231
|
text: string;
|
|
6229
|
-
type: "
|
|
6232
|
+
type: "error" | "success" | "info" | "warning";
|
|
6230
6233
|
id?: number | undefined;
|
|
6231
6234
|
}[] | undefined;
|
|
6232
6235
|
required?: boolean | undefined;
|
|
@@ -6245,7 +6248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6245
6248
|
hint?: string | undefined;
|
|
6246
6249
|
messages?: {
|
|
6247
6250
|
text: string;
|
|
6248
|
-
type: "
|
|
6251
|
+
type: "error" | "success" | "info" | "warning";
|
|
6249
6252
|
id?: number | undefined;
|
|
6250
6253
|
}[] | undefined;
|
|
6251
6254
|
required?: boolean | undefined;
|
|
@@ -6265,7 +6268,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6265
6268
|
hint?: string | undefined;
|
|
6266
6269
|
messages?: {
|
|
6267
6270
|
text: string;
|
|
6268
|
-
type: "
|
|
6271
|
+
type: "error" | "success" | "info" | "warning";
|
|
6269
6272
|
id?: number | undefined;
|
|
6270
6273
|
}[] | undefined;
|
|
6271
6274
|
required?: boolean | undefined;
|
|
@@ -6284,7 +6287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6284
6287
|
hint?: string | undefined;
|
|
6285
6288
|
messages?: {
|
|
6286
6289
|
text: string;
|
|
6287
|
-
type: "
|
|
6290
|
+
type: "error" | "success" | "info" | "warning";
|
|
6288
6291
|
id?: number | undefined;
|
|
6289
6292
|
}[] | undefined;
|
|
6290
6293
|
required?: boolean | undefined;
|
|
@@ -6306,7 +6309,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6306
6309
|
hint?: string | undefined;
|
|
6307
6310
|
messages?: {
|
|
6308
6311
|
text: string;
|
|
6309
|
-
type: "
|
|
6312
|
+
type: "error" | "success" | "info" | "warning";
|
|
6310
6313
|
id?: number | undefined;
|
|
6311
6314
|
}[] | undefined;
|
|
6312
6315
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6331,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6328
6331
|
hint?: string | undefined;
|
|
6329
6332
|
messages?: {
|
|
6330
6333
|
text: string;
|
|
6331
|
-
type: "
|
|
6334
|
+
type: "error" | "success" | "info" | "warning";
|
|
6332
6335
|
id?: number | undefined;
|
|
6333
6336
|
}[] | undefined;
|
|
6334
6337
|
required?: boolean | undefined;
|
|
@@ -6347,7 +6350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6347
6350
|
hint?: string | undefined;
|
|
6348
6351
|
messages?: {
|
|
6349
6352
|
text: string;
|
|
6350
|
-
type: "
|
|
6353
|
+
type: "error" | "success" | "info" | "warning";
|
|
6351
6354
|
id?: number | undefined;
|
|
6352
6355
|
}[] | undefined;
|
|
6353
6356
|
required?: boolean | undefined;
|
|
@@ -6372,7 +6375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6372
6375
|
hint?: string | undefined;
|
|
6373
6376
|
messages?: {
|
|
6374
6377
|
text: string;
|
|
6375
|
-
type: "
|
|
6378
|
+
type: "error" | "success" | "info" | "warning";
|
|
6376
6379
|
id?: number | undefined;
|
|
6377
6380
|
}[] | undefined;
|
|
6378
6381
|
required?: boolean | undefined;
|
|
@@ -6393,7 +6396,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6393
6396
|
hint?: string | undefined;
|
|
6394
6397
|
messages?: {
|
|
6395
6398
|
text: string;
|
|
6396
|
-
type: "
|
|
6399
|
+
type: "error" | "success" | "info" | "warning";
|
|
6397
6400
|
id?: number | undefined;
|
|
6398
6401
|
}[] | undefined;
|
|
6399
6402
|
required?: boolean | undefined;
|
|
@@ -6414,7 +6417,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6414
6417
|
hint?: string | undefined;
|
|
6415
6418
|
messages?: {
|
|
6416
6419
|
text: string;
|
|
6417
|
-
type: "
|
|
6420
|
+
type: "error" | "success" | "info" | "warning";
|
|
6418
6421
|
id?: number | undefined;
|
|
6419
6422
|
}[] | undefined;
|
|
6420
6423
|
required?: boolean | undefined;
|
|
@@ -6644,7 +6647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6644
6647
|
};
|
|
6645
6648
|
};
|
|
6646
6649
|
output: {
|
|
6647
|
-
prompt: "
|
|
6650
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6648
6651
|
language: string;
|
|
6649
6652
|
}[];
|
|
6650
6653
|
outputFormat: "json";
|
|
@@ -6682,7 +6685,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6682
6685
|
$get: {
|
|
6683
6686
|
input: {
|
|
6684
6687
|
param: {
|
|
6685
|
-
prompt: "
|
|
6688
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6686
6689
|
language: string;
|
|
6687
6690
|
};
|
|
6688
6691
|
} & {
|
|
@@ -6704,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6704
6707
|
$put: {
|
|
6705
6708
|
input: {
|
|
6706
6709
|
param: {
|
|
6707
|
-
prompt: "
|
|
6710
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6708
6711
|
language: string;
|
|
6709
6712
|
};
|
|
6710
6713
|
} & {
|
|
@@ -6728,7 +6731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6728
6731
|
$delete: {
|
|
6729
6732
|
input: {
|
|
6730
6733
|
param: {
|
|
6731
|
-
prompt: "
|
|
6734
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6732
6735
|
language: string;
|
|
6733
6736
|
};
|
|
6734
6737
|
} & {
|
|
@@ -7590,7 +7593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7590
7593
|
};
|
|
7591
7594
|
} | {
|
|
7592
7595
|
mode: "inline";
|
|
7593
|
-
status: "
|
|
7596
|
+
status: "error" | "success";
|
|
7594
7597
|
connection_id: string;
|
|
7595
7598
|
connection_name: string;
|
|
7596
7599
|
strategy: string;
|
|
@@ -8817,7 +8820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8817
8820
|
};
|
|
8818
8821
|
};
|
|
8819
8822
|
output: {
|
|
8820
|
-
type: "
|
|
8823
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8821
8824
|
date: string;
|
|
8822
8825
|
isMobile: boolean;
|
|
8823
8826
|
log_id: string;
|
|
@@ -8856,7 +8859,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8856
8859
|
limit: number;
|
|
8857
8860
|
length: number;
|
|
8858
8861
|
logs: {
|
|
8859
|
-
type: "
|
|
8862
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8860
8863
|
date: string;
|
|
8861
8864
|
isMobile: boolean;
|
|
8862
8865
|
log_id: string;
|
|
@@ -8910,7 +8913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8910
8913
|
};
|
|
8911
8914
|
};
|
|
8912
8915
|
output: {
|
|
8913
|
-
type: "
|
|
8916
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8914
8917
|
date: string;
|
|
8915
8918
|
isMobile: boolean;
|
|
8916
8919
|
log_id: string;
|
|
@@ -8979,6 +8982,80 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8979
8982
|
};
|
|
8980
8983
|
};
|
|
8981
8984
|
}, "/client-registration-tokens"> & import("hono/types").MergeSchemaPath<{
|
|
8985
|
+
"/": {
|
|
8986
|
+
$get: {
|
|
8987
|
+
input: {
|
|
8988
|
+
query: {
|
|
8989
|
+
per_page?: string | undefined;
|
|
8990
|
+
page?: string | undefined;
|
|
8991
|
+
include_totals?: string | undefined;
|
|
8992
|
+
user_id?: string | undefined;
|
|
8993
|
+
client_id?: string | undefined;
|
|
8994
|
+
audience?: string | undefined;
|
|
8995
|
+
};
|
|
8996
|
+
} & {
|
|
8997
|
+
header: {
|
|
8998
|
+
"tenant-id"?: string | undefined;
|
|
8999
|
+
};
|
|
9000
|
+
};
|
|
9001
|
+
output: {
|
|
9002
|
+
user_id: string;
|
|
9003
|
+
clientID: string;
|
|
9004
|
+
scope: string[];
|
|
9005
|
+
id: string;
|
|
9006
|
+
audience?: string | undefined;
|
|
9007
|
+
}[] | {
|
|
9008
|
+
start: number;
|
|
9009
|
+
limit: number;
|
|
9010
|
+
length: number;
|
|
9011
|
+
grants: {
|
|
9012
|
+
user_id: string;
|
|
9013
|
+
clientID: string;
|
|
9014
|
+
scope: string[];
|
|
9015
|
+
id: string;
|
|
9016
|
+
audience?: string | undefined;
|
|
9017
|
+
}[];
|
|
9018
|
+
total?: number | undefined;
|
|
9019
|
+
};
|
|
9020
|
+
outputFormat: "json";
|
|
9021
|
+
status: 200;
|
|
9022
|
+
};
|
|
9023
|
+
};
|
|
9024
|
+
} & {
|
|
9025
|
+
"/:id": {
|
|
9026
|
+
$delete: {
|
|
9027
|
+
input: {
|
|
9028
|
+
param: {
|
|
9029
|
+
id: string;
|
|
9030
|
+
};
|
|
9031
|
+
} & {
|
|
9032
|
+
header: {
|
|
9033
|
+
"tenant-id"?: string | undefined;
|
|
9034
|
+
};
|
|
9035
|
+
};
|
|
9036
|
+
output: {};
|
|
9037
|
+
outputFormat: string;
|
|
9038
|
+
status: 204;
|
|
9039
|
+
};
|
|
9040
|
+
};
|
|
9041
|
+
} & {
|
|
9042
|
+
"/": {
|
|
9043
|
+
$delete: {
|
|
9044
|
+
input: {
|
|
9045
|
+
query: {
|
|
9046
|
+
user_id: string;
|
|
9047
|
+
};
|
|
9048
|
+
} & {
|
|
9049
|
+
header: {
|
|
9050
|
+
"tenant-id"?: string | undefined;
|
|
9051
|
+
};
|
|
9052
|
+
};
|
|
9053
|
+
output: {};
|
|
9054
|
+
outputFormat: string;
|
|
9055
|
+
status: 204;
|
|
9056
|
+
};
|
|
9057
|
+
};
|
|
9058
|
+
}, "/grants"> & import("hono/types").MergeSchemaPath<{
|
|
8982
9059
|
"/": {
|
|
8983
9060
|
$get: {
|
|
8984
9061
|
input: {
|
|
@@ -9224,7 +9301,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9224
9301
|
addons?: {
|
|
9225
9302
|
[x: string]: any;
|
|
9226
9303
|
} | undefined;
|
|
9227
|
-
token_endpoint_auth_method?: "none" | "
|
|
9304
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9228
9305
|
client_metadata?: {
|
|
9229
9306
|
[x: string]: string;
|
|
9230
9307
|
} | undefined;
|
|
@@ -9320,7 +9397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9320
9397
|
addons?: {
|
|
9321
9398
|
[x: string]: any;
|
|
9322
9399
|
} | undefined;
|
|
9323
|
-
token_endpoint_auth_method?: "none" | "
|
|
9400
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9324
9401
|
client_metadata?: {
|
|
9325
9402
|
[x: string]: string;
|
|
9326
9403
|
} | undefined;
|
|
@@ -9431,7 +9508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9431
9508
|
addons?: {
|
|
9432
9509
|
[x: string]: any;
|
|
9433
9510
|
} | undefined;
|
|
9434
|
-
token_endpoint_auth_method?: "none" | "
|
|
9511
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9435
9512
|
client_metadata?: {
|
|
9436
9513
|
[x: string]: string;
|
|
9437
9514
|
} | undefined;
|
|
@@ -9541,7 +9618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9541
9618
|
custom_login_page_preview?: string | undefined;
|
|
9542
9619
|
form_template?: string | undefined;
|
|
9543
9620
|
addons?: Record<string, any> | undefined;
|
|
9544
|
-
token_endpoint_auth_method?: "none" | "
|
|
9621
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9545
9622
|
client_metadata?: Record<string, string> | undefined;
|
|
9546
9623
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9547
9624
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9621,7 +9698,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9621
9698
|
addons?: {
|
|
9622
9699
|
[x: string]: any;
|
|
9623
9700
|
} | undefined;
|
|
9624
|
-
token_endpoint_auth_method?: "none" | "
|
|
9701
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9625
9702
|
client_metadata?: {
|
|
9626
9703
|
[x: string]: string;
|
|
9627
9704
|
} | undefined;
|
|
@@ -9710,7 +9787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9710
9787
|
custom_login_page_preview?: string | undefined;
|
|
9711
9788
|
form_template?: string | undefined;
|
|
9712
9789
|
addons?: Record<string, any> | undefined;
|
|
9713
|
-
token_endpoint_auth_method?: "none" | "
|
|
9790
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9714
9791
|
client_metadata?: Record<string, string> | undefined;
|
|
9715
9792
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9716
9793
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9790,7 +9867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9790
9867
|
addons?: {
|
|
9791
9868
|
[x: string]: any;
|
|
9792
9869
|
} | undefined;
|
|
9793
|
-
token_endpoint_auth_method?: "none" | "
|
|
9870
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9794
9871
|
client_metadata?: {
|
|
9795
9872
|
[x: string]: string;
|
|
9796
9873
|
} | undefined;
|
|
@@ -11054,7 +11131,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11054
11131
|
};
|
|
11055
11132
|
};
|
|
11056
11133
|
output: {
|
|
11057
|
-
type: "
|
|
11134
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11058
11135
|
date: string;
|
|
11059
11136
|
isMobile: boolean;
|
|
11060
11137
|
log_id: string;
|
|
@@ -11093,7 +11170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11093
11170
|
limit: number;
|
|
11094
11171
|
length: number;
|
|
11095
11172
|
logs: {
|
|
11096
|
-
type: "
|
|
11173
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11097
11174
|
date: string;
|
|
11098
11175
|
isMobile: boolean;
|
|
11099
11176
|
log_id: string;
|
|
@@ -11408,7 +11485,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11408
11485
|
};
|
|
11409
11486
|
} & {
|
|
11410
11487
|
json: {
|
|
11411
|
-
template: "
|
|
11488
|
+
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";
|
|
11412
11489
|
body: string;
|
|
11413
11490
|
from: string;
|
|
11414
11491
|
subject: string;
|
|
@@ -11429,7 +11506,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11429
11506
|
};
|
|
11430
11507
|
} & {
|
|
11431
11508
|
json: {
|
|
11432
|
-
template: "
|
|
11509
|
+
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";
|
|
11433
11510
|
body: string;
|
|
11434
11511
|
from: string;
|
|
11435
11512
|
subject: string;
|
|
@@ -11441,7 +11518,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11441
11518
|
};
|
|
11442
11519
|
};
|
|
11443
11520
|
output: {
|
|
11444
|
-
template: "
|
|
11521
|
+
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";
|
|
11445
11522
|
body: string;
|
|
11446
11523
|
from: string;
|
|
11447
11524
|
subject: string;
|
|
@@ -11455,12 +11532,29 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11455
11532
|
status: 201;
|
|
11456
11533
|
};
|
|
11457
11534
|
};
|
|
11535
|
+
} & {
|
|
11536
|
+
"/defaults": {
|
|
11537
|
+
$get: {
|
|
11538
|
+
input: {
|
|
11539
|
+
header: {
|
|
11540
|
+
"tenant-id"?: string | undefined;
|
|
11541
|
+
};
|
|
11542
|
+
};
|
|
11543
|
+
output: {
|
|
11544
|
+
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
|
+
body: string;
|
|
11546
|
+
subject: string;
|
|
11547
|
+
}[];
|
|
11548
|
+
outputFormat: "json";
|
|
11549
|
+
status: 200;
|
|
11550
|
+
};
|
|
11551
|
+
};
|
|
11458
11552
|
} & {
|
|
11459
11553
|
"/:templateName": {
|
|
11460
11554
|
$get: {
|
|
11461
11555
|
input: {
|
|
11462
11556
|
param: {
|
|
11463
|
-
templateName: "
|
|
11557
|
+
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";
|
|
11464
11558
|
};
|
|
11465
11559
|
} & {
|
|
11466
11560
|
header: {
|
|
@@ -11473,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11473
11567
|
} | {
|
|
11474
11568
|
input: {
|
|
11475
11569
|
param: {
|
|
11476
|
-
templateName: "
|
|
11570
|
+
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";
|
|
11477
11571
|
};
|
|
11478
11572
|
} & {
|
|
11479
11573
|
header: {
|
|
@@ -11481,7 +11575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11481
11575
|
};
|
|
11482
11576
|
};
|
|
11483
11577
|
output: {
|
|
11484
|
-
template: "
|
|
11578
|
+
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";
|
|
11485
11579
|
body: string;
|
|
11486
11580
|
from: string;
|
|
11487
11581
|
subject: string;
|
|
@@ -11500,7 +11594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11500
11594
|
$put: {
|
|
11501
11595
|
input: {
|
|
11502
11596
|
param: {
|
|
11503
|
-
templateName: "
|
|
11597
|
+
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";
|
|
11504
11598
|
};
|
|
11505
11599
|
} & {
|
|
11506
11600
|
header: {
|
|
@@ -11508,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11508
11602
|
};
|
|
11509
11603
|
} & {
|
|
11510
11604
|
json: {
|
|
11511
|
-
template: "
|
|
11605
|
+
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";
|
|
11512
11606
|
body: string;
|
|
11513
11607
|
from: string;
|
|
11514
11608
|
subject: string;
|
|
@@ -11520,7 +11614,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11520
11614
|
};
|
|
11521
11615
|
};
|
|
11522
11616
|
output: {
|
|
11523
|
-
template: "
|
|
11617
|
+
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
11618
|
body: string;
|
|
11525
11619
|
from: string;
|
|
11526
11620
|
subject: string;
|
|
@@ -11539,7 +11633,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11539
11633
|
$patch: {
|
|
11540
11634
|
input: {
|
|
11541
11635
|
param: {
|
|
11542
|
-
templateName: "
|
|
11636
|
+
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";
|
|
11543
11637
|
};
|
|
11544
11638
|
} & {
|
|
11545
11639
|
header: {
|
|
@@ -11547,7 +11641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11547
11641
|
};
|
|
11548
11642
|
} & {
|
|
11549
11643
|
json: {
|
|
11550
|
-
template?: "
|
|
11644
|
+
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;
|
|
11551
11645
|
body?: string | undefined;
|
|
11552
11646
|
from?: string | undefined;
|
|
11553
11647
|
subject?: string | undefined;
|
|
@@ -11564,7 +11658,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11564
11658
|
} | {
|
|
11565
11659
|
input: {
|
|
11566
11660
|
param: {
|
|
11567
|
-
templateName: "
|
|
11661
|
+
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";
|
|
11568
11662
|
};
|
|
11569
11663
|
} & {
|
|
11570
11664
|
header: {
|
|
@@ -11572,7 +11666,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11572
11666
|
};
|
|
11573
11667
|
} & {
|
|
11574
11668
|
json: {
|
|
11575
|
-
template?: "
|
|
11669
|
+
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;
|
|
11576
11670
|
body?: string | undefined;
|
|
11577
11671
|
from?: string | undefined;
|
|
11578
11672
|
subject?: string | undefined;
|
|
@@ -11584,7 +11678,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11584
11678
|
};
|
|
11585
11679
|
};
|
|
11586
11680
|
output: {
|
|
11587
|
-
template: "
|
|
11681
|
+
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";
|
|
11588
11682
|
body: string;
|
|
11589
11683
|
from: string;
|
|
11590
11684
|
subject: string;
|
|
@@ -12676,7 +12770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12676
12770
|
output: {
|
|
12677
12771
|
id: string;
|
|
12678
12772
|
trigger_id: string;
|
|
12679
|
-
status: "
|
|
12773
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
12680
12774
|
results: {
|
|
12681
12775
|
action_name: string;
|
|
12682
12776
|
error: {
|
|
@@ -13688,7 +13782,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13688
13782
|
scope?: string | undefined;
|
|
13689
13783
|
grant_types?: string[] | undefined;
|
|
13690
13784
|
response_types?: string[] | undefined;
|
|
13691
|
-
token_endpoint_auth_method?: "none" | "
|
|
13785
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13692
13786
|
jwks_uri?: string | undefined;
|
|
13693
13787
|
jwks?: Record<string, unknown> | undefined;
|
|
13694
13788
|
software_id?: string | undefined;
|
|
@@ -13777,7 +13871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13777
13871
|
scope?: string | undefined;
|
|
13778
13872
|
grant_types?: string[] | undefined;
|
|
13779
13873
|
response_types?: string[] | undefined;
|
|
13780
|
-
token_endpoint_auth_method?: "none" | "
|
|
13874
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13781
13875
|
jwks_uri?: string | undefined;
|
|
13782
13876
|
jwks?: Record<string, unknown> | undefined;
|
|
13783
13877
|
software_id?: string | undefined;
|
|
@@ -14124,18 +14218,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14124
14218
|
send: "code" | "link";
|
|
14125
14219
|
authParams: {
|
|
14126
14220
|
username?: string | undefined;
|
|
14127
|
-
|
|
14221
|
+
state?: string | undefined;
|
|
14128
14222
|
audience?: string | undefined;
|
|
14223
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14224
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14225
|
+
scope?: string | undefined;
|
|
14129
14226
|
organization?: string | undefined;
|
|
14130
|
-
code_challenge?: string | undefined;
|
|
14131
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14132
|
-
redirect_uri?: string | undefined;
|
|
14133
14227
|
nonce?: string | undefined;
|
|
14134
|
-
|
|
14228
|
+
redirect_uri?: string | undefined;
|
|
14135
14229
|
act_as?: string | undefined;
|
|
14136
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14137
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14138
14230
|
prompt?: string | undefined;
|
|
14231
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14232
|
+
code_challenge?: string | undefined;
|
|
14139
14233
|
ui_locales?: string | undefined;
|
|
14140
14234
|
max_age?: number | undefined;
|
|
14141
14235
|
acr_values?: string | undefined;
|
|
@@ -14160,18 +14254,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14160
14254
|
send: "code" | "link";
|
|
14161
14255
|
authParams: {
|
|
14162
14256
|
username?: string | undefined;
|
|
14163
|
-
|
|
14257
|
+
state?: string | undefined;
|
|
14164
14258
|
audience?: string | undefined;
|
|
14259
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14260
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14261
|
+
scope?: string | undefined;
|
|
14165
14262
|
organization?: string | undefined;
|
|
14166
|
-
code_challenge?: string | undefined;
|
|
14167
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14168
|
-
redirect_uri?: string | undefined;
|
|
14169
14263
|
nonce?: string | undefined;
|
|
14170
|
-
|
|
14264
|
+
redirect_uri?: string | undefined;
|
|
14171
14265
|
act_as?: string | undefined;
|
|
14172
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14173
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14174
14266
|
prompt?: string | undefined;
|
|
14267
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14268
|
+
code_challenge?: string | undefined;
|
|
14175
14269
|
ui_locales?: string | undefined;
|
|
14176
14270
|
max_age?: number | undefined;
|
|
14177
14271
|
acr_values?: string | undefined;
|
|
@@ -14401,7 +14495,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14401
14495
|
client_id: string;
|
|
14402
14496
|
username: string;
|
|
14403
14497
|
otp: string;
|
|
14404
|
-
realm: "
|
|
14498
|
+
realm: "sms" | "email";
|
|
14405
14499
|
};
|
|
14406
14500
|
} & {
|
|
14407
14501
|
json: {
|
|
@@ -14437,7 +14531,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14437
14531
|
client_id: string;
|
|
14438
14532
|
username: string;
|
|
14439
14533
|
otp: string;
|
|
14440
|
-
realm: "
|
|
14534
|
+
realm: "sms" | "email";
|
|
14441
14535
|
};
|
|
14442
14536
|
};
|
|
14443
14537
|
output: {};
|
|
@@ -14478,7 +14572,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14478
14572
|
client_id: string;
|
|
14479
14573
|
username: string;
|
|
14480
14574
|
otp: string;
|
|
14481
|
-
realm: "
|
|
14575
|
+
realm: "sms" | "email";
|
|
14482
14576
|
};
|
|
14483
14577
|
} & {
|
|
14484
14578
|
json: {
|
|
@@ -14514,7 +14608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14514
14608
|
client_id: string;
|
|
14515
14609
|
username: string;
|
|
14516
14610
|
otp: string;
|
|
14517
|
-
realm: "
|
|
14611
|
+
realm: "sms" | "email";
|
|
14518
14612
|
};
|
|
14519
14613
|
};
|
|
14520
14614
|
output: {
|
|
@@ -14563,7 +14657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14563
14657
|
client_id: string;
|
|
14564
14658
|
username: string;
|
|
14565
14659
|
otp: string;
|
|
14566
|
-
realm: "
|
|
14660
|
+
realm: "sms" | "email";
|
|
14567
14661
|
};
|
|
14568
14662
|
} & {
|
|
14569
14663
|
json: {
|
|
@@ -14599,7 +14693,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14599
14693
|
client_id: string;
|
|
14600
14694
|
username: string;
|
|
14601
14695
|
otp: string;
|
|
14602
|
-
realm: "
|
|
14696
|
+
realm: "sms" | "email";
|
|
14603
14697
|
};
|
|
14604
14698
|
};
|
|
14605
14699
|
output: {
|
|
@@ -14643,7 +14737,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14643
14737
|
client_id: string;
|
|
14644
14738
|
username: string;
|
|
14645
14739
|
otp: string;
|
|
14646
|
-
realm: "
|
|
14740
|
+
realm: "sms" | "email";
|
|
14647
14741
|
};
|
|
14648
14742
|
} & {
|
|
14649
14743
|
json: {
|
|
@@ -14679,7 +14773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14679
14773
|
client_id: string;
|
|
14680
14774
|
username: string;
|
|
14681
14775
|
otp: string;
|
|
14682
|
-
realm: "
|
|
14776
|
+
realm: "sms" | "email";
|
|
14683
14777
|
};
|
|
14684
14778
|
};
|
|
14685
14779
|
output: {
|
|
@@ -14723,7 +14817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14723
14817
|
client_id: string;
|
|
14724
14818
|
username: string;
|
|
14725
14819
|
otp: string;
|
|
14726
|
-
realm: "
|
|
14820
|
+
realm: "sms" | "email";
|
|
14727
14821
|
};
|
|
14728
14822
|
} & {
|
|
14729
14823
|
json: {
|
|
@@ -14759,7 +14853,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14759
14853
|
client_id: string;
|
|
14760
14854
|
username: string;
|
|
14761
14855
|
otp: string;
|
|
14762
|
-
realm: "
|
|
14856
|
+
realm: "sms" | "email";
|
|
14763
14857
|
};
|
|
14764
14858
|
};
|
|
14765
14859
|
output: {
|
|
@@ -15968,7 +16062,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15968
16062
|
$get: {
|
|
15969
16063
|
input: {
|
|
15970
16064
|
param: {
|
|
15971
|
-
screen: "signup" | "
|
|
16065
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15972
16066
|
};
|
|
15973
16067
|
} & {
|
|
15974
16068
|
query: {
|
|
@@ -15984,7 +16078,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15984
16078
|
} | {
|
|
15985
16079
|
input: {
|
|
15986
16080
|
param: {
|
|
15987
|
-
screen: "signup" | "
|
|
16081
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15988
16082
|
};
|
|
15989
16083
|
} & {
|
|
15990
16084
|
query: {
|
|
@@ -16000,7 +16094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16000
16094
|
} | {
|
|
16001
16095
|
input: {
|
|
16002
16096
|
param: {
|
|
16003
|
-
screen: "signup" | "
|
|
16097
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16004
16098
|
};
|
|
16005
16099
|
} & {
|
|
16006
16100
|
query: {
|
|
@@ -16020,7 +16114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16020
16114
|
$post: {
|
|
16021
16115
|
input: {
|
|
16022
16116
|
param: {
|
|
16023
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16117
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16024
16118
|
};
|
|
16025
16119
|
} & {
|
|
16026
16120
|
query: {
|
|
@@ -16038,7 +16132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16038
16132
|
} | {
|
|
16039
16133
|
input: {
|
|
16040
16134
|
param: {
|
|
16041
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16135
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16042
16136
|
};
|
|
16043
16137
|
} & {
|
|
16044
16138
|
query: {
|
|
@@ -16056,7 +16150,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16056
16150
|
} | {
|
|
16057
16151
|
input: {
|
|
16058
16152
|
param: {
|
|
16059
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16153
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16060
16154
|
};
|
|
16061
16155
|
} & {
|
|
16062
16156
|
query: {
|