authhero 9.3.0 → 9.4.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-b5f14fa6.entry.js +1 -0
- package/dist/assets/u/widget/p-f94037cd.entry.js +1 -0
- package/dist/authhero.cjs +138 -137
- package/dist/authhero.d.ts +315 -268
- package/dist/authhero.mjs +13365 -13194
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +11 -7
- package/dist/types/helpers/client.d.ts +4 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/session-usage.d.ts +48 -0
- package/dist/types/hooks/formhooks.d.ts +24 -0
- package/dist/types/index.d.ts +311 -268
- package/dist/types/routes/auth-api/index.d.ts +36 -36
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/branding.d.ts +15 -15
- package/dist/types/routes/management-api/clients.d.ts +24 -16
- package/dist/types/routes/management-api/connections.d.ts +41 -21
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/hooks.d.ts +21 -6
- package/dist/types/routes/management-api/index.d.ts +262 -219
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +28 -28
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +24 -16
- 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 +2 -2
- package/dist/types/routes/universal-login/index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-widget-page.d.ts +12 -0
- package/dist/types/utils/locale.d.ts +26 -0
- package/package.json +6 -6
- package/dist/assets/u/widget/p-cdfc4555.entry.js +0 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +0 -1
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
-
from?: string | undefined;
|
|
1967
1966
|
page?: string | undefined;
|
|
1968
1967
|
include_totals?: string | undefined;
|
|
1968
|
+
from?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
1971
1971
|
};
|
|
@@ -2688,7 +2688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2688
2688
|
hint?: string | undefined;
|
|
2689
2689
|
messages?: {
|
|
2690
2690
|
text: string;
|
|
2691
|
-
type: "
|
|
2691
|
+
type: "error" | "success" | "info" | "warning";
|
|
2692
2692
|
id?: number | undefined;
|
|
2693
2693
|
}[] | undefined;
|
|
2694
2694
|
required?: boolean | undefined;
|
|
@@ -2706,7 +2706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2706
2706
|
hint?: string | undefined;
|
|
2707
2707
|
messages?: {
|
|
2708
2708
|
text: string;
|
|
2709
|
-
type: "
|
|
2709
|
+
type: "error" | "success" | "info" | "warning";
|
|
2710
2710
|
id?: number | undefined;
|
|
2711
2711
|
}[] | undefined;
|
|
2712
2712
|
required?: boolean | undefined;
|
|
@@ -2730,7 +2730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2730
2730
|
hint?: string | undefined;
|
|
2731
2731
|
messages?: {
|
|
2732
2732
|
text: string;
|
|
2733
|
-
type: "
|
|
2733
|
+
type: "error" | "success" | "info" | "warning";
|
|
2734
2734
|
id?: number | undefined;
|
|
2735
2735
|
}[] | undefined;
|
|
2736
2736
|
required?: boolean | undefined;
|
|
@@ -2754,7 +2754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2754
2754
|
hint?: string | undefined;
|
|
2755
2755
|
messages?: {
|
|
2756
2756
|
text: string;
|
|
2757
|
-
type: "
|
|
2757
|
+
type: "error" | "success" | "info" | "warning";
|
|
2758
2758
|
id?: number | undefined;
|
|
2759
2759
|
}[] | undefined;
|
|
2760
2760
|
required?: boolean | undefined;
|
|
@@ -2778,7 +2778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2778
2778
|
hint?: string | undefined;
|
|
2779
2779
|
messages?: {
|
|
2780
2780
|
text: string;
|
|
2781
|
-
type: "
|
|
2781
|
+
type: "error" | "success" | "info" | "warning";
|
|
2782
2782
|
id?: number | undefined;
|
|
2783
2783
|
}[] | undefined;
|
|
2784
2784
|
required?: boolean | undefined;
|
|
@@ -2807,7 +2807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2807
2807
|
hint?: string | undefined;
|
|
2808
2808
|
messages?: {
|
|
2809
2809
|
text: string;
|
|
2810
|
-
type: "
|
|
2810
|
+
type: "error" | "success" | "info" | "warning";
|
|
2811
2811
|
id?: number | undefined;
|
|
2812
2812
|
}[] | undefined;
|
|
2813
2813
|
required?: boolean | undefined;
|
|
@@ -2822,7 +2822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2822
2822
|
hint?: string | undefined;
|
|
2823
2823
|
messages?: {
|
|
2824
2824
|
text: string;
|
|
2825
|
-
type: "
|
|
2825
|
+
type: "error" | "success" | "info" | "warning";
|
|
2826
2826
|
id?: number | undefined;
|
|
2827
2827
|
}[] | undefined;
|
|
2828
2828
|
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;
|
|
@@ -2868,7 +2868,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2868
2868
|
hint?: string | undefined;
|
|
2869
2869
|
messages?: {
|
|
2870
2870
|
text: string;
|
|
2871
|
-
type: "
|
|
2871
|
+
type: "error" | "success" | "info" | "warning";
|
|
2872
2872
|
id?: number | undefined;
|
|
2873
2873
|
}[] | undefined;
|
|
2874
2874
|
required?: boolean | undefined;
|
|
@@ -2889,7 +2889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2889
2889
|
hint?: string | undefined;
|
|
2890
2890
|
messages?: {
|
|
2891
2891
|
text: string;
|
|
2892
|
-
type: "
|
|
2892
|
+
type: "error" | "success" | "info" | "warning";
|
|
2893
2893
|
id?: number | undefined;
|
|
2894
2894
|
}[] | undefined;
|
|
2895
2895
|
required?: boolean | undefined;
|
|
@@ -2909,7 +2909,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2909
2909
|
hint?: string | undefined;
|
|
2910
2910
|
messages?: {
|
|
2911
2911
|
text: string;
|
|
2912
|
-
type: "
|
|
2912
|
+
type: "error" | "success" | "info" | "warning";
|
|
2913
2913
|
id?: number | undefined;
|
|
2914
2914
|
}[] | undefined;
|
|
2915
2915
|
required?: boolean | undefined;
|
|
@@ -2928,7 +2928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2928
2928
|
hint?: string | undefined;
|
|
2929
2929
|
messages?: {
|
|
2930
2930
|
text: string;
|
|
2931
|
-
type: "
|
|
2931
|
+
type: "error" | "success" | "info" | "warning";
|
|
2932
2932
|
id?: number | undefined;
|
|
2933
2933
|
}[] | undefined;
|
|
2934
2934
|
required?: boolean | undefined;
|
|
@@ -2950,7 +2950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2950
2950
|
hint?: string | undefined;
|
|
2951
2951
|
messages?: {
|
|
2952
2952
|
text: string;
|
|
2953
|
-
type: "
|
|
2953
|
+
type: "error" | "success" | "info" | "warning";
|
|
2954
2954
|
id?: number | undefined;
|
|
2955
2955
|
}[] | undefined;
|
|
2956
2956
|
required?: boolean | undefined;
|
|
@@ -2972,7 +2972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2972
2972
|
hint?: string | undefined;
|
|
2973
2973
|
messages?: {
|
|
2974
2974
|
text: string;
|
|
2975
|
-
type: "
|
|
2975
|
+
type: "error" | "success" | "info" | "warning";
|
|
2976
2976
|
id?: number | undefined;
|
|
2977
2977
|
}[] | undefined;
|
|
2978
2978
|
required?: boolean | undefined;
|
|
@@ -2991,7 +2991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2991
2991
|
hint?: string | undefined;
|
|
2992
2992
|
messages?: {
|
|
2993
2993
|
text: string;
|
|
2994
|
-
type: "
|
|
2994
|
+
type: "error" | "success" | "info" | "warning";
|
|
2995
2995
|
id?: number | undefined;
|
|
2996
2996
|
}[] | undefined;
|
|
2997
2997
|
required?: boolean | undefined;
|
|
@@ -3018,7 +3018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3018
3018
|
hint?: string | undefined;
|
|
3019
3019
|
messages?: {
|
|
3020
3020
|
text: string;
|
|
3021
|
-
type: "
|
|
3021
|
+
type: "error" | "success" | "info" | "warning";
|
|
3022
3022
|
id?: number | undefined;
|
|
3023
3023
|
}[] | undefined;
|
|
3024
3024
|
required?: boolean | undefined;
|
|
@@ -3039,7 +3039,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3039
3039
|
hint?: string | undefined;
|
|
3040
3040
|
messages?: {
|
|
3041
3041
|
text: string;
|
|
3042
|
-
type: "
|
|
3042
|
+
type: "error" | "success" | "info" | "warning";
|
|
3043
3043
|
id?: number | undefined;
|
|
3044
3044
|
}[] | undefined;
|
|
3045
3045
|
required?: boolean | undefined;
|
|
@@ -3062,7 +3062,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3062
3062
|
hint?: string | undefined;
|
|
3063
3063
|
messages?: {
|
|
3064
3064
|
text: string;
|
|
3065
|
-
type: "
|
|
3065
|
+
type: "error" | "success" | "info" | "warning";
|
|
3066
3066
|
id?: number | undefined;
|
|
3067
3067
|
}[] | undefined;
|
|
3068
3068
|
required?: boolean | undefined;
|
|
@@ -3295,7 +3295,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3295
3295
|
hint?: string | undefined;
|
|
3296
3296
|
messages?: {
|
|
3297
3297
|
text: string;
|
|
3298
|
-
type: "
|
|
3298
|
+
type: "error" | "success" | "info" | "warning";
|
|
3299
3299
|
id?: number | undefined;
|
|
3300
3300
|
}[] | undefined;
|
|
3301
3301
|
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;
|
|
@@ -3337,7 +3337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3337
3337
|
hint?: string | undefined;
|
|
3338
3338
|
messages?: {
|
|
3339
3339
|
text: string;
|
|
3340
|
-
type: "
|
|
3340
|
+
type: "error" | "success" | "info" | "warning";
|
|
3341
3341
|
id?: number | undefined;
|
|
3342
3342
|
}[] | undefined;
|
|
3343
3343
|
required?: boolean | undefined;
|
|
@@ -3361,7 +3361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3361
3361
|
hint?: string | undefined;
|
|
3362
3362
|
messages?: {
|
|
3363
3363
|
text: string;
|
|
3364
|
-
type: "
|
|
3364
|
+
type: "error" | "success" | "info" | "warning";
|
|
3365
3365
|
id?: number | undefined;
|
|
3366
3366
|
}[] | undefined;
|
|
3367
3367
|
required?: boolean | undefined;
|
|
@@ -3385,7 +3385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3385
3385
|
hint?: string | undefined;
|
|
3386
3386
|
messages?: {
|
|
3387
3387
|
text: string;
|
|
3388
|
-
type: "
|
|
3388
|
+
type: "error" | "success" | "info" | "warning";
|
|
3389
3389
|
id?: number | undefined;
|
|
3390
3390
|
}[] | undefined;
|
|
3391
3391
|
required?: boolean | undefined;
|
|
@@ -3414,7 +3414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3414
3414
|
hint?: string | undefined;
|
|
3415
3415
|
messages?: {
|
|
3416
3416
|
text: string;
|
|
3417
|
-
type: "
|
|
3417
|
+
type: "error" | "success" | "info" | "warning";
|
|
3418
3418
|
id?: number | undefined;
|
|
3419
3419
|
}[] | undefined;
|
|
3420
3420
|
required?: boolean | undefined;
|
|
@@ -3429,7 +3429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3429
3429
|
hint?: string | undefined;
|
|
3430
3430
|
messages?: {
|
|
3431
3431
|
text: string;
|
|
3432
|
-
type: "
|
|
3432
|
+
type: "error" | "success" | "info" | "warning";
|
|
3433
3433
|
id?: number | undefined;
|
|
3434
3434
|
}[] | undefined;
|
|
3435
3435
|
required?: boolean | undefined;
|
|
@@ -3450,7 +3450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3450
3450
|
hint?: string | undefined;
|
|
3451
3451
|
messages?: {
|
|
3452
3452
|
text: string;
|
|
3453
|
-
type: "
|
|
3453
|
+
type: "error" | "success" | "info" | "warning";
|
|
3454
3454
|
id?: number | undefined;
|
|
3455
3455
|
}[] | undefined;
|
|
3456
3456
|
required?: boolean | undefined;
|
|
@@ -3475,7 +3475,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3475
3475
|
hint?: string | undefined;
|
|
3476
3476
|
messages?: {
|
|
3477
3477
|
text: string;
|
|
3478
|
-
type: "
|
|
3478
|
+
type: "error" | "success" | "info" | "warning";
|
|
3479
3479
|
id?: number | undefined;
|
|
3480
3480
|
}[] | undefined;
|
|
3481
3481
|
required?: boolean | undefined;
|
|
@@ -3496,7 +3496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3496
3496
|
hint?: string | undefined;
|
|
3497
3497
|
messages?: {
|
|
3498
3498
|
text: string;
|
|
3499
|
-
type: "
|
|
3499
|
+
type: "error" | "success" | "info" | "warning";
|
|
3500
3500
|
id?: number | undefined;
|
|
3501
3501
|
}[] | undefined;
|
|
3502
3502
|
required?: boolean | undefined;
|
|
@@ -3516,7 +3516,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3516
3516
|
hint?: string | undefined;
|
|
3517
3517
|
messages?: {
|
|
3518
3518
|
text: string;
|
|
3519
|
-
type: "
|
|
3519
|
+
type: "error" | "success" | "info" | "warning";
|
|
3520
3520
|
id?: number | undefined;
|
|
3521
3521
|
}[] | undefined;
|
|
3522
3522
|
required?: boolean | undefined;
|
|
@@ -3535,7 +3535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3535
3535
|
hint?: string | undefined;
|
|
3536
3536
|
messages?: {
|
|
3537
3537
|
text: string;
|
|
3538
|
-
type: "
|
|
3538
|
+
type: "error" | "success" | "info" | "warning";
|
|
3539
3539
|
id?: number | undefined;
|
|
3540
3540
|
}[] | undefined;
|
|
3541
3541
|
required?: boolean | undefined;
|
|
@@ -3557,7 +3557,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3557
3557
|
hint?: string | undefined;
|
|
3558
3558
|
messages?: {
|
|
3559
3559
|
text: string;
|
|
3560
|
-
type: "
|
|
3560
|
+
type: "error" | "success" | "info" | "warning";
|
|
3561
3561
|
id?: number | undefined;
|
|
3562
3562
|
}[] | undefined;
|
|
3563
3563
|
required?: boolean | undefined;
|
|
@@ -3579,7 +3579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3579
3579
|
hint?: string | undefined;
|
|
3580
3580
|
messages?: {
|
|
3581
3581
|
text: string;
|
|
3582
|
-
type: "
|
|
3582
|
+
type: "error" | "success" | "info" | "warning";
|
|
3583
3583
|
id?: number | undefined;
|
|
3584
3584
|
}[] | undefined;
|
|
3585
3585
|
required?: boolean | undefined;
|
|
@@ -3598,7 +3598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3598
3598
|
hint?: string | undefined;
|
|
3599
3599
|
messages?: {
|
|
3600
3600
|
text: string;
|
|
3601
|
-
type: "
|
|
3601
|
+
type: "error" | "success" | "info" | "warning";
|
|
3602
3602
|
id?: number | undefined;
|
|
3603
3603
|
}[] | undefined;
|
|
3604
3604
|
required?: boolean | undefined;
|
|
@@ -3625,7 +3625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3625
3625
|
hint?: string | undefined;
|
|
3626
3626
|
messages?: {
|
|
3627
3627
|
text: string;
|
|
3628
|
-
type: "
|
|
3628
|
+
type: "error" | "success" | "info" | "warning";
|
|
3629
3629
|
id?: number | undefined;
|
|
3630
3630
|
}[] | undefined;
|
|
3631
3631
|
required?: boolean | undefined;
|
|
@@ -3646,7 +3646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3646
3646
|
hint?: string | undefined;
|
|
3647
3647
|
messages?: {
|
|
3648
3648
|
text: string;
|
|
3649
|
-
type: "
|
|
3649
|
+
type: "error" | "success" | "info" | "warning";
|
|
3650
3650
|
id?: number | undefined;
|
|
3651
3651
|
}[] | undefined;
|
|
3652
3652
|
required?: boolean | undefined;
|
|
@@ -3669,7 +3669,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3669
3669
|
hint?: string | undefined;
|
|
3670
3670
|
messages?: {
|
|
3671
3671
|
text: string;
|
|
3672
|
-
type: "
|
|
3672
|
+
type: "error" | "success" | "info" | "warning";
|
|
3673
3673
|
id?: number | undefined;
|
|
3674
3674
|
}[] | undefined;
|
|
3675
3675
|
required?: boolean | undefined;
|
|
@@ -3918,7 +3918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3918
3918
|
hint?: string | undefined;
|
|
3919
3919
|
messages?: {
|
|
3920
3920
|
text: string;
|
|
3921
|
-
type: "
|
|
3921
|
+
type: "error" | "success" | "info" | "warning";
|
|
3922
3922
|
id?: number | undefined;
|
|
3923
3923
|
}[] | undefined;
|
|
3924
3924
|
required?: boolean | undefined;
|
|
@@ -3936,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3936
3936
|
hint?: string | undefined;
|
|
3937
3937
|
messages?: {
|
|
3938
3938
|
text: string;
|
|
3939
|
-
type: "
|
|
3939
|
+
type: "error" | "success" | "info" | "warning";
|
|
3940
3940
|
id?: number | undefined;
|
|
3941
3941
|
}[] | undefined;
|
|
3942
3942
|
required?: boolean | undefined;
|
|
@@ -3960,7 +3960,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3960
3960
|
hint?: string | undefined;
|
|
3961
3961
|
messages?: {
|
|
3962
3962
|
text: string;
|
|
3963
|
-
type: "
|
|
3963
|
+
type: "error" | "success" | "info" | "warning";
|
|
3964
3964
|
id?: number | undefined;
|
|
3965
3965
|
}[] | undefined;
|
|
3966
3966
|
required?: boolean | undefined;
|
|
@@ -3984,7 +3984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3984
3984
|
hint?: string | undefined;
|
|
3985
3985
|
messages?: {
|
|
3986
3986
|
text: string;
|
|
3987
|
-
type: "
|
|
3987
|
+
type: "error" | "success" | "info" | "warning";
|
|
3988
3988
|
id?: number | undefined;
|
|
3989
3989
|
}[] | undefined;
|
|
3990
3990
|
required?: boolean | undefined;
|
|
@@ -4008,7 +4008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4008
4008
|
hint?: string | undefined;
|
|
4009
4009
|
messages?: {
|
|
4010
4010
|
text: string;
|
|
4011
|
-
type: "
|
|
4011
|
+
type: "error" | "success" | "info" | "warning";
|
|
4012
4012
|
id?: number | undefined;
|
|
4013
4013
|
}[] | undefined;
|
|
4014
4014
|
required?: boolean | undefined;
|
|
@@ -4037,7 +4037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4037
4037
|
hint?: string | undefined;
|
|
4038
4038
|
messages?: {
|
|
4039
4039
|
text: string;
|
|
4040
|
-
type: "
|
|
4040
|
+
type: "error" | "success" | "info" | "warning";
|
|
4041
4041
|
id?: number | undefined;
|
|
4042
4042
|
}[] | undefined;
|
|
4043
4043
|
required?: boolean | undefined;
|
|
@@ -4052,7 +4052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4052
4052
|
hint?: string | undefined;
|
|
4053
4053
|
messages?: {
|
|
4054
4054
|
text: string;
|
|
4055
|
-
type: "
|
|
4055
|
+
type: "error" | "success" | "info" | "warning";
|
|
4056
4056
|
id?: number | undefined;
|
|
4057
4057
|
}[] | undefined;
|
|
4058
4058
|
required?: boolean | undefined;
|
|
@@ -4073,7 +4073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4073
4073
|
hint?: string | undefined;
|
|
4074
4074
|
messages?: {
|
|
4075
4075
|
text: string;
|
|
4076
|
-
type: "
|
|
4076
|
+
type: "error" | "success" | "info" | "warning";
|
|
4077
4077
|
id?: number | undefined;
|
|
4078
4078
|
}[] | undefined;
|
|
4079
4079
|
required?: boolean | undefined;
|
|
@@ -4098,7 +4098,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4098
4098
|
hint?: string | undefined;
|
|
4099
4099
|
messages?: {
|
|
4100
4100
|
text: string;
|
|
4101
|
-
type: "
|
|
4101
|
+
type: "error" | "success" | "info" | "warning";
|
|
4102
4102
|
id?: number | undefined;
|
|
4103
4103
|
}[] | undefined;
|
|
4104
4104
|
required?: boolean | undefined;
|
|
@@ -4119,7 +4119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4119
4119
|
hint?: string | undefined;
|
|
4120
4120
|
messages?: {
|
|
4121
4121
|
text: string;
|
|
4122
|
-
type: "
|
|
4122
|
+
type: "error" | "success" | "info" | "warning";
|
|
4123
4123
|
id?: number | undefined;
|
|
4124
4124
|
}[] | undefined;
|
|
4125
4125
|
required?: boolean | undefined;
|
|
@@ -4139,7 +4139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4139
4139
|
hint?: string | undefined;
|
|
4140
4140
|
messages?: {
|
|
4141
4141
|
text: string;
|
|
4142
|
-
type: "
|
|
4142
|
+
type: "error" | "success" | "info" | "warning";
|
|
4143
4143
|
id?: number | undefined;
|
|
4144
4144
|
}[] | undefined;
|
|
4145
4145
|
required?: boolean | undefined;
|
|
@@ -4158,7 +4158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4158
4158
|
hint?: string | undefined;
|
|
4159
4159
|
messages?: {
|
|
4160
4160
|
text: string;
|
|
4161
|
-
type: "
|
|
4161
|
+
type: "error" | "success" | "info" | "warning";
|
|
4162
4162
|
id?: number | undefined;
|
|
4163
4163
|
}[] | undefined;
|
|
4164
4164
|
required?: boolean | undefined;
|
|
@@ -4180,7 +4180,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4180
4180
|
hint?: string | undefined;
|
|
4181
4181
|
messages?: {
|
|
4182
4182
|
text: string;
|
|
4183
|
-
type: "
|
|
4183
|
+
type: "error" | "success" | "info" | "warning";
|
|
4184
4184
|
id?: number | undefined;
|
|
4185
4185
|
}[] | undefined;
|
|
4186
4186
|
required?: boolean | undefined;
|
|
@@ -4202,7 +4202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4202
4202
|
hint?: string | undefined;
|
|
4203
4203
|
messages?: {
|
|
4204
4204
|
text: string;
|
|
4205
|
-
type: "
|
|
4205
|
+
type: "error" | "success" | "info" | "warning";
|
|
4206
4206
|
id?: number | undefined;
|
|
4207
4207
|
}[] | undefined;
|
|
4208
4208
|
required?: boolean | undefined;
|
|
@@ -4221,7 +4221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4221
4221
|
hint?: string | undefined;
|
|
4222
4222
|
messages?: {
|
|
4223
4223
|
text: string;
|
|
4224
|
-
type: "
|
|
4224
|
+
type: "error" | "success" | "info" | "warning";
|
|
4225
4225
|
id?: number | undefined;
|
|
4226
4226
|
}[] | undefined;
|
|
4227
4227
|
required?: boolean | undefined;
|
|
@@ -4248,7 +4248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4248
4248
|
hint?: string | undefined;
|
|
4249
4249
|
messages?: {
|
|
4250
4250
|
text: string;
|
|
4251
|
-
type: "
|
|
4251
|
+
type: "error" | "success" | "info" | "warning";
|
|
4252
4252
|
id?: number | undefined;
|
|
4253
4253
|
}[] | undefined;
|
|
4254
4254
|
required?: boolean | undefined;
|
|
@@ -4269,7 +4269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4269
4269
|
hint?: string | undefined;
|
|
4270
4270
|
messages?: {
|
|
4271
4271
|
text: string;
|
|
4272
|
-
type: "
|
|
4272
|
+
type: "error" | "success" | "info" | "warning";
|
|
4273
4273
|
id?: number | undefined;
|
|
4274
4274
|
}[] | undefined;
|
|
4275
4275
|
required?: boolean | undefined;
|
|
@@ -4292,7 +4292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4292
4292
|
hint?: string | undefined;
|
|
4293
4293
|
messages?: {
|
|
4294
4294
|
text: string;
|
|
4295
|
-
type: "
|
|
4295
|
+
type: "error" | "success" | "info" | "warning";
|
|
4296
4296
|
id?: number | undefined;
|
|
4297
4297
|
}[] | undefined;
|
|
4298
4298
|
required?: boolean | undefined;
|
|
@@ -4546,7 +4546,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4546
4546
|
hint?: string | undefined;
|
|
4547
4547
|
messages?: {
|
|
4548
4548
|
text: string;
|
|
4549
|
-
type: "
|
|
4549
|
+
type: "error" | "success" | "info" | "warning";
|
|
4550
4550
|
id?: number | undefined;
|
|
4551
4551
|
}[] | undefined;
|
|
4552
4552
|
required?: boolean | undefined;
|
|
@@ -4564,7 +4564,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4564
4564
|
hint?: string | undefined;
|
|
4565
4565
|
messages?: {
|
|
4566
4566
|
text: string;
|
|
4567
|
-
type: "
|
|
4567
|
+
type: "error" | "success" | "info" | "warning";
|
|
4568
4568
|
id?: number | undefined;
|
|
4569
4569
|
}[] | undefined;
|
|
4570
4570
|
required?: boolean | undefined;
|
|
@@ -4588,7 +4588,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4588
4588
|
hint?: string | undefined;
|
|
4589
4589
|
messages?: {
|
|
4590
4590
|
text: string;
|
|
4591
|
-
type: "
|
|
4591
|
+
type: "error" | "success" | "info" | "warning";
|
|
4592
4592
|
id?: number | undefined;
|
|
4593
4593
|
}[] | undefined;
|
|
4594
4594
|
required?: boolean | undefined;
|
|
@@ -4612,7 +4612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4612
4612
|
hint?: string | undefined;
|
|
4613
4613
|
messages?: {
|
|
4614
4614
|
text: string;
|
|
4615
|
-
type: "
|
|
4615
|
+
type: "error" | "success" | "info" | "warning";
|
|
4616
4616
|
id?: number | undefined;
|
|
4617
4617
|
}[] | undefined;
|
|
4618
4618
|
required?: boolean | undefined;
|
|
@@ -4636,7 +4636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4636
4636
|
hint?: string | undefined;
|
|
4637
4637
|
messages?: {
|
|
4638
4638
|
text: string;
|
|
4639
|
-
type: "
|
|
4639
|
+
type: "error" | "success" | "info" | "warning";
|
|
4640
4640
|
id?: number | undefined;
|
|
4641
4641
|
}[] | undefined;
|
|
4642
4642
|
required?: boolean | undefined;
|
|
@@ -4661,7 +4661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4661
4661
|
hint?: string | undefined;
|
|
4662
4662
|
messages?: {
|
|
4663
4663
|
text: string;
|
|
4664
|
-
type: "
|
|
4664
|
+
type: "error" | "success" | "info" | "warning";
|
|
4665
4665
|
id?: number | undefined;
|
|
4666
4666
|
}[] | undefined;
|
|
4667
4667
|
required?: boolean | undefined;
|
|
@@ -4676,7 +4676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4676
4676
|
hint?: string | undefined;
|
|
4677
4677
|
messages?: {
|
|
4678
4678
|
text: string;
|
|
4679
|
-
type: "
|
|
4679
|
+
type: "error" | "success" | "info" | "warning";
|
|
4680
4680
|
id?: number | undefined;
|
|
4681
4681
|
}[] | undefined;
|
|
4682
4682
|
required?: boolean | undefined;
|
|
@@ -4697,7 +4697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4697
4697
|
hint?: string | undefined;
|
|
4698
4698
|
messages?: {
|
|
4699
4699
|
text: string;
|
|
4700
|
-
type: "
|
|
4700
|
+
type: "error" | "success" | "info" | "warning";
|
|
4701
4701
|
id?: number | undefined;
|
|
4702
4702
|
}[] | undefined;
|
|
4703
4703
|
required?: boolean | undefined;
|
|
@@ -4722,7 +4722,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4722
4722
|
hint?: string | undefined;
|
|
4723
4723
|
messages?: {
|
|
4724
4724
|
text: string;
|
|
4725
|
-
type: "
|
|
4725
|
+
type: "error" | "success" | "info" | "warning";
|
|
4726
4726
|
id?: number | undefined;
|
|
4727
4727
|
}[] | undefined;
|
|
4728
4728
|
required?: boolean | undefined;
|
|
@@ -4743,7 +4743,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4743
4743
|
hint?: string | undefined;
|
|
4744
4744
|
messages?: {
|
|
4745
4745
|
text: string;
|
|
4746
|
-
type: "
|
|
4746
|
+
type: "error" | "success" | "info" | "warning";
|
|
4747
4747
|
id?: number | undefined;
|
|
4748
4748
|
}[] | undefined;
|
|
4749
4749
|
required?: boolean | undefined;
|
|
@@ -4763,7 +4763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4763
4763
|
hint?: string | undefined;
|
|
4764
4764
|
messages?: {
|
|
4765
4765
|
text: string;
|
|
4766
|
-
type: "
|
|
4766
|
+
type: "error" | "success" | "info" | "warning";
|
|
4767
4767
|
id?: number | undefined;
|
|
4768
4768
|
}[] | undefined;
|
|
4769
4769
|
required?: boolean | undefined;
|
|
@@ -4782,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4782
4782
|
hint?: string | undefined;
|
|
4783
4783
|
messages?: {
|
|
4784
4784
|
text: string;
|
|
4785
|
-
type: "
|
|
4785
|
+
type: "error" | "success" | "info" | "warning";
|
|
4786
4786
|
id?: number | undefined;
|
|
4787
4787
|
}[] | undefined;
|
|
4788
4788
|
required?: boolean | undefined;
|
|
@@ -4804,7 +4804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4804
4804
|
hint?: string | undefined;
|
|
4805
4805
|
messages?: {
|
|
4806
4806
|
text: string;
|
|
4807
|
-
type: "
|
|
4807
|
+
type: "error" | "success" | "info" | "warning";
|
|
4808
4808
|
id?: number | undefined;
|
|
4809
4809
|
}[] | undefined;
|
|
4810
4810
|
required?: boolean | undefined;
|
|
@@ -4826,7 +4826,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4826
4826
|
hint?: string | undefined;
|
|
4827
4827
|
messages?: {
|
|
4828
4828
|
text: string;
|
|
4829
|
-
type: "
|
|
4829
|
+
type: "error" | "success" | "info" | "warning";
|
|
4830
4830
|
id?: number | undefined;
|
|
4831
4831
|
}[] | undefined;
|
|
4832
4832
|
required?: boolean | undefined;
|
|
@@ -4845,7 +4845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4845
4845
|
hint?: string | undefined;
|
|
4846
4846
|
messages?: {
|
|
4847
4847
|
text: string;
|
|
4848
|
-
type: "
|
|
4848
|
+
type: "error" | "success" | "info" | "warning";
|
|
4849
4849
|
id?: number | undefined;
|
|
4850
4850
|
}[] | undefined;
|
|
4851
4851
|
required?: boolean | undefined;
|
|
@@ -4872,7 +4872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4872
4872
|
hint?: string | undefined;
|
|
4873
4873
|
messages?: {
|
|
4874
4874
|
text: string;
|
|
4875
|
-
type: "
|
|
4875
|
+
type: "error" | "success" | "info" | "warning";
|
|
4876
4876
|
id?: number | undefined;
|
|
4877
4877
|
}[] | undefined;
|
|
4878
4878
|
required?: boolean | undefined;
|
|
@@ -4893,7 +4893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4893
4893
|
hint?: string | undefined;
|
|
4894
4894
|
messages?: {
|
|
4895
4895
|
text: string;
|
|
4896
|
-
type: "
|
|
4896
|
+
type: "error" | "success" | "info" | "warning";
|
|
4897
4897
|
id?: number | undefined;
|
|
4898
4898
|
}[] | undefined;
|
|
4899
4899
|
required?: boolean | undefined;
|
|
@@ -4916,7 +4916,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4916
4916
|
hint?: string | undefined;
|
|
4917
4917
|
messages?: {
|
|
4918
4918
|
text: string;
|
|
4919
|
-
type: "
|
|
4919
|
+
type: "error" | "success" | "info" | "warning";
|
|
4920
4920
|
id?: number | undefined;
|
|
4921
4921
|
}[] | undefined;
|
|
4922
4922
|
required?: boolean | undefined;
|
|
@@ -5147,7 +5147,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5147
5147
|
hint?: string | undefined;
|
|
5148
5148
|
messages?: {
|
|
5149
5149
|
text: string;
|
|
5150
|
-
type: "
|
|
5150
|
+
type: "error" | "success" | "info" | "warning";
|
|
5151
5151
|
id?: number | undefined;
|
|
5152
5152
|
}[] | undefined;
|
|
5153
5153
|
required?: boolean | undefined;
|
|
@@ -5165,7 +5165,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5165
5165
|
hint?: string | undefined;
|
|
5166
5166
|
messages?: {
|
|
5167
5167
|
text: string;
|
|
5168
|
-
type: "
|
|
5168
|
+
type: "error" | "success" | "info" | "warning";
|
|
5169
5169
|
id?: number | undefined;
|
|
5170
5170
|
}[] | undefined;
|
|
5171
5171
|
required?: boolean | undefined;
|
|
@@ -5189,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5189
5189
|
hint?: string | undefined;
|
|
5190
5190
|
messages?: {
|
|
5191
5191
|
text: string;
|
|
5192
|
-
type: "
|
|
5192
|
+
type: "error" | "success" | "info" | "warning";
|
|
5193
5193
|
id?: number | undefined;
|
|
5194
5194
|
}[] | undefined;
|
|
5195
5195
|
required?: boolean | undefined;
|
|
@@ -5213,7 +5213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5213
5213
|
hint?: string | undefined;
|
|
5214
5214
|
messages?: {
|
|
5215
5215
|
text: string;
|
|
5216
|
-
type: "
|
|
5216
|
+
type: "error" | "success" | "info" | "warning";
|
|
5217
5217
|
id?: number | undefined;
|
|
5218
5218
|
}[] | undefined;
|
|
5219
5219
|
required?: boolean | undefined;
|
|
@@ -5237,7 +5237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5237
5237
|
hint?: string | undefined;
|
|
5238
5238
|
messages?: {
|
|
5239
5239
|
text: string;
|
|
5240
|
-
type: "
|
|
5240
|
+
type: "error" | "success" | "info" | "warning";
|
|
5241
5241
|
id?: number | undefined;
|
|
5242
5242
|
}[] | undefined;
|
|
5243
5243
|
required?: boolean | undefined;
|
|
@@ -5266,7 +5266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5266
5266
|
hint?: string | undefined;
|
|
5267
5267
|
messages?: {
|
|
5268
5268
|
text: string;
|
|
5269
|
-
type: "
|
|
5269
|
+
type: "error" | "success" | "info" | "warning";
|
|
5270
5270
|
id?: number | undefined;
|
|
5271
5271
|
}[] | undefined;
|
|
5272
5272
|
required?: boolean | undefined;
|
|
@@ -5281,7 +5281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5281
5281
|
hint?: string | undefined;
|
|
5282
5282
|
messages?: {
|
|
5283
5283
|
text: string;
|
|
5284
|
-
type: "
|
|
5284
|
+
type: "error" | "success" | "info" | "warning";
|
|
5285
5285
|
id?: number | undefined;
|
|
5286
5286
|
}[] | undefined;
|
|
5287
5287
|
required?: boolean | undefined;
|
|
@@ -5302,7 +5302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5302
5302
|
hint?: string | undefined;
|
|
5303
5303
|
messages?: {
|
|
5304
5304
|
text: string;
|
|
5305
|
-
type: "
|
|
5305
|
+
type: "error" | "success" | "info" | "warning";
|
|
5306
5306
|
id?: number | undefined;
|
|
5307
5307
|
}[] | undefined;
|
|
5308
5308
|
required?: boolean | undefined;
|
|
@@ -5327,7 +5327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5327
5327
|
hint?: string | undefined;
|
|
5328
5328
|
messages?: {
|
|
5329
5329
|
text: string;
|
|
5330
|
-
type: "
|
|
5330
|
+
type: "error" | "success" | "info" | "warning";
|
|
5331
5331
|
id?: number | undefined;
|
|
5332
5332
|
}[] | undefined;
|
|
5333
5333
|
required?: boolean | undefined;
|
|
@@ -5348,7 +5348,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5348
5348
|
hint?: string | undefined;
|
|
5349
5349
|
messages?: {
|
|
5350
5350
|
text: string;
|
|
5351
|
-
type: "
|
|
5351
|
+
type: "error" | "success" | "info" | "warning";
|
|
5352
5352
|
id?: number | undefined;
|
|
5353
5353
|
}[] | undefined;
|
|
5354
5354
|
required?: boolean | undefined;
|
|
@@ -5368,7 +5368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5368
5368
|
hint?: string | undefined;
|
|
5369
5369
|
messages?: {
|
|
5370
5370
|
text: string;
|
|
5371
|
-
type: "
|
|
5371
|
+
type: "error" | "success" | "info" | "warning";
|
|
5372
5372
|
id?: number | undefined;
|
|
5373
5373
|
}[] | undefined;
|
|
5374
5374
|
required?: boolean | undefined;
|
|
@@ -5387,7 +5387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5387
5387
|
hint?: string | undefined;
|
|
5388
5388
|
messages?: {
|
|
5389
5389
|
text: string;
|
|
5390
|
-
type: "
|
|
5390
|
+
type: "error" | "success" | "info" | "warning";
|
|
5391
5391
|
id?: number | undefined;
|
|
5392
5392
|
}[] | undefined;
|
|
5393
5393
|
required?: boolean | undefined;
|
|
@@ -5409,7 +5409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5409
5409
|
hint?: string | undefined;
|
|
5410
5410
|
messages?: {
|
|
5411
5411
|
text: string;
|
|
5412
|
-
type: "
|
|
5412
|
+
type: "error" | "success" | "info" | "warning";
|
|
5413
5413
|
id?: number | undefined;
|
|
5414
5414
|
}[] | undefined;
|
|
5415
5415
|
required?: boolean | undefined;
|
|
@@ -5431,7 +5431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5431
5431
|
hint?: string | undefined;
|
|
5432
5432
|
messages?: {
|
|
5433
5433
|
text: string;
|
|
5434
|
-
type: "
|
|
5434
|
+
type: "error" | "success" | "info" | "warning";
|
|
5435
5435
|
id?: number | undefined;
|
|
5436
5436
|
}[] | undefined;
|
|
5437
5437
|
required?: boolean | undefined;
|
|
@@ -5450,7 +5450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5450
5450
|
hint?: string | undefined;
|
|
5451
5451
|
messages?: {
|
|
5452
5452
|
text: string;
|
|
5453
|
-
type: "
|
|
5453
|
+
type: "error" | "success" | "info" | "warning";
|
|
5454
5454
|
id?: number | undefined;
|
|
5455
5455
|
}[] | undefined;
|
|
5456
5456
|
required?: boolean | undefined;
|
|
@@ -5477,7 +5477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5477
5477
|
hint?: string | undefined;
|
|
5478
5478
|
messages?: {
|
|
5479
5479
|
text: string;
|
|
5480
|
-
type: "
|
|
5480
|
+
type: "error" | "success" | "info" | "warning";
|
|
5481
5481
|
id?: number | undefined;
|
|
5482
5482
|
}[] | undefined;
|
|
5483
5483
|
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;
|
|
@@ -5521,7 +5521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5521
5521
|
hint?: string | undefined;
|
|
5522
5522
|
messages?: {
|
|
5523
5523
|
text: string;
|
|
5524
|
-
type: "
|
|
5524
|
+
type: "error" | "success" | "info" | "warning";
|
|
5525
5525
|
id?: number | undefined;
|
|
5526
5526
|
}[] | undefined;
|
|
5527
5527
|
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;
|
|
@@ -5772,7 +5772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5772
5772
|
hint?: string | undefined;
|
|
5773
5773
|
messages?: {
|
|
5774
5774
|
text: string;
|
|
5775
|
-
type: "
|
|
5775
|
+
type: "error" | "success" | "info" | "warning";
|
|
5776
5776
|
id?: number | undefined;
|
|
5777
5777
|
}[] | undefined;
|
|
5778
5778
|
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;
|
|
@@ -5820,7 +5820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5820
5820
|
hint?: string | undefined;
|
|
5821
5821
|
messages?: {
|
|
5822
5822
|
text: string;
|
|
5823
|
-
type: "
|
|
5823
|
+
type: "error" | "success" | "info" | "warning";
|
|
5824
5824
|
id?: number | undefined;
|
|
5825
5825
|
}[] | undefined;
|
|
5826
5826
|
required?: boolean | undefined;
|
|
@@ -5844,7 +5844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5844
5844
|
hint?: string | undefined;
|
|
5845
5845
|
messages?: {
|
|
5846
5846
|
text: string;
|
|
5847
|
-
type: "
|
|
5847
|
+
type: "error" | "success" | "info" | "warning";
|
|
5848
5848
|
id?: number | undefined;
|
|
5849
5849
|
}[] | undefined;
|
|
5850
5850
|
required?: boolean | undefined;
|
|
@@ -5869,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5869
5869
|
hint?: string | undefined;
|
|
5870
5870
|
messages?: {
|
|
5871
5871
|
text: string;
|
|
5872
|
-
type: "
|
|
5872
|
+
type: "error" | "success" | "info" | "warning";
|
|
5873
5873
|
id?: number | undefined;
|
|
5874
5874
|
}[] | undefined;
|
|
5875
5875
|
required?: boolean | undefined;
|
|
@@ -5884,7 +5884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5884
5884
|
hint?: string | undefined;
|
|
5885
5885
|
messages?: {
|
|
5886
5886
|
text: string;
|
|
5887
|
-
type: "
|
|
5887
|
+
type: "error" | "success" | "info" | "warning";
|
|
5888
5888
|
id?: number | undefined;
|
|
5889
5889
|
}[] | undefined;
|
|
5890
5890
|
required?: boolean | undefined;
|
|
@@ -5905,7 +5905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5905
5905
|
hint?: string | undefined;
|
|
5906
5906
|
messages?: {
|
|
5907
5907
|
text: string;
|
|
5908
|
-
type: "
|
|
5908
|
+
type: "error" | "success" | "info" | "warning";
|
|
5909
5909
|
id?: number | undefined;
|
|
5910
5910
|
}[] | undefined;
|
|
5911
5911
|
required?: boolean | undefined;
|
|
@@ -5930,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5930
5930
|
hint?: string | undefined;
|
|
5931
5931
|
messages?: {
|
|
5932
5932
|
text: string;
|
|
5933
|
-
type: "
|
|
5933
|
+
type: "error" | "success" | "info" | "warning";
|
|
5934
5934
|
id?: number | undefined;
|
|
5935
5935
|
}[] | undefined;
|
|
5936
5936
|
required?: boolean | undefined;
|
|
@@ -5951,7 +5951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5951
5951
|
hint?: string | undefined;
|
|
5952
5952
|
messages?: {
|
|
5953
5953
|
text: string;
|
|
5954
|
-
type: "
|
|
5954
|
+
type: "error" | "success" | "info" | "warning";
|
|
5955
5955
|
id?: number | undefined;
|
|
5956
5956
|
}[] | undefined;
|
|
5957
5957
|
required?: boolean | undefined;
|
|
@@ -5971,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5971
5971
|
hint?: string | undefined;
|
|
5972
5972
|
messages?: {
|
|
5973
5973
|
text: string;
|
|
5974
|
-
type: "
|
|
5974
|
+
type: "error" | "success" | "info" | "warning";
|
|
5975
5975
|
id?: number | undefined;
|
|
5976
5976
|
}[] | undefined;
|
|
5977
5977
|
required?: boolean | undefined;
|
|
@@ -5990,7 +5990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5990
5990
|
hint?: string | undefined;
|
|
5991
5991
|
messages?: {
|
|
5992
5992
|
text: string;
|
|
5993
|
-
type: "
|
|
5993
|
+
type: "error" | "success" | "info" | "warning";
|
|
5994
5994
|
id?: number | undefined;
|
|
5995
5995
|
}[] | undefined;
|
|
5996
5996
|
required?: boolean | undefined;
|
|
@@ -6012,7 +6012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6012
6012
|
hint?: string | undefined;
|
|
6013
6013
|
messages?: {
|
|
6014
6014
|
text: string;
|
|
6015
|
-
type: "
|
|
6015
|
+
type: "error" | "success" | "info" | "warning";
|
|
6016
6016
|
id?: number | undefined;
|
|
6017
6017
|
}[] | undefined;
|
|
6018
6018
|
required?: boolean | undefined;
|
|
@@ -6034,7 +6034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6034
6034
|
hint?: string | undefined;
|
|
6035
6035
|
messages?: {
|
|
6036
6036
|
text: string;
|
|
6037
|
-
type: "
|
|
6037
|
+
type: "error" | "success" | "info" | "warning";
|
|
6038
6038
|
id?: number | undefined;
|
|
6039
6039
|
}[] | undefined;
|
|
6040
6040
|
required?: boolean | undefined;
|
|
@@ -6053,7 +6053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6053
6053
|
hint?: string | undefined;
|
|
6054
6054
|
messages?: {
|
|
6055
6055
|
text: string;
|
|
6056
|
-
type: "
|
|
6056
|
+
type: "error" | "success" | "info" | "warning";
|
|
6057
6057
|
id?: number | undefined;
|
|
6058
6058
|
}[] | undefined;
|
|
6059
6059
|
required?: boolean | undefined;
|
|
@@ -6080,7 +6080,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6080
6080
|
hint?: string | undefined;
|
|
6081
6081
|
messages?: {
|
|
6082
6082
|
text: string;
|
|
6083
|
-
type: "
|
|
6083
|
+
type: "error" | "success" | "info" | "warning";
|
|
6084
6084
|
id?: number | undefined;
|
|
6085
6085
|
}[] | undefined;
|
|
6086
6086
|
required?: boolean | undefined;
|
|
@@ -6101,7 +6101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6101
6101
|
hint?: string | undefined;
|
|
6102
6102
|
messages?: {
|
|
6103
6103
|
text: string;
|
|
6104
|
-
type: "
|
|
6104
|
+
type: "error" | "success" | "info" | "warning";
|
|
6105
6105
|
id?: number | undefined;
|
|
6106
6106
|
}[] | undefined;
|
|
6107
6107
|
required?: boolean | undefined;
|
|
@@ -6124,7 +6124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6124
6124
|
hint?: string | undefined;
|
|
6125
6125
|
messages?: {
|
|
6126
6126
|
text: string;
|
|
6127
|
-
type: "
|
|
6127
|
+
type: "error" | "success" | "info" | "warning";
|
|
6128
6128
|
id?: number | undefined;
|
|
6129
6129
|
}[] | undefined;
|
|
6130
6130
|
required?: boolean | undefined;
|
|
@@ -6355,7 +6355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6355
6355
|
hint?: string | undefined;
|
|
6356
6356
|
messages?: {
|
|
6357
6357
|
text: string;
|
|
6358
|
-
type: "
|
|
6358
|
+
type: "error" | "success" | "info" | "warning";
|
|
6359
6359
|
id?: number | undefined;
|
|
6360
6360
|
}[] | undefined;
|
|
6361
6361
|
required?: boolean | undefined;
|
|
@@ -6373,7 +6373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6373
6373
|
hint?: string | undefined;
|
|
6374
6374
|
messages?: {
|
|
6375
6375
|
text: string;
|
|
6376
|
-
type: "
|
|
6376
|
+
type: "error" | "success" | "info" | "warning";
|
|
6377
6377
|
id?: number | undefined;
|
|
6378
6378
|
}[] | undefined;
|
|
6379
6379
|
required?: boolean | undefined;
|
|
@@ -6397,7 +6397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6397
6397
|
hint?: string | undefined;
|
|
6398
6398
|
messages?: {
|
|
6399
6399
|
text: string;
|
|
6400
|
-
type: "
|
|
6400
|
+
type: "error" | "success" | "info" | "warning";
|
|
6401
6401
|
id?: number | undefined;
|
|
6402
6402
|
}[] | undefined;
|
|
6403
6403
|
required?: boolean | undefined;
|
|
@@ -6421,7 +6421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6421
6421
|
hint?: string | undefined;
|
|
6422
6422
|
messages?: {
|
|
6423
6423
|
text: string;
|
|
6424
|
-
type: "
|
|
6424
|
+
type: "error" | "success" | "info" | "warning";
|
|
6425
6425
|
id?: number | undefined;
|
|
6426
6426
|
}[] | undefined;
|
|
6427
6427
|
required?: boolean | undefined;
|
|
@@ -6445,7 +6445,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6445
6445
|
hint?: string | undefined;
|
|
6446
6446
|
messages?: {
|
|
6447
6447
|
text: string;
|
|
6448
|
-
type: "
|
|
6448
|
+
type: "error" | "success" | "info" | "warning";
|
|
6449
6449
|
id?: number | undefined;
|
|
6450
6450
|
}[] | undefined;
|
|
6451
6451
|
required?: boolean | undefined;
|
|
@@ -6474,7 +6474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6474
6474
|
hint?: string | undefined;
|
|
6475
6475
|
messages?: {
|
|
6476
6476
|
text: string;
|
|
6477
|
-
type: "
|
|
6477
|
+
type: "error" | "success" | "info" | "warning";
|
|
6478
6478
|
id?: number | undefined;
|
|
6479
6479
|
}[] | undefined;
|
|
6480
6480
|
required?: boolean | undefined;
|
|
@@ -6489,7 +6489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6489
6489
|
hint?: string | undefined;
|
|
6490
6490
|
messages?: {
|
|
6491
6491
|
text: string;
|
|
6492
|
-
type: "
|
|
6492
|
+
type: "error" | "success" | "info" | "warning";
|
|
6493
6493
|
id?: number | undefined;
|
|
6494
6494
|
}[] | undefined;
|
|
6495
6495
|
required?: boolean | undefined;
|
|
@@ -6510,7 +6510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6510
6510
|
hint?: string | undefined;
|
|
6511
6511
|
messages?: {
|
|
6512
6512
|
text: string;
|
|
6513
|
-
type: "
|
|
6513
|
+
type: "error" | "success" | "info" | "warning";
|
|
6514
6514
|
id?: number | undefined;
|
|
6515
6515
|
}[] | undefined;
|
|
6516
6516
|
required?: boolean | undefined;
|
|
@@ -6535,7 +6535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6535
6535
|
hint?: string | undefined;
|
|
6536
6536
|
messages?: {
|
|
6537
6537
|
text: string;
|
|
6538
|
-
type: "
|
|
6538
|
+
type: "error" | "success" | "info" | "warning";
|
|
6539
6539
|
id?: number | undefined;
|
|
6540
6540
|
}[] | undefined;
|
|
6541
6541
|
required?: boolean | undefined;
|
|
@@ -6556,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6556
6556
|
hint?: string | undefined;
|
|
6557
6557
|
messages?: {
|
|
6558
6558
|
text: string;
|
|
6559
|
-
type: "
|
|
6559
|
+
type: "error" | "success" | "info" | "warning";
|
|
6560
6560
|
id?: number | undefined;
|
|
6561
6561
|
}[] | undefined;
|
|
6562
6562
|
required?: boolean | undefined;
|
|
@@ -6576,7 +6576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6576
6576
|
hint?: string | undefined;
|
|
6577
6577
|
messages?: {
|
|
6578
6578
|
text: string;
|
|
6579
|
-
type: "
|
|
6579
|
+
type: "error" | "success" | "info" | "warning";
|
|
6580
6580
|
id?: number | undefined;
|
|
6581
6581
|
}[] | undefined;
|
|
6582
6582
|
required?: boolean | undefined;
|
|
@@ -6595,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6595
6595
|
hint?: string | undefined;
|
|
6596
6596
|
messages?: {
|
|
6597
6597
|
text: string;
|
|
6598
|
-
type: "
|
|
6598
|
+
type: "error" | "success" | "info" | "warning";
|
|
6599
6599
|
id?: number | undefined;
|
|
6600
6600
|
}[] | undefined;
|
|
6601
6601
|
required?: boolean | undefined;
|
|
@@ -6617,7 +6617,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6617
6617
|
hint?: string | undefined;
|
|
6618
6618
|
messages?: {
|
|
6619
6619
|
text: string;
|
|
6620
|
-
type: "
|
|
6620
|
+
type: "error" | "success" | "info" | "warning";
|
|
6621
6621
|
id?: number | undefined;
|
|
6622
6622
|
}[] | undefined;
|
|
6623
6623
|
required?: boolean | undefined;
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
hint?: string | undefined;
|
|
6640
6640
|
messages?: {
|
|
6641
6641
|
text: string;
|
|
6642
|
-
type: "
|
|
6642
|
+
type: "error" | "success" | "info" | "warning";
|
|
6643
6643
|
id?: number | undefined;
|
|
6644
6644
|
}[] | undefined;
|
|
6645
6645
|
required?: boolean | undefined;
|
|
@@ -6658,7 +6658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6658
6658
|
hint?: string | undefined;
|
|
6659
6659
|
messages?: {
|
|
6660
6660
|
text: string;
|
|
6661
|
-
type: "
|
|
6661
|
+
type: "error" | "success" | "info" | "warning";
|
|
6662
6662
|
id?: number | undefined;
|
|
6663
6663
|
}[] | undefined;
|
|
6664
6664
|
required?: boolean | undefined;
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
hint?: string | undefined;
|
|
6686
6686
|
messages?: {
|
|
6687
6687
|
text: string;
|
|
6688
|
-
type: "
|
|
6688
|
+
type: "error" | "success" | "info" | "warning";
|
|
6689
6689
|
id?: number | undefined;
|
|
6690
6690
|
}[] | undefined;
|
|
6691
6691
|
required?: boolean | undefined;
|
|
@@ -6706,7 +6706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6706
6706
|
hint?: string | undefined;
|
|
6707
6707
|
messages?: {
|
|
6708
6708
|
text: string;
|
|
6709
|
-
type: "
|
|
6709
|
+
type: "error" | "success" | "info" | "warning";
|
|
6710
6710
|
id?: number | undefined;
|
|
6711
6711
|
}[] | undefined;
|
|
6712
6712
|
required?: boolean | undefined;
|
|
@@ -6729,7 +6729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6729
6729
|
hint?: string | undefined;
|
|
6730
6730
|
messages?: {
|
|
6731
6731
|
text: string;
|
|
6732
|
-
type: "
|
|
6732
|
+
type: "error" | "success" | "info" | "warning";
|
|
6733
6733
|
id?: number | undefined;
|
|
6734
6734
|
}[] | undefined;
|
|
6735
6735
|
required?: boolean | undefined;
|
|
@@ -6961,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6961
6961
|
};
|
|
6962
6962
|
};
|
|
6963
6963
|
output: {
|
|
6964
|
-
prompt: "
|
|
6964
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6965
6965
|
language: string;
|
|
6966
6966
|
}[];
|
|
6967
6967
|
outputFormat: "json";
|
|
@@ -6999,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6999
6999
|
$get: {
|
|
7000
7000
|
input: {
|
|
7001
7001
|
param: {
|
|
7002
|
-
prompt: "
|
|
7002
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7003
7003
|
language: string;
|
|
7004
7004
|
};
|
|
7005
7005
|
} & {
|
|
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7021
|
$put: {
|
|
7022
7022
|
input: {
|
|
7023
7023
|
param: {
|
|
7024
|
-
prompt: "
|
|
7024
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7025
7025
|
language: string;
|
|
7026
7026
|
};
|
|
7027
7027
|
} & {
|
|
@@ -7045,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7045
7045
|
$delete: {
|
|
7046
7046
|
input: {
|
|
7047
7047
|
param: {
|
|
7048
|
-
prompt: "
|
|
7048
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7049
7049
|
language: string;
|
|
7050
7050
|
};
|
|
7051
7051
|
} & {
|
|
@@ -7092,6 +7092,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7092
7092
|
client_secret?: string | undefined;
|
|
7093
7093
|
app_secret?: string | undefined;
|
|
7094
7094
|
scope?: string | undefined;
|
|
7095
|
+
client_secret_hint?: string | undefined;
|
|
7096
|
+
app_secret_hint?: string | undefined;
|
|
7097
|
+
twilio_token_hint?: string | undefined;
|
|
7095
7098
|
authorization_endpoint?: string | undefined;
|
|
7096
7099
|
token_endpoint?: string | undefined;
|
|
7097
7100
|
userinfo_endpoint?: string | undefined;
|
|
@@ -7129,6 +7132,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7129
7132
|
userinfo_endpoint?: string | undefined;
|
|
7130
7133
|
client_id?: string | undefined;
|
|
7131
7134
|
client_secret?: string | undefined;
|
|
7135
|
+
client_secret_hint?: string | undefined;
|
|
7132
7136
|
realm?: string | undefined;
|
|
7133
7137
|
} | undefined;
|
|
7134
7138
|
attributes?: {
|
|
@@ -7137,7 +7141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7137
7141
|
active?: boolean | undefined;
|
|
7138
7142
|
} | undefined;
|
|
7139
7143
|
signup?: {
|
|
7140
|
-
status?: "
|
|
7144
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7141
7145
|
verification?: {
|
|
7142
7146
|
active?: boolean | undefined;
|
|
7143
7147
|
} | undefined;
|
|
@@ -7154,7 +7158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7154
7158
|
active?: boolean | undefined;
|
|
7155
7159
|
} | undefined;
|
|
7156
7160
|
signup?: {
|
|
7157
|
-
status?: "
|
|
7161
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7158
7162
|
} | undefined;
|
|
7159
7163
|
validation?: {
|
|
7160
7164
|
max_length?: number | undefined;
|
|
@@ -7171,7 +7175,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7171
7175
|
active?: boolean | undefined;
|
|
7172
7176
|
} | undefined;
|
|
7173
7177
|
signup?: {
|
|
7174
|
-
status?: "
|
|
7178
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7175
7179
|
} | undefined;
|
|
7176
7180
|
} | undefined;
|
|
7177
7181
|
} | undefined;
|
|
@@ -7184,7 +7188,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7184
7188
|
} | undefined;
|
|
7185
7189
|
} | undefined;
|
|
7186
7190
|
passkey_options?: {
|
|
7187
|
-
challenge_ui?: "
|
|
7191
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7188
7192
|
local_enrollment_enabled?: boolean | undefined;
|
|
7189
7193
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7190
7194
|
} | undefined;
|
|
@@ -7226,6 +7230,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7226
7230
|
client_secret?: string | undefined;
|
|
7227
7231
|
app_secret?: string | undefined;
|
|
7228
7232
|
scope?: string | undefined;
|
|
7233
|
+
client_secret_hint?: string | undefined;
|
|
7234
|
+
app_secret_hint?: string | undefined;
|
|
7235
|
+
twilio_token_hint?: string | undefined;
|
|
7229
7236
|
authorization_endpoint?: string | undefined;
|
|
7230
7237
|
token_endpoint?: string | undefined;
|
|
7231
7238
|
userinfo_endpoint?: string | undefined;
|
|
@@ -7263,6 +7270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7263
7270
|
userinfo_endpoint?: string | undefined;
|
|
7264
7271
|
client_id?: string | undefined;
|
|
7265
7272
|
client_secret?: string | undefined;
|
|
7273
|
+
client_secret_hint?: string | undefined;
|
|
7266
7274
|
realm?: string | undefined;
|
|
7267
7275
|
} | undefined;
|
|
7268
7276
|
attributes?: {
|
|
@@ -7271,7 +7279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7271
7279
|
active?: boolean | undefined;
|
|
7272
7280
|
} | undefined;
|
|
7273
7281
|
signup?: {
|
|
7274
|
-
status?: "
|
|
7282
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7275
7283
|
verification?: {
|
|
7276
7284
|
active?: boolean | undefined;
|
|
7277
7285
|
} | undefined;
|
|
@@ -7288,7 +7296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7288
7296
|
active?: boolean | undefined;
|
|
7289
7297
|
} | undefined;
|
|
7290
7298
|
signup?: {
|
|
7291
|
-
status?: "
|
|
7299
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7292
7300
|
} | undefined;
|
|
7293
7301
|
validation?: {
|
|
7294
7302
|
max_length?: number | undefined;
|
|
@@ -7305,7 +7313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7305
7313
|
active?: boolean | undefined;
|
|
7306
7314
|
} | undefined;
|
|
7307
7315
|
signup?: {
|
|
7308
|
-
status?: "
|
|
7316
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7309
7317
|
} | undefined;
|
|
7310
7318
|
} | undefined;
|
|
7311
7319
|
} | undefined;
|
|
@@ -7318,7 +7326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7318
7326
|
} | undefined;
|
|
7319
7327
|
} | undefined;
|
|
7320
7328
|
passkey_options?: {
|
|
7321
|
-
challenge_ui?: "
|
|
7329
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7322
7330
|
local_enrollment_enabled?: boolean | undefined;
|
|
7323
7331
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7324
7332
|
} | undefined;
|
|
@@ -7376,6 +7384,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7376
7384
|
client_secret?: string | undefined;
|
|
7377
7385
|
app_secret?: string | undefined;
|
|
7378
7386
|
scope?: string | undefined;
|
|
7387
|
+
client_secret_hint?: string | undefined;
|
|
7388
|
+
app_secret_hint?: string | undefined;
|
|
7389
|
+
twilio_token_hint?: string | undefined;
|
|
7379
7390
|
authorization_endpoint?: string | undefined;
|
|
7380
7391
|
token_endpoint?: string | undefined;
|
|
7381
7392
|
userinfo_endpoint?: string | undefined;
|
|
@@ -7413,6 +7424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7413
7424
|
userinfo_endpoint?: string | undefined;
|
|
7414
7425
|
client_id?: string | undefined;
|
|
7415
7426
|
client_secret?: string | undefined;
|
|
7427
|
+
client_secret_hint?: string | undefined;
|
|
7416
7428
|
realm?: string | undefined;
|
|
7417
7429
|
} | undefined;
|
|
7418
7430
|
attributes?: {
|
|
@@ -7421,7 +7433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7421
7433
|
active?: boolean | undefined;
|
|
7422
7434
|
} | undefined;
|
|
7423
7435
|
signup?: {
|
|
7424
|
-
status?: "
|
|
7436
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7425
7437
|
verification?: {
|
|
7426
7438
|
active?: boolean | undefined;
|
|
7427
7439
|
} | undefined;
|
|
@@ -7438,7 +7450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7438
7450
|
active?: boolean | undefined;
|
|
7439
7451
|
} | undefined;
|
|
7440
7452
|
signup?: {
|
|
7441
|
-
status?: "
|
|
7453
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7442
7454
|
} | undefined;
|
|
7443
7455
|
validation?: {
|
|
7444
7456
|
max_length?: number | undefined;
|
|
@@ -7455,7 +7467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7455
7467
|
active?: boolean | undefined;
|
|
7456
7468
|
} | undefined;
|
|
7457
7469
|
signup?: {
|
|
7458
|
-
status?: "
|
|
7470
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7459
7471
|
} | undefined;
|
|
7460
7472
|
} | undefined;
|
|
7461
7473
|
} | undefined;
|
|
@@ -7468,7 +7480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7468
7480
|
} | undefined;
|
|
7469
7481
|
} | undefined;
|
|
7470
7482
|
passkey_options?: {
|
|
7471
|
-
challenge_ui?: "
|
|
7483
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7472
7484
|
local_enrollment_enabled?: boolean | undefined;
|
|
7473
7485
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7474
7486
|
} | undefined;
|
|
@@ -7555,6 +7567,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7555
7567
|
client_secret?: string | undefined;
|
|
7556
7568
|
app_secret?: string | undefined;
|
|
7557
7569
|
scope?: string | undefined;
|
|
7570
|
+
client_secret_hint?: string | undefined;
|
|
7571
|
+
app_secret_hint?: string | undefined;
|
|
7572
|
+
twilio_token_hint?: string | undefined;
|
|
7558
7573
|
authorization_endpoint?: string | undefined;
|
|
7559
7574
|
token_endpoint?: string | undefined;
|
|
7560
7575
|
userinfo_endpoint?: string | undefined;
|
|
@@ -7592,6 +7607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7592
7607
|
userinfo_endpoint?: string | undefined;
|
|
7593
7608
|
client_id?: string | undefined;
|
|
7594
7609
|
client_secret?: string | undefined;
|
|
7610
|
+
client_secret_hint?: string | undefined;
|
|
7595
7611
|
realm?: string | undefined;
|
|
7596
7612
|
} | undefined;
|
|
7597
7613
|
attributes?: {
|
|
@@ -7600,7 +7616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7600
7616
|
active?: boolean | undefined;
|
|
7601
7617
|
} | undefined;
|
|
7602
7618
|
signup?: {
|
|
7603
|
-
status?: "
|
|
7619
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7604
7620
|
verification?: {
|
|
7605
7621
|
active?: boolean | undefined;
|
|
7606
7622
|
} | undefined;
|
|
@@ -7617,7 +7633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7617
7633
|
active?: boolean | undefined;
|
|
7618
7634
|
} | undefined;
|
|
7619
7635
|
signup?: {
|
|
7620
|
-
status?: "
|
|
7636
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7621
7637
|
} | undefined;
|
|
7622
7638
|
validation?: {
|
|
7623
7639
|
max_length?: number | undefined;
|
|
@@ -7634,7 +7650,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7634
7650
|
active?: boolean | undefined;
|
|
7635
7651
|
} | undefined;
|
|
7636
7652
|
signup?: {
|
|
7637
|
-
status?: "
|
|
7653
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7638
7654
|
} | undefined;
|
|
7639
7655
|
} | undefined;
|
|
7640
7656
|
} | undefined;
|
|
@@ -7647,7 +7663,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7647
7663
|
} | undefined;
|
|
7648
7664
|
} | undefined;
|
|
7649
7665
|
passkey_options?: {
|
|
7650
|
-
challenge_ui?: "
|
|
7666
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7651
7667
|
local_enrollment_enabled?: boolean | undefined;
|
|
7652
7668
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7653
7669
|
} | undefined;
|
|
@@ -7713,6 +7729,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7713
7729
|
client_secret?: string | undefined;
|
|
7714
7730
|
app_secret?: string | undefined;
|
|
7715
7731
|
scope?: string | undefined;
|
|
7732
|
+
client_secret_hint?: string | undefined;
|
|
7733
|
+
app_secret_hint?: string | undefined;
|
|
7734
|
+
twilio_token_hint?: string | undefined;
|
|
7716
7735
|
authorization_endpoint?: string | undefined;
|
|
7717
7736
|
token_endpoint?: string | undefined;
|
|
7718
7737
|
userinfo_endpoint?: string | undefined;
|
|
@@ -7750,6 +7769,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7750
7769
|
userinfo_endpoint?: string | undefined;
|
|
7751
7770
|
client_id?: string | undefined;
|
|
7752
7771
|
client_secret?: string | undefined;
|
|
7772
|
+
client_secret_hint?: string | undefined;
|
|
7753
7773
|
realm?: string | undefined;
|
|
7754
7774
|
} | undefined;
|
|
7755
7775
|
attributes?: {
|
|
@@ -7758,7 +7778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7758
7778
|
active?: boolean | undefined;
|
|
7759
7779
|
} | undefined;
|
|
7760
7780
|
signup?: {
|
|
7761
|
-
status?: "
|
|
7781
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7762
7782
|
verification?: {
|
|
7763
7783
|
active?: boolean | undefined;
|
|
7764
7784
|
} | undefined;
|
|
@@ -7775,7 +7795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7775
7795
|
active?: boolean | undefined;
|
|
7776
7796
|
} | undefined;
|
|
7777
7797
|
signup?: {
|
|
7778
|
-
status?: "
|
|
7798
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7779
7799
|
} | undefined;
|
|
7780
7800
|
validation?: {
|
|
7781
7801
|
max_length?: number | undefined;
|
|
@@ -7792,7 +7812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7792
7812
|
active?: boolean | undefined;
|
|
7793
7813
|
} | undefined;
|
|
7794
7814
|
signup?: {
|
|
7795
|
-
status?: "
|
|
7815
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7796
7816
|
} | undefined;
|
|
7797
7817
|
} | undefined;
|
|
7798
7818
|
} | undefined;
|
|
@@ -7805,7 +7825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7805
7825
|
} | undefined;
|
|
7806
7826
|
} | undefined;
|
|
7807
7827
|
passkey_options?: {
|
|
7808
|
-
challenge_ui?: "
|
|
7828
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7809
7829
|
local_enrollment_enabled?: boolean | undefined;
|
|
7810
7830
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7811
7831
|
} | undefined;
|
|
@@ -7908,7 +7928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7908
7928
|
};
|
|
7909
7929
|
} | {
|
|
7910
7930
|
mode: "inline";
|
|
7911
|
-
status: "
|
|
7931
|
+
status: "error" | "success";
|
|
7912
7932
|
connection_id: string;
|
|
7913
7933
|
connection_name: string;
|
|
7914
7934
|
strategy: string;
|
|
@@ -8094,7 +8114,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8094
8114
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8095
8115
|
} | undefined;
|
|
8096
8116
|
} | {
|
|
8097
|
-
trigger_id: "
|
|
8117
|
+
trigger_id: "post-user-login";
|
|
8098
8118
|
enabled: boolean;
|
|
8099
8119
|
synchronous: boolean;
|
|
8100
8120
|
created_at: string;
|
|
@@ -8159,7 +8179,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8159
8179
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8160
8180
|
} | undefined;
|
|
8161
8181
|
} | {
|
|
8162
|
-
trigger_id: "
|
|
8182
|
+
trigger_id: "post-user-login";
|
|
8163
8183
|
enabled: boolean;
|
|
8164
8184
|
synchronous: boolean;
|
|
8165
8185
|
created_at: string;
|
|
@@ -8232,7 +8252,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8232
8252
|
hook_id?: string | undefined;
|
|
8233
8253
|
metadata?: Record<string, unknown> | undefined;
|
|
8234
8254
|
} | {
|
|
8235
|
-
trigger_id: "
|
|
8255
|
+
trigger_id: "post-user-login";
|
|
8236
8256
|
form_id: string;
|
|
8237
8257
|
enabled?: boolean | undefined;
|
|
8238
8258
|
synchronous?: boolean | undefined;
|
|
@@ -8279,7 +8299,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8279
8299
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8280
8300
|
} | undefined;
|
|
8281
8301
|
} | {
|
|
8282
|
-
trigger_id: "
|
|
8302
|
+
trigger_id: "post-user-login";
|
|
8283
8303
|
enabled: boolean;
|
|
8284
8304
|
synchronous: boolean;
|
|
8285
8305
|
created_at: string;
|
|
@@ -8335,6 +8355,21 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8335
8355
|
} & {
|
|
8336
8356
|
"/:hook_id": {
|
|
8337
8357
|
$patch: {
|
|
8358
|
+
input: {
|
|
8359
|
+
param: {
|
|
8360
|
+
hook_id: string;
|
|
8361
|
+
};
|
|
8362
|
+
} & {
|
|
8363
|
+
header: {
|
|
8364
|
+
"tenant-id"?: string | undefined;
|
|
8365
|
+
};
|
|
8366
|
+
} & {
|
|
8367
|
+
json: unknown;
|
|
8368
|
+
};
|
|
8369
|
+
output: {};
|
|
8370
|
+
outputFormat: string;
|
|
8371
|
+
status: 400;
|
|
8372
|
+
} | {
|
|
8338
8373
|
input: {
|
|
8339
8374
|
param: {
|
|
8340
8375
|
hook_id: string;
|
|
@@ -8374,7 +8409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8374
8409
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8375
8410
|
} | undefined;
|
|
8376
8411
|
} | {
|
|
8377
|
-
trigger_id: "
|
|
8412
|
+
trigger_id: "post-user-login";
|
|
8378
8413
|
enabled: boolean;
|
|
8379
8414
|
synchronous: boolean;
|
|
8380
8415
|
created_at: string;
|
|
@@ -8465,7 +8500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8465
8500
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8466
8501
|
} | undefined;
|
|
8467
8502
|
} | {
|
|
8468
|
-
trigger_id: "
|
|
8503
|
+
trigger_id: "post-user-login";
|
|
8469
8504
|
enabled: boolean;
|
|
8470
8505
|
synchronous: boolean;
|
|
8471
8506
|
created_at: string;
|
|
@@ -8622,7 +8657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8622
8657
|
log_type: string;
|
|
8623
8658
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8624
8659
|
actor: {
|
|
8625
|
-
type: "user" | "
|
|
8660
|
+
type: "user" | "api_key" | "client_credentials" | "system" | "admin";
|
|
8626
8661
|
id?: string | undefined;
|
|
8627
8662
|
email?: string | undefined;
|
|
8628
8663
|
org_id?: string | undefined;
|
|
@@ -9273,7 +9308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9273
9308
|
};
|
|
9274
9309
|
};
|
|
9275
9310
|
output: {
|
|
9276
|
-
type: "
|
|
9311
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9277
9312
|
date: string;
|
|
9278
9313
|
isMobile: boolean;
|
|
9279
9314
|
log_id: string;
|
|
@@ -9312,7 +9347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9312
9347
|
limit: number;
|
|
9313
9348
|
length: number;
|
|
9314
9349
|
logs: {
|
|
9315
|
-
type: "
|
|
9350
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9316
9351
|
date: string;
|
|
9317
9352
|
isMobile: boolean;
|
|
9318
9353
|
log_id: string;
|
|
@@ -9351,7 +9386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9351
9386
|
next?: string | undefined;
|
|
9352
9387
|
} | {
|
|
9353
9388
|
logs: {
|
|
9354
|
-
type: "
|
|
9389
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9355
9390
|
date: string;
|
|
9356
9391
|
isMobile: boolean;
|
|
9357
9392
|
log_id: string;
|
|
@@ -9405,7 +9440,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9405
9440
|
};
|
|
9406
9441
|
};
|
|
9407
9442
|
output: {
|
|
9408
|
-
type: "
|
|
9443
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9409
9444
|
date: string;
|
|
9410
9445
|
isMobile: boolean;
|
|
9411
9446
|
log_id: string;
|
|
@@ -9816,7 +9851,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9816
9851
|
addons?: {
|
|
9817
9852
|
[x: string]: any;
|
|
9818
9853
|
} | undefined;
|
|
9819
|
-
token_endpoint_auth_method?: "none" | "
|
|
9854
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9820
9855
|
client_metadata?: {
|
|
9821
9856
|
[x: string]: string;
|
|
9822
9857
|
} | undefined;
|
|
@@ -9918,7 +9953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9918
9953
|
addons?: {
|
|
9919
9954
|
[x: string]: any;
|
|
9920
9955
|
} | undefined;
|
|
9921
|
-
token_endpoint_auth_method?: "none" | "
|
|
9956
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9922
9957
|
client_metadata?: {
|
|
9923
9958
|
[x: string]: string;
|
|
9924
9959
|
} | undefined;
|
|
@@ -10020,7 +10055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10020
10055
|
addons?: {
|
|
10021
10056
|
[x: string]: any;
|
|
10022
10057
|
} | undefined;
|
|
10023
|
-
token_endpoint_auth_method?: "none" | "
|
|
10058
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10024
10059
|
client_metadata?: {
|
|
10025
10060
|
[x: string]: string;
|
|
10026
10061
|
} | undefined;
|
|
@@ -10137,7 +10172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10137
10172
|
addons?: {
|
|
10138
10173
|
[x: string]: any;
|
|
10139
10174
|
} | undefined;
|
|
10140
|
-
token_endpoint_auth_method?: "none" | "
|
|
10175
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10141
10176
|
client_metadata?: {
|
|
10142
10177
|
[x: string]: string;
|
|
10143
10178
|
} | undefined;
|
|
@@ -10255,7 +10290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10255
10290
|
custom_login_page_preview?: string | undefined;
|
|
10256
10291
|
form_template?: string | undefined;
|
|
10257
10292
|
addons?: Record<string, any> | undefined;
|
|
10258
|
-
token_endpoint_auth_method?: "none" | "
|
|
10293
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10259
10294
|
client_metadata?: Record<string, string> | undefined;
|
|
10260
10295
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10261
10296
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10341,7 +10376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10341
10376
|
addons?: {
|
|
10342
10377
|
[x: string]: any;
|
|
10343
10378
|
} | undefined;
|
|
10344
|
-
token_endpoint_auth_method?: "none" | "
|
|
10379
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10345
10380
|
client_metadata?: {
|
|
10346
10381
|
[x: string]: string;
|
|
10347
10382
|
} | undefined;
|
|
@@ -10438,7 +10473,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10438
10473
|
custom_login_page_preview?: string | undefined;
|
|
10439
10474
|
form_template?: string | undefined;
|
|
10440
10475
|
addons?: Record<string, any> | undefined;
|
|
10441
|
-
token_endpoint_auth_method?: "none" | "
|
|
10476
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10442
10477
|
client_metadata?: Record<string, string> | undefined;
|
|
10443
10478
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10444
10479
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10524,7 +10559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10524
10559
|
addons?: {
|
|
10525
10560
|
[x: string]: any;
|
|
10526
10561
|
} | undefined;
|
|
10527
|
-
token_endpoint_auth_method?: "none" | "
|
|
10562
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10528
10563
|
client_metadata?: {
|
|
10529
10564
|
[x: string]: string;
|
|
10530
10565
|
} | undefined;
|
|
@@ -10601,6 +10636,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10601
10636
|
client_secret?: string | undefined;
|
|
10602
10637
|
app_secret?: string | undefined;
|
|
10603
10638
|
scope?: string | undefined;
|
|
10639
|
+
client_secret_hint?: string | undefined;
|
|
10640
|
+
app_secret_hint?: string | undefined;
|
|
10641
|
+
twilio_token_hint?: string | undefined;
|
|
10604
10642
|
authorization_endpoint?: string | undefined;
|
|
10605
10643
|
token_endpoint?: string | undefined;
|
|
10606
10644
|
userinfo_endpoint?: string | undefined;
|
|
@@ -10638,6 +10676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10638
10676
|
userinfo_endpoint?: string | undefined;
|
|
10639
10677
|
client_id?: string | undefined;
|
|
10640
10678
|
client_secret?: string | undefined;
|
|
10679
|
+
client_secret_hint?: string | undefined;
|
|
10641
10680
|
realm?: string | undefined;
|
|
10642
10681
|
} | undefined;
|
|
10643
10682
|
attributes?: {
|
|
@@ -10646,7 +10685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10646
10685
|
active?: boolean | undefined;
|
|
10647
10686
|
} | undefined;
|
|
10648
10687
|
signup?: {
|
|
10649
|
-
status?: "
|
|
10688
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10650
10689
|
verification?: {
|
|
10651
10690
|
active?: boolean | undefined;
|
|
10652
10691
|
} | undefined;
|
|
@@ -10663,7 +10702,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10663
10702
|
active?: boolean | undefined;
|
|
10664
10703
|
} | undefined;
|
|
10665
10704
|
signup?: {
|
|
10666
|
-
status?: "
|
|
10705
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10667
10706
|
} | undefined;
|
|
10668
10707
|
validation?: {
|
|
10669
10708
|
max_length?: number | undefined;
|
|
@@ -10680,7 +10719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10680
10719
|
active?: boolean | undefined;
|
|
10681
10720
|
} | undefined;
|
|
10682
10721
|
signup?: {
|
|
10683
|
-
status?: "
|
|
10722
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10684
10723
|
} | undefined;
|
|
10685
10724
|
} | undefined;
|
|
10686
10725
|
} | undefined;
|
|
@@ -10693,7 +10732,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10693
10732
|
} | undefined;
|
|
10694
10733
|
} | undefined;
|
|
10695
10734
|
passkey_options?: {
|
|
10696
|
-
challenge_ui?: "
|
|
10735
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10697
10736
|
local_enrollment_enabled?: boolean | undefined;
|
|
10698
10737
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10699
10738
|
} | undefined;
|
|
@@ -10755,6 +10794,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10755
10794
|
client_secret?: string | undefined;
|
|
10756
10795
|
app_secret?: string | undefined;
|
|
10757
10796
|
scope?: string | undefined;
|
|
10797
|
+
client_secret_hint?: string | undefined;
|
|
10798
|
+
app_secret_hint?: string | undefined;
|
|
10799
|
+
twilio_token_hint?: string | undefined;
|
|
10758
10800
|
authorization_endpoint?: string | undefined;
|
|
10759
10801
|
token_endpoint?: string | undefined;
|
|
10760
10802
|
userinfo_endpoint?: string | undefined;
|
|
@@ -10792,6 +10834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10792
10834
|
userinfo_endpoint?: string | undefined;
|
|
10793
10835
|
client_id?: string | undefined;
|
|
10794
10836
|
client_secret?: string | undefined;
|
|
10837
|
+
client_secret_hint?: string | undefined;
|
|
10795
10838
|
realm?: string | undefined;
|
|
10796
10839
|
} | undefined;
|
|
10797
10840
|
attributes?: {
|
|
@@ -10800,7 +10843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10800
10843
|
active?: boolean | undefined;
|
|
10801
10844
|
} | undefined;
|
|
10802
10845
|
signup?: {
|
|
10803
|
-
status?: "
|
|
10846
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10804
10847
|
verification?: {
|
|
10805
10848
|
active?: boolean | undefined;
|
|
10806
10849
|
} | undefined;
|
|
@@ -10817,7 +10860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10817
10860
|
active?: boolean | undefined;
|
|
10818
10861
|
} | undefined;
|
|
10819
10862
|
signup?: {
|
|
10820
|
-
status?: "
|
|
10863
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10821
10864
|
} | undefined;
|
|
10822
10865
|
validation?: {
|
|
10823
10866
|
max_length?: number | undefined;
|
|
@@ -10834,7 +10877,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10834
10877
|
active?: boolean | undefined;
|
|
10835
10878
|
} | undefined;
|
|
10836
10879
|
signup?: {
|
|
10837
|
-
status?: "
|
|
10880
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10838
10881
|
} | undefined;
|
|
10839
10882
|
} | undefined;
|
|
10840
10883
|
} | undefined;
|
|
@@ -10847,7 +10890,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10847
10890
|
} | undefined;
|
|
10848
10891
|
} | undefined;
|
|
10849
10892
|
passkey_options?: {
|
|
10850
|
-
challenge_ui?: "
|
|
10893
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10851
10894
|
local_enrollment_enabled?: boolean | undefined;
|
|
10852
10895
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10853
10896
|
} | undefined;
|
|
@@ -11869,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11869
11912
|
};
|
|
11870
11913
|
};
|
|
11871
11914
|
output: {
|
|
11872
|
-
type: "
|
|
11915
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11873
11916
|
date: string;
|
|
11874
11917
|
isMobile: boolean;
|
|
11875
11918
|
log_id: string;
|
|
@@ -11908,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11908
11951
|
limit: number;
|
|
11909
11952
|
length: number;
|
|
11910
11953
|
logs: {
|
|
11911
|
-
type: "
|
|
11954
|
+
type: "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11912
11955
|
date: string;
|
|
11913
11956
|
isMobile: boolean;
|
|
11914
11957
|
log_id: string;
|
|
@@ -12227,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12227
12270
|
};
|
|
12228
12271
|
} & {
|
|
12229
12272
|
json: {
|
|
12230
|
-
template: "
|
|
12273
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12231
12274
|
body: string;
|
|
12232
12275
|
from: string;
|
|
12233
12276
|
subject: string;
|
|
@@ -12248,7 +12291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12248
12291
|
};
|
|
12249
12292
|
} & {
|
|
12250
12293
|
json: {
|
|
12251
|
-
template: "
|
|
12294
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12252
12295
|
body: string;
|
|
12253
12296
|
from: string;
|
|
12254
12297
|
subject: string;
|
|
@@ -12260,7 +12303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12260
12303
|
};
|
|
12261
12304
|
};
|
|
12262
12305
|
output: {
|
|
12263
|
-
template: "
|
|
12306
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12264
12307
|
body: string;
|
|
12265
12308
|
from: string;
|
|
12266
12309
|
subject: string;
|
|
@@ -12283,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12283
12326
|
};
|
|
12284
12327
|
};
|
|
12285
12328
|
output: {
|
|
12286
|
-
name: "
|
|
12329
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12287
12330
|
body: string;
|
|
12288
12331
|
subject: string;
|
|
12289
12332
|
}[];
|
|
@@ -12296,7 +12339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12296
12339
|
$get: {
|
|
12297
12340
|
input: {
|
|
12298
12341
|
param: {
|
|
12299
|
-
templateName: "
|
|
12342
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12300
12343
|
};
|
|
12301
12344
|
} & {
|
|
12302
12345
|
header: {
|
|
@@ -12309,7 +12352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12309
12352
|
} | {
|
|
12310
12353
|
input: {
|
|
12311
12354
|
param: {
|
|
12312
|
-
templateName: "
|
|
12355
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12313
12356
|
};
|
|
12314
12357
|
} & {
|
|
12315
12358
|
header: {
|
|
@@ -12317,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12317
12360
|
};
|
|
12318
12361
|
};
|
|
12319
12362
|
output: {
|
|
12320
|
-
template: "
|
|
12363
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12321
12364
|
body: string;
|
|
12322
12365
|
from: string;
|
|
12323
12366
|
subject: string;
|
|
@@ -12336,7 +12379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12336
12379
|
$put: {
|
|
12337
12380
|
input: {
|
|
12338
12381
|
param: {
|
|
12339
|
-
templateName: "
|
|
12382
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12340
12383
|
};
|
|
12341
12384
|
} & {
|
|
12342
12385
|
header: {
|
|
@@ -12344,7 +12387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12344
12387
|
};
|
|
12345
12388
|
} & {
|
|
12346
12389
|
json: {
|
|
12347
|
-
template: "
|
|
12390
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12348
12391
|
body: string;
|
|
12349
12392
|
subject: string;
|
|
12350
12393
|
syntax?: "liquid" | undefined;
|
|
@@ -12356,7 +12399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12356
12399
|
};
|
|
12357
12400
|
};
|
|
12358
12401
|
output: {
|
|
12359
|
-
template: "
|
|
12402
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12360
12403
|
body: string;
|
|
12361
12404
|
from: string;
|
|
12362
12405
|
subject: string;
|
|
@@ -12375,7 +12418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12375
12418
|
$patch: {
|
|
12376
12419
|
input: {
|
|
12377
12420
|
param: {
|
|
12378
|
-
templateName: "
|
|
12421
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12379
12422
|
};
|
|
12380
12423
|
} & {
|
|
12381
12424
|
header: {
|
|
@@ -12383,7 +12426,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12383
12426
|
};
|
|
12384
12427
|
} & {
|
|
12385
12428
|
json: {
|
|
12386
|
-
template?: "
|
|
12429
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12387
12430
|
body?: string | undefined;
|
|
12388
12431
|
from?: string | undefined;
|
|
12389
12432
|
subject?: string | undefined;
|
|
@@ -12400,7 +12443,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12400
12443
|
} | {
|
|
12401
12444
|
input: {
|
|
12402
12445
|
param: {
|
|
12403
|
-
templateName: "
|
|
12446
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12404
12447
|
};
|
|
12405
12448
|
} & {
|
|
12406
12449
|
header: {
|
|
@@ -12408,7 +12451,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12408
12451
|
};
|
|
12409
12452
|
} & {
|
|
12410
12453
|
json: {
|
|
12411
|
-
template?: "
|
|
12454
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12412
12455
|
body?: string | undefined;
|
|
12413
12456
|
from?: string | undefined;
|
|
12414
12457
|
subject?: string | undefined;
|
|
@@ -12420,7 +12463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12420
12463
|
};
|
|
12421
12464
|
};
|
|
12422
12465
|
output: {
|
|
12423
|
-
template: "
|
|
12466
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12424
12467
|
body: string;
|
|
12425
12468
|
from: string;
|
|
12426
12469
|
subject: string;
|
|
@@ -12439,7 +12482,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12439
12482
|
$delete: {
|
|
12440
12483
|
input: {
|
|
12441
12484
|
param: {
|
|
12442
|
-
templateName: "
|
|
12485
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12443
12486
|
};
|
|
12444
12487
|
} & {
|
|
12445
12488
|
header: {
|
|
@@ -12452,7 +12495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12452
12495
|
} | {
|
|
12453
12496
|
input: {
|
|
12454
12497
|
param: {
|
|
12455
|
-
templateName: "
|
|
12498
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12456
12499
|
};
|
|
12457
12500
|
} & {
|
|
12458
12501
|
header: {
|
|
@@ -12469,7 +12512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12469
12512
|
$post: {
|
|
12470
12513
|
input: {
|
|
12471
12514
|
param: {
|
|
12472
|
-
templateName: "
|
|
12515
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12473
12516
|
};
|
|
12474
12517
|
} & {
|
|
12475
12518
|
header: {
|
|
@@ -13039,7 +13082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13039
13082
|
base_focus_color: string;
|
|
13040
13083
|
base_hover_color: string;
|
|
13041
13084
|
body_text: string;
|
|
13042
|
-
captcha_widget_theme: "
|
|
13085
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13043
13086
|
error: string;
|
|
13044
13087
|
header: string;
|
|
13045
13088
|
icons: string;
|
|
@@ -13090,7 +13133,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13090
13133
|
background_color: string;
|
|
13091
13134
|
background_image_url: string;
|
|
13092
13135
|
page_layout: "center" | "left" | "right";
|
|
13093
|
-
logo_placement?: "
|
|
13136
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13094
13137
|
};
|
|
13095
13138
|
widget: {
|
|
13096
13139
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13129,7 +13172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13129
13172
|
base_focus_color: string;
|
|
13130
13173
|
base_hover_color: string;
|
|
13131
13174
|
body_text: string;
|
|
13132
|
-
captcha_widget_theme: "
|
|
13175
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13133
13176
|
error: string;
|
|
13134
13177
|
header: string;
|
|
13135
13178
|
icons: string;
|
|
@@ -13180,7 +13223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13180
13223
|
background_color: string;
|
|
13181
13224
|
background_image_url: string;
|
|
13182
13225
|
page_layout: "center" | "left" | "right";
|
|
13183
|
-
logo_placement?: "
|
|
13226
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13184
13227
|
};
|
|
13185
13228
|
widget: {
|
|
13186
13229
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13208,7 +13251,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13208
13251
|
base_focus_color: string;
|
|
13209
13252
|
base_hover_color: string;
|
|
13210
13253
|
body_text: string;
|
|
13211
|
-
captcha_widget_theme: "
|
|
13254
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13212
13255
|
error: string;
|
|
13213
13256
|
header: string;
|
|
13214
13257
|
icons: string;
|
|
@@ -13259,7 +13302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13259
13302
|
background_color: string;
|
|
13260
13303
|
background_image_url: string;
|
|
13261
13304
|
page_layout: "center" | "left" | "right";
|
|
13262
|
-
logo_placement?: "
|
|
13305
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13263
13306
|
};
|
|
13264
13307
|
widget: {
|
|
13265
13308
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13298,7 +13341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13298
13341
|
font?: {
|
|
13299
13342
|
url: string;
|
|
13300
13343
|
} | undefined;
|
|
13301
|
-
dark_mode?: "
|
|
13344
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13302
13345
|
};
|
|
13303
13346
|
outputFormat: "json";
|
|
13304
13347
|
status: 200;
|
|
@@ -13328,7 +13371,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13328
13371
|
font?: {
|
|
13329
13372
|
url: string;
|
|
13330
13373
|
} | undefined;
|
|
13331
|
-
dark_mode?: "
|
|
13374
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13332
13375
|
};
|
|
13333
13376
|
};
|
|
13334
13377
|
output: {
|
|
@@ -13347,7 +13390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13347
13390
|
font?: {
|
|
13348
13391
|
url: string;
|
|
13349
13392
|
} | undefined;
|
|
13350
|
-
dark_mode?: "
|
|
13393
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13351
13394
|
};
|
|
13352
13395
|
outputFormat: "json";
|
|
13353
13396
|
status: 200;
|
|
@@ -13382,7 +13425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13382
13425
|
};
|
|
13383
13426
|
output: {};
|
|
13384
13427
|
outputFormat: string;
|
|
13385
|
-
status:
|
|
13428
|
+
status: 204;
|
|
13386
13429
|
} | {
|
|
13387
13430
|
input: {
|
|
13388
13431
|
header: {
|
|
@@ -13395,7 +13438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13395
13438
|
};
|
|
13396
13439
|
output: {};
|
|
13397
13440
|
outputFormat: string;
|
|
13398
|
-
status:
|
|
13441
|
+
status: 400;
|
|
13399
13442
|
};
|
|
13400
13443
|
};
|
|
13401
13444
|
} & {
|
|
@@ -13421,7 +13464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13421
13464
|
} & {
|
|
13422
13465
|
json: {
|
|
13423
13466
|
body?: string | undefined;
|
|
13424
|
-
screen?: "password" | "
|
|
13467
|
+
screen?: "password" | "login" | "signup" | "identifier" | undefined;
|
|
13425
13468
|
branding?: {
|
|
13426
13469
|
colors?: {
|
|
13427
13470
|
primary: string;
|
|
@@ -13438,7 +13481,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13438
13481
|
font?: {
|
|
13439
13482
|
url: string;
|
|
13440
13483
|
} | undefined;
|
|
13441
|
-
dark_mode?: "
|
|
13484
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13442
13485
|
} | undefined;
|
|
13443
13486
|
theme?: {
|
|
13444
13487
|
borders?: {
|
|
@@ -13456,7 +13499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13456
13499
|
base_focus_color: string;
|
|
13457
13500
|
base_hover_color: string;
|
|
13458
13501
|
body_text: string;
|
|
13459
|
-
captcha_widget_theme: "
|
|
13502
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13460
13503
|
error: string;
|
|
13461
13504
|
header: string;
|
|
13462
13505
|
icons: string;
|
|
@@ -13507,7 +13550,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13507
13550
|
background_color: string;
|
|
13508
13551
|
background_image_url: string;
|
|
13509
13552
|
page_layout: "center" | "left" | "right";
|
|
13510
|
-
logo_placement?: "
|
|
13553
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13511
13554
|
} | undefined;
|
|
13512
13555
|
widget?: {
|
|
13513
13556
|
header_text_alignment: "center" | "left" | "right";
|