authhero 5.15.0 → 5.16.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/js/client.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +116 -116
- package/dist/authhero.d.ts +271 -225
- package/dist/authhero.mjs +10024 -9934
- package/dist/client.js +1 -1
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/index.d.ts +271 -225
- package/dist/types/routes/auth-api/authorize.d.ts +12 -12
- package/dist/types/routes/auth-api/index.d.ts +47 -47
- package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/token.d.ts +21 -21
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +52 -6
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +212 -166
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -4
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
- package/dist/types/routes/universal-login/index.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +4 -4
- package/dist/types/routes/universal-login/u2-routes.d.ts +4 -4
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +5 -5
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "
|
|
40
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
177
177
|
};
|
|
178
178
|
};
|
|
179
179
|
output: {
|
|
180
|
-
name: "
|
|
180
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
181
181
|
enabled: boolean;
|
|
182
182
|
trial_expired?: boolean | undefined;
|
|
183
183
|
}[];
|
|
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
332
332
|
$get: {
|
|
333
333
|
input: {
|
|
334
334
|
param: {
|
|
335
|
-
factor_name: "
|
|
335
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
336
336
|
};
|
|
337
337
|
} & {
|
|
338
338
|
header: {
|
|
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
340
340
|
};
|
|
341
341
|
};
|
|
342
342
|
output: {
|
|
343
|
-
name: "
|
|
343
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
344
344
|
enabled: boolean;
|
|
345
345
|
trial_expired?: boolean | undefined;
|
|
346
346
|
};
|
|
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
353
353
|
$put: {
|
|
354
354
|
input: {
|
|
355
355
|
param: {
|
|
356
|
-
factor_name: "
|
|
356
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
357
357
|
};
|
|
358
358
|
} & {
|
|
359
359
|
header: {
|
|
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
output: {
|
|
368
|
-
name: "
|
|
368
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -1110,10 +1110,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1110
1110
|
invitee: {
|
|
1111
1111
|
email?: string | undefined;
|
|
1112
1112
|
};
|
|
1113
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1114
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1115
1113
|
id?: string | undefined;
|
|
1116
1114
|
connection_id?: string | undefined;
|
|
1115
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1116
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1117
1117
|
roles?: string[] | undefined;
|
|
1118
1118
|
ttl_sec?: number | undefined;
|
|
1119
1119
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1298,8 +1298,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1298
1298
|
};
|
|
1299
1299
|
} & {
|
|
1300
1300
|
json: {
|
|
1301
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1302
1301
|
show_as_button?: boolean | undefined;
|
|
1302
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1303
1303
|
is_signup_enabled?: boolean | undefined;
|
|
1304
1304
|
};
|
|
1305
1305
|
};
|
|
@@ -2541,7 +2541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2541
2541
|
hint?: string | undefined;
|
|
2542
2542
|
messages?: {
|
|
2543
2543
|
text: string;
|
|
2544
|
-
type: "
|
|
2544
|
+
type: "error" | "success" | "info" | "warning";
|
|
2545
2545
|
id?: number | undefined;
|
|
2546
2546
|
}[] | undefined;
|
|
2547
2547
|
required?: boolean | undefined;
|
|
@@ -2559,7 +2559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2559
2559
|
hint?: string | undefined;
|
|
2560
2560
|
messages?: {
|
|
2561
2561
|
text: string;
|
|
2562
|
-
type: "
|
|
2562
|
+
type: "error" | "success" | "info" | "warning";
|
|
2563
2563
|
id?: number | undefined;
|
|
2564
2564
|
}[] | undefined;
|
|
2565
2565
|
required?: boolean | undefined;
|
|
@@ -2583,7 +2583,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2583
2583
|
hint?: string | undefined;
|
|
2584
2584
|
messages?: {
|
|
2585
2585
|
text: string;
|
|
2586
|
-
type: "
|
|
2586
|
+
type: "error" | "success" | "info" | "warning";
|
|
2587
2587
|
id?: number | undefined;
|
|
2588
2588
|
}[] | undefined;
|
|
2589
2589
|
required?: boolean | undefined;
|
|
@@ -2607,7 +2607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2607
2607
|
hint?: string | undefined;
|
|
2608
2608
|
messages?: {
|
|
2609
2609
|
text: string;
|
|
2610
|
-
type: "
|
|
2610
|
+
type: "error" | "success" | "info" | "warning";
|
|
2611
2611
|
id?: number | undefined;
|
|
2612
2612
|
}[] | undefined;
|
|
2613
2613
|
required?: boolean | undefined;
|
|
@@ -2636,7 +2636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2636
2636
|
hint?: string | undefined;
|
|
2637
2637
|
messages?: {
|
|
2638
2638
|
text: string;
|
|
2639
|
-
type: "
|
|
2639
|
+
type: "error" | "success" | "info" | "warning";
|
|
2640
2640
|
id?: number | undefined;
|
|
2641
2641
|
}[] | undefined;
|
|
2642
2642
|
required?: boolean | undefined;
|
|
@@ -2651,7 +2651,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2651
2651
|
hint?: string | undefined;
|
|
2652
2652
|
messages?: {
|
|
2653
2653
|
text: string;
|
|
2654
|
-
type: "
|
|
2654
|
+
type: "error" | "success" | "info" | "warning";
|
|
2655
2655
|
id?: number | undefined;
|
|
2656
2656
|
}[] | undefined;
|
|
2657
2657
|
required?: boolean | undefined;
|
|
@@ -2672,7 +2672,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2672
2672
|
hint?: string | undefined;
|
|
2673
2673
|
messages?: {
|
|
2674
2674
|
text: string;
|
|
2675
|
-
type: "
|
|
2675
|
+
type: "error" | "success" | "info" | "warning";
|
|
2676
2676
|
id?: number | undefined;
|
|
2677
2677
|
}[] | undefined;
|
|
2678
2678
|
required?: boolean | undefined;
|
|
@@ -2697,7 +2697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2697
2697
|
hint?: string | undefined;
|
|
2698
2698
|
messages?: {
|
|
2699
2699
|
text: string;
|
|
2700
|
-
type: "
|
|
2700
|
+
type: "error" | "success" | "info" | "warning";
|
|
2701
2701
|
id?: number | undefined;
|
|
2702
2702
|
}[] | undefined;
|
|
2703
2703
|
required?: boolean | undefined;
|
|
@@ -2716,7 +2716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2716
2716
|
hint?: string | undefined;
|
|
2717
2717
|
messages?: {
|
|
2718
2718
|
text: string;
|
|
2719
|
-
type: "
|
|
2719
|
+
type: "error" | "success" | "info" | "warning";
|
|
2720
2720
|
id?: number | undefined;
|
|
2721
2721
|
}[] | undefined;
|
|
2722
2722
|
required?: boolean | undefined;
|
|
@@ -2736,7 +2736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2736
2736
|
hint?: string | undefined;
|
|
2737
2737
|
messages?: {
|
|
2738
2738
|
text: string;
|
|
2739
|
-
type: "
|
|
2739
|
+
type: "error" | "success" | "info" | "warning";
|
|
2740
2740
|
id?: number | undefined;
|
|
2741
2741
|
}[] | undefined;
|
|
2742
2742
|
required?: boolean | undefined;
|
|
@@ -2755,7 +2755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2755
2755
|
hint?: string | undefined;
|
|
2756
2756
|
messages?: {
|
|
2757
2757
|
text: string;
|
|
2758
|
-
type: "
|
|
2758
|
+
type: "error" | "success" | "info" | "warning";
|
|
2759
2759
|
id?: number | undefined;
|
|
2760
2760
|
}[] | undefined;
|
|
2761
2761
|
required?: boolean | undefined;
|
|
@@ -2777,7 +2777,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2777
2777
|
hint?: string | undefined;
|
|
2778
2778
|
messages?: {
|
|
2779
2779
|
text: string;
|
|
2780
|
-
type: "
|
|
2780
|
+
type: "error" | "success" | "info" | "warning";
|
|
2781
2781
|
id?: number | undefined;
|
|
2782
2782
|
}[] | undefined;
|
|
2783
2783
|
required?: boolean | undefined;
|
|
@@ -2799,7 +2799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2799
2799
|
hint?: string | undefined;
|
|
2800
2800
|
messages?: {
|
|
2801
2801
|
text: string;
|
|
2802
|
-
type: "
|
|
2802
|
+
type: "error" | "success" | "info" | "warning";
|
|
2803
2803
|
id?: number | undefined;
|
|
2804
2804
|
}[] | undefined;
|
|
2805
2805
|
required?: boolean | undefined;
|
|
@@ -2818,7 +2818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2818
2818
|
hint?: string | undefined;
|
|
2819
2819
|
messages?: {
|
|
2820
2820
|
text: string;
|
|
2821
|
-
type: "
|
|
2821
|
+
type: "error" | "success" | "info" | "warning";
|
|
2822
2822
|
id?: number | undefined;
|
|
2823
2823
|
}[] | undefined;
|
|
2824
2824
|
required?: boolean | undefined;
|
|
@@ -2843,7 +2843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2843
2843
|
hint?: string | undefined;
|
|
2844
2844
|
messages?: {
|
|
2845
2845
|
text: string;
|
|
2846
|
-
type: "
|
|
2846
|
+
type: "error" | "success" | "info" | "warning";
|
|
2847
2847
|
id?: number | undefined;
|
|
2848
2848
|
}[] | undefined;
|
|
2849
2849
|
required?: boolean | undefined;
|
|
@@ -2864,7 +2864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2864
2864
|
hint?: string | undefined;
|
|
2865
2865
|
messages?: {
|
|
2866
2866
|
text: string;
|
|
2867
|
-
type: "
|
|
2867
|
+
type: "error" | "success" | "info" | "warning";
|
|
2868
2868
|
id?: number | undefined;
|
|
2869
2869
|
}[] | undefined;
|
|
2870
2870
|
required?: boolean | undefined;
|
|
@@ -2885,7 +2885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2885
2885
|
hint?: string | undefined;
|
|
2886
2886
|
messages?: {
|
|
2887
2887
|
text: string;
|
|
2888
|
-
type: "
|
|
2888
|
+
type: "error" | "success" | "info" | "warning";
|
|
2889
2889
|
id?: number | undefined;
|
|
2890
2890
|
}[] | undefined;
|
|
2891
2891
|
required?: boolean | undefined;
|
|
@@ -3118,7 +3118,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3118
3118
|
hint?: string | undefined;
|
|
3119
3119
|
messages?: {
|
|
3120
3120
|
text: string;
|
|
3121
|
-
type: "
|
|
3121
|
+
type: "error" | "success" | "info" | "warning";
|
|
3122
3122
|
id?: number | undefined;
|
|
3123
3123
|
}[] | undefined;
|
|
3124
3124
|
required?: boolean | undefined;
|
|
@@ -3136,7 +3136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3136
3136
|
hint?: string | undefined;
|
|
3137
3137
|
messages?: {
|
|
3138
3138
|
text: string;
|
|
3139
|
-
type: "
|
|
3139
|
+
type: "error" | "success" | "info" | "warning";
|
|
3140
3140
|
id?: number | undefined;
|
|
3141
3141
|
}[] | undefined;
|
|
3142
3142
|
required?: boolean | undefined;
|
|
@@ -3160,7 +3160,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3160
3160
|
hint?: string | undefined;
|
|
3161
3161
|
messages?: {
|
|
3162
3162
|
text: string;
|
|
3163
|
-
type: "
|
|
3163
|
+
type: "error" | "success" | "info" | "warning";
|
|
3164
3164
|
id?: number | undefined;
|
|
3165
3165
|
}[] | undefined;
|
|
3166
3166
|
required?: boolean | undefined;
|
|
@@ -3184,7 +3184,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3184
3184
|
hint?: string | undefined;
|
|
3185
3185
|
messages?: {
|
|
3186
3186
|
text: string;
|
|
3187
|
-
type: "
|
|
3187
|
+
type: "error" | "success" | "info" | "warning";
|
|
3188
3188
|
id?: number | undefined;
|
|
3189
3189
|
}[] | undefined;
|
|
3190
3190
|
required?: boolean | undefined;
|
|
@@ -3213,7 +3213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3213
3213
|
hint?: string | undefined;
|
|
3214
3214
|
messages?: {
|
|
3215
3215
|
text: string;
|
|
3216
|
-
type: "
|
|
3216
|
+
type: "error" | "success" | "info" | "warning";
|
|
3217
3217
|
id?: number | undefined;
|
|
3218
3218
|
}[] | undefined;
|
|
3219
3219
|
required?: boolean | undefined;
|
|
@@ -3228,7 +3228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3228
3228
|
hint?: string | undefined;
|
|
3229
3229
|
messages?: {
|
|
3230
3230
|
text: string;
|
|
3231
|
-
type: "
|
|
3231
|
+
type: "error" | "success" | "info" | "warning";
|
|
3232
3232
|
id?: number | undefined;
|
|
3233
3233
|
}[] | undefined;
|
|
3234
3234
|
required?: boolean | undefined;
|
|
@@ -3249,7 +3249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3249
3249
|
hint?: string | undefined;
|
|
3250
3250
|
messages?: {
|
|
3251
3251
|
text: string;
|
|
3252
|
-
type: "
|
|
3252
|
+
type: "error" | "success" | "info" | "warning";
|
|
3253
3253
|
id?: number | undefined;
|
|
3254
3254
|
}[] | undefined;
|
|
3255
3255
|
required?: boolean | undefined;
|
|
@@ -3274,7 +3274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3274
3274
|
hint?: string | undefined;
|
|
3275
3275
|
messages?: {
|
|
3276
3276
|
text: string;
|
|
3277
|
-
type: "
|
|
3277
|
+
type: "error" | "success" | "info" | "warning";
|
|
3278
3278
|
id?: number | undefined;
|
|
3279
3279
|
}[] | undefined;
|
|
3280
3280
|
required?: boolean | undefined;
|
|
@@ -3293,7 +3293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3293
3293
|
hint?: string | undefined;
|
|
3294
3294
|
messages?: {
|
|
3295
3295
|
text: string;
|
|
3296
|
-
type: "
|
|
3296
|
+
type: "error" | "success" | "info" | "warning";
|
|
3297
3297
|
id?: number | undefined;
|
|
3298
3298
|
}[] | undefined;
|
|
3299
3299
|
required?: boolean | undefined;
|
|
@@ -3313,7 +3313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3313
3313
|
hint?: string | undefined;
|
|
3314
3314
|
messages?: {
|
|
3315
3315
|
text: string;
|
|
3316
|
-
type: "
|
|
3316
|
+
type: "error" | "success" | "info" | "warning";
|
|
3317
3317
|
id?: number | undefined;
|
|
3318
3318
|
}[] | undefined;
|
|
3319
3319
|
required?: boolean | undefined;
|
|
@@ -3332,7 +3332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3332
3332
|
hint?: string | undefined;
|
|
3333
3333
|
messages?: {
|
|
3334
3334
|
text: string;
|
|
3335
|
-
type: "
|
|
3335
|
+
type: "error" | "success" | "info" | "warning";
|
|
3336
3336
|
id?: number | undefined;
|
|
3337
3337
|
}[] | undefined;
|
|
3338
3338
|
required?: boolean | undefined;
|
|
@@ -3354,7 +3354,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3354
3354
|
hint?: string | undefined;
|
|
3355
3355
|
messages?: {
|
|
3356
3356
|
text: string;
|
|
3357
|
-
type: "
|
|
3357
|
+
type: "error" | "success" | "info" | "warning";
|
|
3358
3358
|
id?: number | undefined;
|
|
3359
3359
|
}[] | undefined;
|
|
3360
3360
|
required?: boolean | undefined;
|
|
@@ -3376,7 +3376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3376
3376
|
hint?: string | undefined;
|
|
3377
3377
|
messages?: {
|
|
3378
3378
|
text: string;
|
|
3379
|
-
type: "
|
|
3379
|
+
type: "error" | "success" | "info" | "warning";
|
|
3380
3380
|
id?: number | undefined;
|
|
3381
3381
|
}[] | undefined;
|
|
3382
3382
|
required?: boolean | undefined;
|
|
@@ -3395,7 +3395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3395
3395
|
hint?: string | undefined;
|
|
3396
3396
|
messages?: {
|
|
3397
3397
|
text: string;
|
|
3398
|
-
type: "
|
|
3398
|
+
type: "error" | "success" | "info" | "warning";
|
|
3399
3399
|
id?: number | undefined;
|
|
3400
3400
|
}[] | undefined;
|
|
3401
3401
|
required?: boolean | undefined;
|
|
@@ -3420,7 +3420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3420
3420
|
hint?: string | undefined;
|
|
3421
3421
|
messages?: {
|
|
3422
3422
|
text: string;
|
|
3423
|
-
type: "
|
|
3423
|
+
type: "error" | "success" | "info" | "warning";
|
|
3424
3424
|
id?: number | undefined;
|
|
3425
3425
|
}[] | undefined;
|
|
3426
3426
|
required?: boolean | undefined;
|
|
@@ -3441,7 +3441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3441
3441
|
hint?: string | undefined;
|
|
3442
3442
|
messages?: {
|
|
3443
3443
|
text: string;
|
|
3444
|
-
type: "
|
|
3444
|
+
type: "error" | "success" | "info" | "warning";
|
|
3445
3445
|
id?: number | undefined;
|
|
3446
3446
|
}[] | undefined;
|
|
3447
3447
|
required?: boolean | undefined;
|
|
@@ -3462,7 +3462,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3462
3462
|
hint?: string | undefined;
|
|
3463
3463
|
messages?: {
|
|
3464
3464
|
text: string;
|
|
3465
|
-
type: "
|
|
3465
|
+
type: "error" | "success" | "info" | "warning";
|
|
3466
3466
|
id?: number | undefined;
|
|
3467
3467
|
}[] | undefined;
|
|
3468
3468
|
required?: boolean | undefined;
|
|
@@ -3710,7 +3710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3710
3710
|
hint?: string | undefined;
|
|
3711
3711
|
messages?: {
|
|
3712
3712
|
text: string;
|
|
3713
|
-
type: "
|
|
3713
|
+
type: "error" | "success" | "info" | "warning";
|
|
3714
3714
|
id?: number | undefined;
|
|
3715
3715
|
}[] | undefined;
|
|
3716
3716
|
required?: boolean | undefined;
|
|
@@ -3728,7 +3728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3728
3728
|
hint?: string | undefined;
|
|
3729
3729
|
messages?: {
|
|
3730
3730
|
text: string;
|
|
3731
|
-
type: "
|
|
3731
|
+
type: "error" | "success" | "info" | "warning";
|
|
3732
3732
|
id?: number | undefined;
|
|
3733
3733
|
}[] | undefined;
|
|
3734
3734
|
required?: boolean | undefined;
|
|
@@ -3752,7 +3752,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3752
3752
|
hint?: string | undefined;
|
|
3753
3753
|
messages?: {
|
|
3754
3754
|
text: string;
|
|
3755
|
-
type: "
|
|
3755
|
+
type: "error" | "success" | "info" | "warning";
|
|
3756
3756
|
id?: number | undefined;
|
|
3757
3757
|
}[] | undefined;
|
|
3758
3758
|
required?: boolean | undefined;
|
|
@@ -3776,7 +3776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3776
3776
|
hint?: string | undefined;
|
|
3777
3777
|
messages?: {
|
|
3778
3778
|
text: string;
|
|
3779
|
-
type: "
|
|
3779
|
+
type: "error" | "success" | "info" | "warning";
|
|
3780
3780
|
id?: number | undefined;
|
|
3781
3781
|
}[] | undefined;
|
|
3782
3782
|
required?: boolean | undefined;
|
|
@@ -3805,7 +3805,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3805
3805
|
hint?: string | undefined;
|
|
3806
3806
|
messages?: {
|
|
3807
3807
|
text: string;
|
|
3808
|
-
type: "
|
|
3808
|
+
type: "error" | "success" | "info" | "warning";
|
|
3809
3809
|
id?: number | undefined;
|
|
3810
3810
|
}[] | undefined;
|
|
3811
3811
|
required?: boolean | undefined;
|
|
@@ -3820,7 +3820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3820
3820
|
hint?: string | undefined;
|
|
3821
3821
|
messages?: {
|
|
3822
3822
|
text: string;
|
|
3823
|
-
type: "
|
|
3823
|
+
type: "error" | "success" | "info" | "warning";
|
|
3824
3824
|
id?: number | undefined;
|
|
3825
3825
|
}[] | undefined;
|
|
3826
3826
|
required?: boolean | undefined;
|
|
@@ -3841,7 +3841,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3841
3841
|
hint?: string | undefined;
|
|
3842
3842
|
messages?: {
|
|
3843
3843
|
text: string;
|
|
3844
|
-
type: "
|
|
3844
|
+
type: "error" | "success" | "info" | "warning";
|
|
3845
3845
|
id?: number | undefined;
|
|
3846
3846
|
}[] | undefined;
|
|
3847
3847
|
required?: boolean | undefined;
|
|
@@ -3866,7 +3866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3866
3866
|
hint?: string | undefined;
|
|
3867
3867
|
messages?: {
|
|
3868
3868
|
text: string;
|
|
3869
|
-
type: "
|
|
3869
|
+
type: "error" | "success" | "info" | "warning";
|
|
3870
3870
|
id?: number | undefined;
|
|
3871
3871
|
}[] | undefined;
|
|
3872
3872
|
required?: boolean | undefined;
|
|
@@ -3885,7 +3885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3885
3885
|
hint?: string | undefined;
|
|
3886
3886
|
messages?: {
|
|
3887
3887
|
text: string;
|
|
3888
|
-
type: "
|
|
3888
|
+
type: "error" | "success" | "info" | "warning";
|
|
3889
3889
|
id?: number | undefined;
|
|
3890
3890
|
}[] | undefined;
|
|
3891
3891
|
required?: boolean | undefined;
|
|
@@ -3905,7 +3905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3905
3905
|
hint?: string | undefined;
|
|
3906
3906
|
messages?: {
|
|
3907
3907
|
text: string;
|
|
3908
|
-
type: "
|
|
3908
|
+
type: "error" | "success" | "info" | "warning";
|
|
3909
3909
|
id?: number | undefined;
|
|
3910
3910
|
}[] | undefined;
|
|
3911
3911
|
required?: boolean | undefined;
|
|
@@ -3924,7 +3924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3924
3924
|
hint?: string | undefined;
|
|
3925
3925
|
messages?: {
|
|
3926
3926
|
text: string;
|
|
3927
|
-
type: "
|
|
3927
|
+
type: "error" | "success" | "info" | "warning";
|
|
3928
3928
|
id?: number | undefined;
|
|
3929
3929
|
}[] | undefined;
|
|
3930
3930
|
required?: boolean | undefined;
|
|
@@ -3946,7 +3946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3946
3946
|
hint?: string | undefined;
|
|
3947
3947
|
messages?: {
|
|
3948
3948
|
text: string;
|
|
3949
|
-
type: "
|
|
3949
|
+
type: "error" | "success" | "info" | "warning";
|
|
3950
3950
|
id?: number | undefined;
|
|
3951
3951
|
}[] | undefined;
|
|
3952
3952
|
required?: boolean | undefined;
|
|
@@ -3968,7 +3968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3968
3968
|
hint?: string | undefined;
|
|
3969
3969
|
messages?: {
|
|
3970
3970
|
text: string;
|
|
3971
|
-
type: "
|
|
3971
|
+
type: "error" | "success" | "info" | "warning";
|
|
3972
3972
|
id?: number | undefined;
|
|
3973
3973
|
}[] | undefined;
|
|
3974
3974
|
required?: boolean | undefined;
|
|
@@ -3987,7 +3987,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3987
3987
|
hint?: string | undefined;
|
|
3988
3988
|
messages?: {
|
|
3989
3989
|
text: string;
|
|
3990
|
-
type: "
|
|
3990
|
+
type: "error" | "success" | "info" | "warning";
|
|
3991
3991
|
id?: number | undefined;
|
|
3992
3992
|
}[] | undefined;
|
|
3993
3993
|
required?: boolean | undefined;
|
|
@@ -4012,7 +4012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4012
4012
|
hint?: string | undefined;
|
|
4013
4013
|
messages?: {
|
|
4014
4014
|
text: string;
|
|
4015
|
-
type: "
|
|
4015
|
+
type: "error" | "success" | "info" | "warning";
|
|
4016
4016
|
id?: number | undefined;
|
|
4017
4017
|
}[] | undefined;
|
|
4018
4018
|
required?: boolean | undefined;
|
|
@@ -4033,7 +4033,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4033
4033
|
hint?: string | undefined;
|
|
4034
4034
|
messages?: {
|
|
4035
4035
|
text: string;
|
|
4036
|
-
type: "
|
|
4036
|
+
type: "error" | "success" | "info" | "warning";
|
|
4037
4037
|
id?: number | undefined;
|
|
4038
4038
|
}[] | undefined;
|
|
4039
4039
|
required?: boolean | undefined;
|
|
@@ -4054,7 +4054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4054
4054
|
hint?: string | undefined;
|
|
4055
4055
|
messages?: {
|
|
4056
4056
|
text: string;
|
|
4057
|
-
type: "
|
|
4057
|
+
type: "error" | "success" | "info" | "warning";
|
|
4058
4058
|
id?: number | undefined;
|
|
4059
4059
|
}[] | undefined;
|
|
4060
4060
|
required?: boolean | undefined;
|
|
@@ -4308,7 +4308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4308
4308
|
hint?: string | undefined;
|
|
4309
4309
|
messages?: {
|
|
4310
4310
|
text: string;
|
|
4311
|
-
type: "
|
|
4311
|
+
type: "error" | "success" | "info" | "warning";
|
|
4312
4312
|
id?: number | undefined;
|
|
4313
4313
|
}[] | undefined;
|
|
4314
4314
|
required?: boolean | undefined;
|
|
@@ -4326,7 +4326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4326
4326
|
hint?: string | undefined;
|
|
4327
4327
|
messages?: {
|
|
4328
4328
|
text: string;
|
|
4329
|
-
type: "
|
|
4329
|
+
type: "error" | "success" | "info" | "warning";
|
|
4330
4330
|
id?: number | undefined;
|
|
4331
4331
|
}[] | undefined;
|
|
4332
4332
|
required?: boolean | undefined;
|
|
@@ -4350,7 +4350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4350
4350
|
hint?: string | undefined;
|
|
4351
4351
|
messages?: {
|
|
4352
4352
|
text: string;
|
|
4353
|
-
type: "
|
|
4353
|
+
type: "error" | "success" | "info" | "warning";
|
|
4354
4354
|
id?: number | undefined;
|
|
4355
4355
|
}[] | undefined;
|
|
4356
4356
|
required?: boolean | undefined;
|
|
@@ -4374,7 +4374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4374
4374
|
hint?: string | undefined;
|
|
4375
4375
|
messages?: {
|
|
4376
4376
|
text: string;
|
|
4377
|
-
type: "
|
|
4377
|
+
type: "error" | "success" | "info" | "warning";
|
|
4378
4378
|
id?: number | undefined;
|
|
4379
4379
|
}[] | undefined;
|
|
4380
4380
|
required?: boolean | undefined;
|
|
@@ -4399,7 +4399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4399
4399
|
hint?: string | undefined;
|
|
4400
4400
|
messages?: {
|
|
4401
4401
|
text: string;
|
|
4402
|
-
type: "
|
|
4402
|
+
type: "error" | "success" | "info" | "warning";
|
|
4403
4403
|
id?: number | undefined;
|
|
4404
4404
|
}[] | undefined;
|
|
4405
4405
|
required?: boolean | undefined;
|
|
@@ -4414,7 +4414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4414
4414
|
hint?: string | undefined;
|
|
4415
4415
|
messages?: {
|
|
4416
4416
|
text: string;
|
|
4417
|
-
type: "
|
|
4417
|
+
type: "error" | "success" | "info" | "warning";
|
|
4418
4418
|
id?: number | undefined;
|
|
4419
4419
|
}[] | undefined;
|
|
4420
4420
|
required?: boolean | undefined;
|
|
@@ -4435,7 +4435,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4435
4435
|
hint?: string | undefined;
|
|
4436
4436
|
messages?: {
|
|
4437
4437
|
text: string;
|
|
4438
|
-
type: "
|
|
4438
|
+
type: "error" | "success" | "info" | "warning";
|
|
4439
4439
|
id?: number | undefined;
|
|
4440
4440
|
}[] | undefined;
|
|
4441
4441
|
required?: boolean | undefined;
|
|
@@ -4460,7 +4460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4460
4460
|
hint?: string | undefined;
|
|
4461
4461
|
messages?: {
|
|
4462
4462
|
text: string;
|
|
4463
|
-
type: "
|
|
4463
|
+
type: "error" | "success" | "info" | "warning";
|
|
4464
4464
|
id?: number | undefined;
|
|
4465
4465
|
}[] | undefined;
|
|
4466
4466
|
required?: boolean | undefined;
|
|
@@ -4479,7 +4479,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4479
4479
|
hint?: string | undefined;
|
|
4480
4480
|
messages?: {
|
|
4481
4481
|
text: string;
|
|
4482
|
-
type: "
|
|
4482
|
+
type: "error" | "success" | "info" | "warning";
|
|
4483
4483
|
id?: number | undefined;
|
|
4484
4484
|
}[] | undefined;
|
|
4485
4485
|
required?: boolean | undefined;
|
|
@@ -4499,7 +4499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4499
4499
|
hint?: string | undefined;
|
|
4500
4500
|
messages?: {
|
|
4501
4501
|
text: string;
|
|
4502
|
-
type: "
|
|
4502
|
+
type: "error" | "success" | "info" | "warning";
|
|
4503
4503
|
id?: number | undefined;
|
|
4504
4504
|
}[] | undefined;
|
|
4505
4505
|
required?: boolean | undefined;
|
|
@@ -4518,7 +4518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4518
4518
|
hint?: string | undefined;
|
|
4519
4519
|
messages?: {
|
|
4520
4520
|
text: string;
|
|
4521
|
-
type: "
|
|
4521
|
+
type: "error" | "success" | "info" | "warning";
|
|
4522
4522
|
id?: number | undefined;
|
|
4523
4523
|
}[] | undefined;
|
|
4524
4524
|
required?: boolean | undefined;
|
|
@@ -4540,7 +4540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4540
4540
|
hint?: string | undefined;
|
|
4541
4541
|
messages?: {
|
|
4542
4542
|
text: string;
|
|
4543
|
-
type: "
|
|
4543
|
+
type: "error" | "success" | "info" | "warning";
|
|
4544
4544
|
id?: number | undefined;
|
|
4545
4545
|
}[] | undefined;
|
|
4546
4546
|
required?: boolean | undefined;
|
|
@@ -4562,7 +4562,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4562
4562
|
hint?: string | undefined;
|
|
4563
4563
|
messages?: {
|
|
4564
4564
|
text: string;
|
|
4565
|
-
type: "
|
|
4565
|
+
type: "error" | "success" | "info" | "warning";
|
|
4566
4566
|
id?: number | undefined;
|
|
4567
4567
|
}[] | undefined;
|
|
4568
4568
|
required?: boolean | undefined;
|
|
@@ -4581,7 +4581,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4581
4581
|
hint?: string | undefined;
|
|
4582
4582
|
messages?: {
|
|
4583
4583
|
text: string;
|
|
4584
|
-
type: "
|
|
4584
|
+
type: "error" | "success" | "info" | "warning";
|
|
4585
4585
|
id?: number | undefined;
|
|
4586
4586
|
}[] | undefined;
|
|
4587
4587
|
required?: boolean | undefined;
|
|
@@ -4606,7 +4606,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4606
4606
|
hint?: string | undefined;
|
|
4607
4607
|
messages?: {
|
|
4608
4608
|
text: string;
|
|
4609
|
-
type: "
|
|
4609
|
+
type: "error" | "success" | "info" | "warning";
|
|
4610
4610
|
id?: number | undefined;
|
|
4611
4611
|
}[] | undefined;
|
|
4612
4612
|
required?: boolean | undefined;
|
|
@@ -4627,7 +4627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4627
4627
|
hint?: string | undefined;
|
|
4628
4628
|
messages?: {
|
|
4629
4629
|
text: string;
|
|
4630
|
-
type: "
|
|
4630
|
+
type: "error" | "success" | "info" | "warning";
|
|
4631
4631
|
id?: number | undefined;
|
|
4632
4632
|
}[] | undefined;
|
|
4633
4633
|
required?: boolean | undefined;
|
|
@@ -4648,7 +4648,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4648
4648
|
hint?: string | undefined;
|
|
4649
4649
|
messages?: {
|
|
4650
4650
|
text: string;
|
|
4651
|
-
type: "
|
|
4651
|
+
type: "error" | "success" | "info" | "warning";
|
|
4652
4652
|
id?: number | undefined;
|
|
4653
4653
|
}[] | undefined;
|
|
4654
4654
|
required?: boolean | undefined;
|
|
@@ -4879,7 +4879,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4879
4879
|
hint?: string | undefined;
|
|
4880
4880
|
messages?: {
|
|
4881
4881
|
text: string;
|
|
4882
|
-
type: "
|
|
4882
|
+
type: "error" | "success" | "info" | "warning";
|
|
4883
4883
|
id?: number | undefined;
|
|
4884
4884
|
}[] | undefined;
|
|
4885
4885
|
required?: boolean | undefined;
|
|
@@ -4897,7 +4897,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4897
4897
|
hint?: string | undefined;
|
|
4898
4898
|
messages?: {
|
|
4899
4899
|
text: string;
|
|
4900
|
-
type: "
|
|
4900
|
+
type: "error" | "success" | "info" | "warning";
|
|
4901
4901
|
id?: number | undefined;
|
|
4902
4902
|
}[] | undefined;
|
|
4903
4903
|
required?: boolean | undefined;
|
|
@@ -4921,7 +4921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4921
4921
|
hint?: string | undefined;
|
|
4922
4922
|
messages?: {
|
|
4923
4923
|
text: string;
|
|
4924
|
-
type: "
|
|
4924
|
+
type: "error" | "success" | "info" | "warning";
|
|
4925
4925
|
id?: number | undefined;
|
|
4926
4926
|
}[] | undefined;
|
|
4927
4927
|
required?: boolean | undefined;
|
|
@@ -4945,7 +4945,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4945
4945
|
hint?: string | undefined;
|
|
4946
4946
|
messages?: {
|
|
4947
4947
|
text: string;
|
|
4948
|
-
type: "
|
|
4948
|
+
type: "error" | "success" | "info" | "warning";
|
|
4949
4949
|
id?: number | undefined;
|
|
4950
4950
|
}[] | undefined;
|
|
4951
4951
|
required?: boolean | undefined;
|
|
@@ -4974,7 +4974,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4974
4974
|
hint?: string | undefined;
|
|
4975
4975
|
messages?: {
|
|
4976
4976
|
text: string;
|
|
4977
|
-
type: "
|
|
4977
|
+
type: "error" | "success" | "info" | "warning";
|
|
4978
4978
|
id?: number | undefined;
|
|
4979
4979
|
}[] | undefined;
|
|
4980
4980
|
required?: boolean | undefined;
|
|
@@ -4989,7 +4989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4989
4989
|
hint?: string | undefined;
|
|
4990
4990
|
messages?: {
|
|
4991
4991
|
text: string;
|
|
4992
|
-
type: "
|
|
4992
|
+
type: "error" | "success" | "info" | "warning";
|
|
4993
4993
|
id?: number | undefined;
|
|
4994
4994
|
}[] | undefined;
|
|
4995
4995
|
required?: boolean | undefined;
|
|
@@ -5010,7 +5010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5010
5010
|
hint?: string | undefined;
|
|
5011
5011
|
messages?: {
|
|
5012
5012
|
text: string;
|
|
5013
|
-
type: "
|
|
5013
|
+
type: "error" | "success" | "info" | "warning";
|
|
5014
5014
|
id?: number | undefined;
|
|
5015
5015
|
}[] | undefined;
|
|
5016
5016
|
required?: boolean | undefined;
|
|
@@ -5035,7 +5035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5035
5035
|
hint?: string | undefined;
|
|
5036
5036
|
messages?: {
|
|
5037
5037
|
text: string;
|
|
5038
|
-
type: "
|
|
5038
|
+
type: "error" | "success" | "info" | "warning";
|
|
5039
5039
|
id?: number | undefined;
|
|
5040
5040
|
}[] | undefined;
|
|
5041
5041
|
required?: boolean | undefined;
|
|
@@ -5054,7 +5054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5054
5054
|
hint?: string | undefined;
|
|
5055
5055
|
messages?: {
|
|
5056
5056
|
text: string;
|
|
5057
|
-
type: "
|
|
5057
|
+
type: "error" | "success" | "info" | "warning";
|
|
5058
5058
|
id?: number | undefined;
|
|
5059
5059
|
}[] | undefined;
|
|
5060
5060
|
required?: boolean | undefined;
|
|
@@ -5074,7 +5074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5074
5074
|
hint?: string | undefined;
|
|
5075
5075
|
messages?: {
|
|
5076
5076
|
text: string;
|
|
5077
|
-
type: "
|
|
5077
|
+
type: "error" | "success" | "info" | "warning";
|
|
5078
5078
|
id?: number | undefined;
|
|
5079
5079
|
}[] | undefined;
|
|
5080
5080
|
required?: boolean | undefined;
|
|
@@ -5093,7 +5093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5093
5093
|
hint?: string | undefined;
|
|
5094
5094
|
messages?: {
|
|
5095
5095
|
text: string;
|
|
5096
|
-
type: "
|
|
5096
|
+
type: "error" | "success" | "info" | "warning";
|
|
5097
5097
|
id?: number | undefined;
|
|
5098
5098
|
}[] | undefined;
|
|
5099
5099
|
required?: boolean | undefined;
|
|
@@ -5115,7 +5115,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5115
5115
|
hint?: string | undefined;
|
|
5116
5116
|
messages?: {
|
|
5117
5117
|
text: string;
|
|
5118
|
-
type: "
|
|
5118
|
+
type: "error" | "success" | "info" | "warning";
|
|
5119
5119
|
id?: number | undefined;
|
|
5120
5120
|
}[] | undefined;
|
|
5121
5121
|
required?: boolean | undefined;
|
|
@@ -5137,7 +5137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5137
5137
|
hint?: string | undefined;
|
|
5138
5138
|
messages?: {
|
|
5139
5139
|
text: string;
|
|
5140
|
-
type: "
|
|
5140
|
+
type: "error" | "success" | "info" | "warning";
|
|
5141
5141
|
id?: number | undefined;
|
|
5142
5142
|
}[] | undefined;
|
|
5143
5143
|
required?: boolean | undefined;
|
|
@@ -5156,7 +5156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5156
5156
|
hint?: string | undefined;
|
|
5157
5157
|
messages?: {
|
|
5158
5158
|
text: string;
|
|
5159
|
-
type: "
|
|
5159
|
+
type: "error" | "success" | "info" | "warning";
|
|
5160
5160
|
id?: number | undefined;
|
|
5161
5161
|
}[] | undefined;
|
|
5162
5162
|
required?: boolean | undefined;
|
|
@@ -5181,7 +5181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5181
5181
|
hint?: string | undefined;
|
|
5182
5182
|
messages?: {
|
|
5183
5183
|
text: string;
|
|
5184
|
-
type: "
|
|
5184
|
+
type: "error" | "success" | "info" | "warning";
|
|
5185
5185
|
id?: number | undefined;
|
|
5186
5186
|
}[] | undefined;
|
|
5187
5187
|
required?: boolean | undefined;
|
|
@@ -5202,7 +5202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5202
5202
|
hint?: string | undefined;
|
|
5203
5203
|
messages?: {
|
|
5204
5204
|
text: string;
|
|
5205
|
-
type: "
|
|
5205
|
+
type: "error" | "success" | "info" | "warning";
|
|
5206
5206
|
id?: number | undefined;
|
|
5207
5207
|
}[] | undefined;
|
|
5208
5208
|
required?: boolean | undefined;
|
|
@@ -5223,7 +5223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5223
5223
|
hint?: string | undefined;
|
|
5224
5224
|
messages?: {
|
|
5225
5225
|
text: string;
|
|
5226
|
-
type: "
|
|
5226
|
+
type: "error" | "success" | "info" | "warning";
|
|
5227
5227
|
id?: number | undefined;
|
|
5228
5228
|
}[] | undefined;
|
|
5229
5229
|
required?: boolean | undefined;
|
|
@@ -5456,7 +5456,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5456
5456
|
hint?: string | undefined;
|
|
5457
5457
|
messages?: {
|
|
5458
5458
|
text: string;
|
|
5459
|
-
type: "
|
|
5459
|
+
type: "error" | "success" | "info" | "warning";
|
|
5460
5460
|
id?: number | undefined;
|
|
5461
5461
|
}[] | undefined;
|
|
5462
5462
|
required?: boolean | undefined;
|
|
@@ -5474,7 +5474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5474
5474
|
hint?: string | undefined;
|
|
5475
5475
|
messages?: {
|
|
5476
5476
|
text: string;
|
|
5477
|
-
type: "
|
|
5477
|
+
type: "error" | "success" | "info" | "warning";
|
|
5478
5478
|
id?: number | undefined;
|
|
5479
5479
|
}[] | undefined;
|
|
5480
5480
|
required?: boolean | undefined;
|
|
@@ -5498,7 +5498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5498
5498
|
hint?: string | undefined;
|
|
5499
5499
|
messages?: {
|
|
5500
5500
|
text: string;
|
|
5501
|
-
type: "
|
|
5501
|
+
type: "error" | "success" | "info" | "warning";
|
|
5502
5502
|
id?: number | undefined;
|
|
5503
5503
|
}[] | undefined;
|
|
5504
5504
|
required?: boolean | undefined;
|
|
@@ -5522,7 +5522,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5522
5522
|
hint?: string | undefined;
|
|
5523
5523
|
messages?: {
|
|
5524
5524
|
text: string;
|
|
5525
|
-
type: "
|
|
5525
|
+
type: "error" | "success" | "info" | "warning";
|
|
5526
5526
|
id?: number | undefined;
|
|
5527
5527
|
}[] | undefined;
|
|
5528
5528
|
required?: boolean | undefined;
|
|
@@ -5547,7 +5547,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5547
5547
|
hint?: string | undefined;
|
|
5548
5548
|
messages?: {
|
|
5549
5549
|
text: string;
|
|
5550
|
-
type: "
|
|
5550
|
+
type: "error" | "success" | "info" | "warning";
|
|
5551
5551
|
id?: number | undefined;
|
|
5552
5552
|
}[] | undefined;
|
|
5553
5553
|
required?: boolean | undefined;
|
|
@@ -5562,7 +5562,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5562
5562
|
hint?: string | undefined;
|
|
5563
5563
|
messages?: {
|
|
5564
5564
|
text: string;
|
|
5565
|
-
type: "
|
|
5565
|
+
type: "error" | "success" | "info" | "warning";
|
|
5566
5566
|
id?: number | undefined;
|
|
5567
5567
|
}[] | undefined;
|
|
5568
5568
|
required?: boolean | undefined;
|
|
@@ -5583,7 +5583,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5583
5583
|
hint?: string | undefined;
|
|
5584
5584
|
messages?: {
|
|
5585
5585
|
text: string;
|
|
5586
|
-
type: "
|
|
5586
|
+
type: "error" | "success" | "info" | "warning";
|
|
5587
5587
|
id?: number | undefined;
|
|
5588
5588
|
}[] | undefined;
|
|
5589
5589
|
required?: boolean | undefined;
|
|
@@ -5608,7 +5608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5608
5608
|
hint?: string | undefined;
|
|
5609
5609
|
messages?: {
|
|
5610
5610
|
text: string;
|
|
5611
|
-
type: "
|
|
5611
|
+
type: "error" | "success" | "info" | "warning";
|
|
5612
5612
|
id?: number | undefined;
|
|
5613
5613
|
}[] | undefined;
|
|
5614
5614
|
required?: boolean | undefined;
|
|
@@ -5627,7 +5627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5627
5627
|
hint?: string | undefined;
|
|
5628
5628
|
messages?: {
|
|
5629
5629
|
text: string;
|
|
5630
|
-
type: "
|
|
5630
|
+
type: "error" | "success" | "info" | "warning";
|
|
5631
5631
|
id?: number | undefined;
|
|
5632
5632
|
}[] | undefined;
|
|
5633
5633
|
required?: boolean | undefined;
|
|
@@ -5647,7 +5647,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5647
5647
|
hint?: string | undefined;
|
|
5648
5648
|
messages?: {
|
|
5649
5649
|
text: string;
|
|
5650
|
-
type: "
|
|
5650
|
+
type: "error" | "success" | "info" | "warning";
|
|
5651
5651
|
id?: number | undefined;
|
|
5652
5652
|
}[] | undefined;
|
|
5653
5653
|
required?: boolean | undefined;
|
|
@@ -5666,7 +5666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5666
5666
|
hint?: string | undefined;
|
|
5667
5667
|
messages?: {
|
|
5668
5668
|
text: string;
|
|
5669
|
-
type: "
|
|
5669
|
+
type: "error" | "success" | "info" | "warning";
|
|
5670
5670
|
id?: number | undefined;
|
|
5671
5671
|
}[] | undefined;
|
|
5672
5672
|
required?: boolean | undefined;
|
|
@@ -5688,7 +5688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5688
5688
|
hint?: string | undefined;
|
|
5689
5689
|
messages?: {
|
|
5690
5690
|
text: string;
|
|
5691
|
-
type: "
|
|
5691
|
+
type: "error" | "success" | "info" | "warning";
|
|
5692
5692
|
id?: number | undefined;
|
|
5693
5693
|
}[] | undefined;
|
|
5694
5694
|
required?: boolean | undefined;
|
|
@@ -5710,7 +5710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5710
5710
|
hint?: string | undefined;
|
|
5711
5711
|
messages?: {
|
|
5712
5712
|
text: string;
|
|
5713
|
-
type: "
|
|
5713
|
+
type: "error" | "success" | "info" | "warning";
|
|
5714
5714
|
id?: number | undefined;
|
|
5715
5715
|
}[] | undefined;
|
|
5716
5716
|
required?: boolean | undefined;
|
|
@@ -5729,7 +5729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5729
5729
|
hint?: string | undefined;
|
|
5730
5730
|
messages?: {
|
|
5731
5731
|
text: string;
|
|
5732
|
-
type: "
|
|
5732
|
+
type: "error" | "success" | "info" | "warning";
|
|
5733
5733
|
id?: number | undefined;
|
|
5734
5734
|
}[] | undefined;
|
|
5735
5735
|
required?: boolean | undefined;
|
|
@@ -5754,7 +5754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5754
5754
|
hint?: string | undefined;
|
|
5755
5755
|
messages?: {
|
|
5756
5756
|
text: string;
|
|
5757
|
-
type: "
|
|
5757
|
+
type: "error" | "success" | "info" | "warning";
|
|
5758
5758
|
id?: number | undefined;
|
|
5759
5759
|
}[] | undefined;
|
|
5760
5760
|
required?: boolean | undefined;
|
|
@@ -5775,7 +5775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5775
5775
|
hint?: string | undefined;
|
|
5776
5776
|
messages?: {
|
|
5777
5777
|
text: string;
|
|
5778
|
-
type: "
|
|
5778
|
+
type: "error" | "success" | "info" | "warning";
|
|
5779
5779
|
id?: number | undefined;
|
|
5780
5780
|
}[] | undefined;
|
|
5781
5781
|
required?: boolean | undefined;
|
|
@@ -5796,7 +5796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5796
5796
|
hint?: string | undefined;
|
|
5797
5797
|
messages?: {
|
|
5798
5798
|
text: string;
|
|
5799
|
-
type: "
|
|
5799
|
+
type: "error" | "success" | "info" | "warning";
|
|
5800
5800
|
id?: number | undefined;
|
|
5801
5801
|
}[] | undefined;
|
|
5802
5802
|
required?: boolean | undefined;
|
|
@@ -6027,7 +6027,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6027
6027
|
hint?: string | undefined;
|
|
6028
6028
|
messages?: {
|
|
6029
6029
|
text: string;
|
|
6030
|
-
type: "
|
|
6030
|
+
type: "error" | "success" | "info" | "warning";
|
|
6031
6031
|
id?: number | undefined;
|
|
6032
6032
|
}[] | undefined;
|
|
6033
6033
|
required?: boolean | undefined;
|
|
@@ -6045,7 +6045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6045
6045
|
hint?: string | undefined;
|
|
6046
6046
|
messages?: {
|
|
6047
6047
|
text: string;
|
|
6048
|
-
type: "
|
|
6048
|
+
type: "error" | "success" | "info" | "warning";
|
|
6049
6049
|
id?: number | undefined;
|
|
6050
6050
|
}[] | undefined;
|
|
6051
6051
|
required?: boolean | undefined;
|
|
@@ -6069,7 +6069,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6069
6069
|
hint?: string | undefined;
|
|
6070
6070
|
messages?: {
|
|
6071
6071
|
text: string;
|
|
6072
|
-
type: "
|
|
6072
|
+
type: "error" | "success" | "info" | "warning";
|
|
6073
6073
|
id?: number | undefined;
|
|
6074
6074
|
}[] | undefined;
|
|
6075
6075
|
required?: boolean | undefined;
|
|
@@ -6093,7 +6093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6093
6093
|
hint?: string | undefined;
|
|
6094
6094
|
messages?: {
|
|
6095
6095
|
text: string;
|
|
6096
|
-
type: "
|
|
6096
|
+
type: "error" | "success" | "info" | "warning";
|
|
6097
6097
|
id?: number | undefined;
|
|
6098
6098
|
}[] | undefined;
|
|
6099
6099
|
required?: boolean | undefined;
|
|
@@ -6122,7 +6122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6122
6122
|
hint?: string | undefined;
|
|
6123
6123
|
messages?: {
|
|
6124
6124
|
text: string;
|
|
6125
|
-
type: "
|
|
6125
|
+
type: "error" | "success" | "info" | "warning";
|
|
6126
6126
|
id?: number | undefined;
|
|
6127
6127
|
}[] | undefined;
|
|
6128
6128
|
required?: boolean | undefined;
|
|
@@ -6137,7 +6137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6137
6137
|
hint?: string | undefined;
|
|
6138
6138
|
messages?: {
|
|
6139
6139
|
text: string;
|
|
6140
|
-
type: "
|
|
6140
|
+
type: "error" | "success" | "info" | "warning";
|
|
6141
6141
|
id?: number | undefined;
|
|
6142
6142
|
}[] | undefined;
|
|
6143
6143
|
required?: boolean | undefined;
|
|
@@ -6158,7 +6158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6158
6158
|
hint?: string | undefined;
|
|
6159
6159
|
messages?: {
|
|
6160
6160
|
text: string;
|
|
6161
|
-
type: "
|
|
6161
|
+
type: "error" | "success" | "info" | "warning";
|
|
6162
6162
|
id?: number | undefined;
|
|
6163
6163
|
}[] | undefined;
|
|
6164
6164
|
required?: boolean | undefined;
|
|
@@ -6183,7 +6183,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6183
6183
|
hint?: string | undefined;
|
|
6184
6184
|
messages?: {
|
|
6185
6185
|
text: string;
|
|
6186
|
-
type: "
|
|
6186
|
+
type: "error" | "success" | "info" | "warning";
|
|
6187
6187
|
id?: number | undefined;
|
|
6188
6188
|
}[] | undefined;
|
|
6189
6189
|
required?: boolean | undefined;
|
|
@@ -6202,7 +6202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6202
6202
|
hint?: string | undefined;
|
|
6203
6203
|
messages?: {
|
|
6204
6204
|
text: string;
|
|
6205
|
-
type: "
|
|
6205
|
+
type: "error" | "success" | "info" | "warning";
|
|
6206
6206
|
id?: number | undefined;
|
|
6207
6207
|
}[] | undefined;
|
|
6208
6208
|
required?: boolean | undefined;
|
|
@@ -6222,7 +6222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6222
6222
|
hint?: string | undefined;
|
|
6223
6223
|
messages?: {
|
|
6224
6224
|
text: string;
|
|
6225
|
-
type: "
|
|
6225
|
+
type: "error" | "success" | "info" | "warning";
|
|
6226
6226
|
id?: number | undefined;
|
|
6227
6227
|
}[] | undefined;
|
|
6228
6228
|
required?: boolean | undefined;
|
|
@@ -6241,7 +6241,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6241
6241
|
hint?: string | undefined;
|
|
6242
6242
|
messages?: {
|
|
6243
6243
|
text: string;
|
|
6244
|
-
type: "
|
|
6244
|
+
type: "error" | "success" | "info" | "warning";
|
|
6245
6245
|
id?: number | undefined;
|
|
6246
6246
|
}[] | undefined;
|
|
6247
6247
|
required?: boolean | undefined;
|
|
@@ -6263,7 +6263,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6263
6263
|
hint?: string | undefined;
|
|
6264
6264
|
messages?: {
|
|
6265
6265
|
text: string;
|
|
6266
|
-
type: "
|
|
6266
|
+
type: "error" | "success" | "info" | "warning";
|
|
6267
6267
|
id?: number | undefined;
|
|
6268
6268
|
}[] | undefined;
|
|
6269
6269
|
required?: boolean | undefined;
|
|
@@ -6285,7 +6285,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6285
6285
|
hint?: string | undefined;
|
|
6286
6286
|
messages?: {
|
|
6287
6287
|
text: string;
|
|
6288
|
-
type: "
|
|
6288
|
+
type: "error" | "success" | "info" | "warning";
|
|
6289
6289
|
id?: number | undefined;
|
|
6290
6290
|
}[] | undefined;
|
|
6291
6291
|
required?: boolean | undefined;
|
|
@@ -6304,7 +6304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6304
6304
|
hint?: string | undefined;
|
|
6305
6305
|
messages?: {
|
|
6306
6306
|
text: string;
|
|
6307
|
-
type: "
|
|
6307
|
+
type: "error" | "success" | "info" | "warning";
|
|
6308
6308
|
id?: number | undefined;
|
|
6309
6309
|
}[] | undefined;
|
|
6310
6310
|
required?: boolean | undefined;
|
|
@@ -6329,7 +6329,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6329
6329
|
hint?: string | undefined;
|
|
6330
6330
|
messages?: {
|
|
6331
6331
|
text: string;
|
|
6332
|
-
type: "
|
|
6332
|
+
type: "error" | "success" | "info" | "warning";
|
|
6333
6333
|
id?: number | undefined;
|
|
6334
6334
|
}[] | undefined;
|
|
6335
6335
|
required?: boolean | undefined;
|
|
@@ -6350,7 +6350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6350
6350
|
hint?: string | undefined;
|
|
6351
6351
|
messages?: {
|
|
6352
6352
|
text: string;
|
|
6353
|
-
type: "
|
|
6353
|
+
type: "error" | "success" | "info" | "warning";
|
|
6354
6354
|
id?: number | undefined;
|
|
6355
6355
|
}[] | undefined;
|
|
6356
6356
|
required?: boolean | undefined;
|
|
@@ -6371,7 +6371,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6371
6371
|
hint?: string | undefined;
|
|
6372
6372
|
messages?: {
|
|
6373
6373
|
text: string;
|
|
6374
|
-
type: "
|
|
6374
|
+
type: "error" | "success" | "info" | "warning";
|
|
6375
6375
|
id?: number | undefined;
|
|
6376
6376
|
}[] | undefined;
|
|
6377
6377
|
required?: boolean | undefined;
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "
|
|
6604
|
+
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";
|
|
6605
6605
|
language: string;
|
|
6606
6606
|
}[];
|
|
6607
6607
|
outputFormat: "json";
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
$get: {
|
|
6640
6640
|
input: {
|
|
6641
6641
|
param: {
|
|
6642
|
-
prompt: "
|
|
6642
|
+
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";
|
|
6643
6643
|
language: string;
|
|
6644
6644
|
};
|
|
6645
6645
|
} & {
|
|
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6661
6661
|
$put: {
|
|
6662
6662
|
input: {
|
|
6663
6663
|
param: {
|
|
6664
|
-
prompt: "
|
|
6664
|
+
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";
|
|
6665
6665
|
language: string;
|
|
6666
6666
|
};
|
|
6667
6667
|
} & {
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
$delete: {
|
|
6686
6686
|
input: {
|
|
6687
6687
|
param: {
|
|
6688
|
-
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";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -7547,7 +7547,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7547
7547
|
};
|
|
7548
7548
|
} | {
|
|
7549
7549
|
mode: "inline";
|
|
7550
|
-
status: "
|
|
7550
|
+
status: "error" | "success";
|
|
7551
7551
|
connection_id: string;
|
|
7552
7552
|
connection_name: string;
|
|
7553
7553
|
strategy: string;
|
|
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8774
8774
|
};
|
|
8775
8775
|
};
|
|
8776
8776
|
output: {
|
|
8777
|
-
type: "
|
|
8777
|
+
type: "fc" | "fd" | "i" | "fn" | "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";
|
|
8778
8778
|
date: string;
|
|
8779
8779
|
isMobile: boolean;
|
|
8780
8780
|
log_id: string;
|
|
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8813
8813
|
limit: number;
|
|
8814
8814
|
length: number;
|
|
8815
8815
|
logs: {
|
|
8816
|
-
type: "
|
|
8816
|
+
type: "fc" | "fd" | "i" | "fn" | "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";
|
|
8817
8817
|
date: string;
|
|
8818
8818
|
isMobile: boolean;
|
|
8819
8819
|
log_id: string;
|
|
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8867
8867
|
};
|
|
8868
8868
|
};
|
|
8869
8869
|
output: {
|
|
8870
|
-
type: "
|
|
8870
|
+
type: "fc" | "fd" | "i" | "fn" | "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";
|
|
8871
8871
|
date: string;
|
|
8872
8872
|
isMobile: boolean;
|
|
8873
8873
|
log_id: string;
|
|
@@ -11011,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11011
11011
|
};
|
|
11012
11012
|
};
|
|
11013
11013
|
output: {
|
|
11014
|
-
type: "
|
|
11014
|
+
type: "fc" | "fd" | "i" | "fn" | "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";
|
|
11015
11015
|
date: string;
|
|
11016
11016
|
isMobile: boolean;
|
|
11017
11017
|
log_id: string;
|
|
@@ -11050,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11050
11050
|
limit: number;
|
|
11051
11051
|
length: number;
|
|
11052
11052
|
logs: {
|
|
11053
|
-
type: "
|
|
11053
|
+
type: "fc" | "fd" | "i" | "fn" | "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";
|
|
11054
11054
|
date: string;
|
|
11055
11055
|
isMobile: boolean;
|
|
11056
11056
|
log_id: string;
|
|
@@ -11365,7 +11365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11365
11365
|
};
|
|
11366
11366
|
} & {
|
|
11367
11367
|
json: {
|
|
11368
|
-
template: "
|
|
11368
|
+
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";
|
|
11369
11369
|
body: string;
|
|
11370
11370
|
from: string;
|
|
11371
11371
|
subject: string;
|
|
@@ -11386,7 +11386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11386
11386
|
};
|
|
11387
11387
|
} & {
|
|
11388
11388
|
json: {
|
|
11389
|
-
template: "
|
|
11389
|
+
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";
|
|
11390
11390
|
body: string;
|
|
11391
11391
|
from: string;
|
|
11392
11392
|
subject: string;
|
|
@@ -11398,7 +11398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11398
11398
|
};
|
|
11399
11399
|
};
|
|
11400
11400
|
output: {
|
|
11401
|
-
template: "
|
|
11401
|
+
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";
|
|
11402
11402
|
body: string;
|
|
11403
11403
|
from: string;
|
|
11404
11404
|
subject: string;
|
|
@@ -11417,7 +11417,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11417
11417
|
$get: {
|
|
11418
11418
|
input: {
|
|
11419
11419
|
param: {
|
|
11420
|
-
templateName: "
|
|
11420
|
+
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";
|
|
11421
11421
|
};
|
|
11422
11422
|
} & {
|
|
11423
11423
|
header: {
|
|
@@ -11430,7 +11430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11430
11430
|
} | {
|
|
11431
11431
|
input: {
|
|
11432
11432
|
param: {
|
|
11433
|
-
templateName: "
|
|
11433
|
+
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";
|
|
11434
11434
|
};
|
|
11435
11435
|
} & {
|
|
11436
11436
|
header: {
|
|
@@ -11438,7 +11438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11438
11438
|
};
|
|
11439
11439
|
};
|
|
11440
11440
|
output: {
|
|
11441
|
-
template: "
|
|
11441
|
+
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";
|
|
11442
11442
|
body: string;
|
|
11443
11443
|
from: string;
|
|
11444
11444
|
subject: string;
|
|
@@ -11457,7 +11457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11457
11457
|
$put: {
|
|
11458
11458
|
input: {
|
|
11459
11459
|
param: {
|
|
11460
|
-
templateName: "
|
|
11460
|
+
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";
|
|
11461
11461
|
};
|
|
11462
11462
|
} & {
|
|
11463
11463
|
header: {
|
|
@@ -11465,7 +11465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11465
11465
|
};
|
|
11466
11466
|
} & {
|
|
11467
11467
|
json: {
|
|
11468
|
-
template: "
|
|
11468
|
+
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";
|
|
11469
11469
|
body: string;
|
|
11470
11470
|
from: string;
|
|
11471
11471
|
subject: string;
|
|
@@ -11477,7 +11477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11477
11477
|
};
|
|
11478
11478
|
};
|
|
11479
11479
|
output: {
|
|
11480
|
-
template: "
|
|
11480
|
+
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";
|
|
11481
11481
|
body: string;
|
|
11482
11482
|
from: string;
|
|
11483
11483
|
subject: string;
|
|
@@ -11496,7 +11496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11496
11496
|
$patch: {
|
|
11497
11497
|
input: {
|
|
11498
11498
|
param: {
|
|
11499
|
-
templateName: "
|
|
11499
|
+
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";
|
|
11500
11500
|
};
|
|
11501
11501
|
} & {
|
|
11502
11502
|
header: {
|
|
@@ -11504,7 +11504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11504
11504
|
};
|
|
11505
11505
|
} & {
|
|
11506
11506
|
json: {
|
|
11507
|
-
template?: "
|
|
11507
|
+
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;
|
|
11508
11508
|
body?: string | undefined;
|
|
11509
11509
|
from?: string | undefined;
|
|
11510
11510
|
subject?: string | undefined;
|
|
@@ -11521,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11521
11521
|
} | {
|
|
11522
11522
|
input: {
|
|
11523
11523
|
param: {
|
|
11524
|
-
templateName: "
|
|
11524
|
+
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";
|
|
11525
11525
|
};
|
|
11526
11526
|
} & {
|
|
11527
11527
|
header: {
|
|
@@ -11529,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11529
11529
|
};
|
|
11530
11530
|
} & {
|
|
11531
11531
|
json: {
|
|
11532
|
-
template?: "
|
|
11532
|
+
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;
|
|
11533
11533
|
body?: string | undefined;
|
|
11534
11534
|
from?: string | undefined;
|
|
11535
11535
|
subject?: string | undefined;
|
|
@@ -11541,7 +11541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11541
11541
|
};
|
|
11542
11542
|
};
|
|
11543
11543
|
output: {
|
|
11544
|
-
template: "
|
|
11544
|
+
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";
|
|
11545
11545
|
body: string;
|
|
11546
11546
|
from: string;
|
|
11547
11547
|
subject: string;
|
|
@@ -11816,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11816
11816
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11817
11817
|
custom_domain_id: string;
|
|
11818
11818
|
primary: boolean;
|
|
11819
|
-
status: "
|
|
11819
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11820
11820
|
verification_method?: "txt" | undefined;
|
|
11821
11821
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11822
11822
|
domain_metadata?: {
|
|
@@ -11857,7 +11857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11857
11857
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11858
11858
|
custom_domain_id: string;
|
|
11859
11859
|
primary: boolean;
|
|
11860
|
-
status: "
|
|
11860
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11861
11861
|
verification_method?: "txt" | undefined;
|
|
11862
11862
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11863
11863
|
domain_metadata?: {
|
|
@@ -11918,7 +11918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11918
11918
|
domain_metadata?: Record<string, string> | undefined;
|
|
11919
11919
|
custom_domain_id?: string | undefined;
|
|
11920
11920
|
primary?: boolean | undefined;
|
|
11921
|
-
status?: "
|
|
11921
|
+
status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
|
|
11922
11922
|
origin_domain_name?: string | undefined;
|
|
11923
11923
|
verification?: {
|
|
11924
11924
|
methods: ({
|
|
@@ -11939,7 +11939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11939
11939
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11940
11940
|
custom_domain_id: string;
|
|
11941
11941
|
primary: boolean;
|
|
11942
|
-
status: "
|
|
11942
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11943
11943
|
verification_method?: "txt" | undefined;
|
|
11944
11944
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11945
11945
|
domain_metadata?: {
|
|
@@ -11986,7 +11986,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11986
11986
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11987
11987
|
custom_domain_id: string;
|
|
11988
11988
|
primary: boolean;
|
|
11989
|
-
status: "
|
|
11989
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11990
11990
|
verification_method?: "txt" | undefined;
|
|
11991
11991
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11992
11992
|
domain_metadata?: {
|
|
@@ -12010,6 +12010,52 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12010
12010
|
status: 201;
|
|
12011
12011
|
};
|
|
12012
12012
|
};
|
|
12013
|
+
} & {
|
|
12014
|
+
"/:id/certificate": {
|
|
12015
|
+
$put: {
|
|
12016
|
+
input: {
|
|
12017
|
+
param: {
|
|
12018
|
+
id: string;
|
|
12019
|
+
};
|
|
12020
|
+
} & {
|
|
12021
|
+
header: {
|
|
12022
|
+
"tenant-id"?: string | undefined;
|
|
12023
|
+
};
|
|
12024
|
+
} & {
|
|
12025
|
+
json: {
|
|
12026
|
+
certificate: string;
|
|
12027
|
+
private_key: string;
|
|
12028
|
+
};
|
|
12029
|
+
};
|
|
12030
|
+
output: {
|
|
12031
|
+
domain: string;
|
|
12032
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12033
|
+
custom_domain_id: string;
|
|
12034
|
+
primary: boolean;
|
|
12035
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12036
|
+
verification_method?: "txt" | undefined;
|
|
12037
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12038
|
+
domain_metadata?: {
|
|
12039
|
+
[x: string]: string;
|
|
12040
|
+
} | undefined;
|
|
12041
|
+
origin_domain_name?: string | undefined;
|
|
12042
|
+
verification?: {
|
|
12043
|
+
methods: ({
|
|
12044
|
+
name: "txt";
|
|
12045
|
+
record: string;
|
|
12046
|
+
domain: string;
|
|
12047
|
+
} | {
|
|
12048
|
+
name: "http";
|
|
12049
|
+
http_body: string;
|
|
12050
|
+
http_url: string;
|
|
12051
|
+
})[];
|
|
12052
|
+
} | undefined;
|
|
12053
|
+
tls_policy?: string | undefined;
|
|
12054
|
+
};
|
|
12055
|
+
outputFormat: "json";
|
|
12056
|
+
status: 200;
|
|
12057
|
+
};
|
|
12058
|
+
};
|
|
12013
12059
|
} & {
|
|
12014
12060
|
"/:id/verify": {
|
|
12015
12061
|
$post: {
|
|
@@ -12027,7 +12073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12027
12073
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12028
12074
|
custom_domain_id: string;
|
|
12029
12075
|
primary: boolean;
|
|
12030
|
-
status: "
|
|
12076
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12031
12077
|
verification_method?: "txt" | undefined;
|
|
12032
12078
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12033
12079
|
domain_metadata?: {
|
|
@@ -12075,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12075
12121
|
base_focus_color: string;
|
|
12076
12122
|
base_hover_color: string;
|
|
12077
12123
|
body_text: string;
|
|
12078
|
-
captcha_widget_theme: "
|
|
12124
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12079
12125
|
error: string;
|
|
12080
12126
|
header: string;
|
|
12081
12127
|
icons: string;
|
|
@@ -12165,7 +12211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12165
12211
|
base_focus_color: string;
|
|
12166
12212
|
base_hover_color: string;
|
|
12167
12213
|
body_text: string;
|
|
12168
|
-
captcha_widget_theme: "
|
|
12214
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12169
12215
|
error: string;
|
|
12170
12216
|
header: string;
|
|
12171
12217
|
icons: string;
|
|
@@ -12244,7 +12290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12244
12290
|
base_focus_color: string;
|
|
12245
12291
|
base_hover_color: string;
|
|
12246
12292
|
body_text: string;
|
|
12247
|
-
captcha_widget_theme: "
|
|
12293
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12248
12294
|
error: string;
|
|
12249
12295
|
header: string;
|
|
12250
12296
|
icons: string;
|
|
@@ -12334,7 +12380,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12334
12380
|
font?: {
|
|
12335
12381
|
url: string;
|
|
12336
12382
|
} | undefined;
|
|
12337
|
-
dark_mode?: "
|
|
12383
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12338
12384
|
};
|
|
12339
12385
|
outputFormat: "json";
|
|
12340
12386
|
status: 200;
|
|
@@ -12364,7 +12410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12364
12410
|
font?: {
|
|
12365
12411
|
url: string;
|
|
12366
12412
|
} | undefined;
|
|
12367
|
-
dark_mode?: "
|
|
12413
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12368
12414
|
};
|
|
12369
12415
|
};
|
|
12370
12416
|
output: {
|
|
@@ -12383,7 +12429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12383
12429
|
font?: {
|
|
12384
12430
|
url: string;
|
|
12385
12431
|
} | undefined;
|
|
12386
|
-
dark_mode?: "
|
|
12432
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12387
12433
|
};
|
|
12388
12434
|
outputFormat: "json";
|
|
12389
12435
|
status: 200;
|
|
@@ -12418,7 +12464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12418
12464
|
};
|
|
12419
12465
|
output: {};
|
|
12420
12466
|
outputFormat: string;
|
|
12421
|
-
status:
|
|
12467
|
+
status: 400;
|
|
12422
12468
|
} | {
|
|
12423
12469
|
input: {
|
|
12424
12470
|
header: {
|
|
@@ -12431,7 +12477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12431
12477
|
};
|
|
12432
12478
|
output: {};
|
|
12433
12479
|
outputFormat: string;
|
|
12434
|
-
status:
|
|
12480
|
+
status: 204;
|
|
12435
12481
|
};
|
|
12436
12482
|
};
|
|
12437
12483
|
} & {
|