authhero 8.24.0 → 8.25.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/authhero.cjs +138 -138
- package/dist/authhero.d.ts +802 -225
- package/dist/authhero.mjs +12109 -11443
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/index.d.ts +228 -222
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +8 -8
- package/dist/types/routes/auth-api/token.d.ts +22 -22
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- 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/index.d.ts +172 -172
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +7 -7
- 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/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-members.d.ts +304 -0
- package/dist/types/routes/management-api/tenant-members.test.d.ts +1 -0
- package/dist/types/routes/management-api/tenants.d.ts +9 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +23 -0
- package/dist/types/routes/proxy-control-plane/scopes.d.ts +7 -0
- package/dist/types/routes/proxy-control-plane/tenant-members.d.ts +37 -0
- package/dist/types/routes/proxy-control-plane/verify.d.ts +14 -0
- package/dist/types/routes/proxy-control-plane/verify.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/tenant-members/control-plane-roundtrip.test.d.ts +1 -0
- package/dist/types/tenant-members/local-backend.d.ts +43 -0
- package/dist/types/tenant-members/local-backend.test.d.ts +1 -0
- package/dist/types/tenant-members/remote-backend.d.ts +17 -0
- package/dist/types/tenant-members/types.d.ts +112 -0
- package/dist/types/tenant-members/wire.d.ts +28 -0
- package/dist/types/types/AuthHeroConfig.d.ts +32 -0
- package/package.json +3 -3
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1195,20 +1195,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1195
1195
|
};
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
|
-
client_id: string;
|
|
1199
|
-
inviter: {
|
|
1200
|
-
name?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1198
|
invitee: {
|
|
1203
1199
|
email?: string | undefined;
|
|
1204
1200
|
};
|
|
1201
|
+
inviter: {
|
|
1202
|
+
name?: string | undefined;
|
|
1203
|
+
};
|
|
1204
|
+
client_id: string;
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
|
+
roles?: string[] | undefined;
|
|
1207
|
+
send_invitation_email?: boolean | undefined;
|
|
1208
|
+
ttl_sec?: number | undefined;
|
|
1206
1209
|
connection_id?: string | undefined;
|
|
1207
1210
|
app_metadata?: Record<string, any> | undefined;
|
|
1208
1211
|
user_metadata?: Record<string, any> | undefined;
|
|
1209
|
-
roles?: string[] | undefined;
|
|
1210
|
-
ttl_sec?: number | undefined;
|
|
1211
|
-
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1963,8 +1963,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
-
from?: string | undefined;
|
|
1967
1966
|
page?: string | undefined;
|
|
1967
|
+
from?: string | undefined;
|
|
1968
1968
|
include_totals?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
@@ -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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "info" | "warning";
|
|
2872
2872
|
id?: number | undefined;
|
|
2873
2873
|
}[] | undefined;
|
|
2874
2874
|
required?: boolean | undefined;
|
|
@@ -2887,7 +2887,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2887
2887
|
hint?: string | undefined;
|
|
2888
2888
|
messages?: {
|
|
2889
2889
|
text: string;
|
|
2890
|
-
type: "
|
|
2890
|
+
type: "success" | "error" | "info" | "warning";
|
|
2891
2891
|
id?: number | undefined;
|
|
2892
2892
|
}[] | undefined;
|
|
2893
2893
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2907
2907
|
hint?: string | undefined;
|
|
2908
2908
|
messages?: {
|
|
2909
2909
|
text: string;
|
|
2910
|
-
type: "
|
|
2910
|
+
type: "success" | "error" | "info" | "warning";
|
|
2911
2911
|
id?: number | undefined;
|
|
2912
2912
|
}[] | undefined;
|
|
2913
2913
|
required?: boolean | undefined;
|
|
@@ -2926,7 +2926,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2926
2926
|
hint?: string | undefined;
|
|
2927
2927
|
messages?: {
|
|
2928
2928
|
text: string;
|
|
2929
|
-
type: "
|
|
2929
|
+
type: "success" | "error" | "info" | "warning";
|
|
2930
2930
|
id?: number | undefined;
|
|
2931
2931
|
}[] | undefined;
|
|
2932
2932
|
required?: boolean | undefined;
|
|
@@ -2948,7 +2948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2948
2948
|
hint?: string | undefined;
|
|
2949
2949
|
messages?: {
|
|
2950
2950
|
text: string;
|
|
2951
|
-
type: "
|
|
2951
|
+
type: "success" | "error" | "info" | "warning";
|
|
2952
2952
|
id?: number | undefined;
|
|
2953
2953
|
}[] | undefined;
|
|
2954
2954
|
required?: boolean | undefined;
|
|
@@ -2970,7 +2970,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2970
2970
|
hint?: string | undefined;
|
|
2971
2971
|
messages?: {
|
|
2972
2972
|
text: string;
|
|
2973
|
-
type: "
|
|
2973
|
+
type: "success" | "error" | "info" | "warning";
|
|
2974
2974
|
id?: number | undefined;
|
|
2975
2975
|
}[] | undefined;
|
|
2976
2976
|
required?: boolean | undefined;
|
|
@@ -2989,7 +2989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2989
2989
|
hint?: string | undefined;
|
|
2990
2990
|
messages?: {
|
|
2991
2991
|
text: string;
|
|
2992
|
-
type: "
|
|
2992
|
+
type: "success" | "error" | "info" | "warning";
|
|
2993
2993
|
id?: number | undefined;
|
|
2994
2994
|
}[] | undefined;
|
|
2995
2995
|
required?: boolean | undefined;
|
|
@@ -3014,7 +3014,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3014
3014
|
hint?: string | undefined;
|
|
3015
3015
|
messages?: {
|
|
3016
3016
|
text: string;
|
|
3017
|
-
type: "
|
|
3017
|
+
type: "success" | "error" | "info" | "warning";
|
|
3018
3018
|
id?: number | undefined;
|
|
3019
3019
|
}[] | undefined;
|
|
3020
3020
|
required?: boolean | undefined;
|
|
@@ -3035,7 +3035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3035
3035
|
hint?: string | undefined;
|
|
3036
3036
|
messages?: {
|
|
3037
3037
|
text: string;
|
|
3038
|
-
type: "
|
|
3038
|
+
type: "success" | "error" | "info" | "warning";
|
|
3039
3039
|
id?: number | undefined;
|
|
3040
3040
|
}[] | undefined;
|
|
3041
3041
|
required?: boolean | undefined;
|
|
@@ -3056,7 +3056,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3056
3056
|
hint?: string | undefined;
|
|
3057
3057
|
messages?: {
|
|
3058
3058
|
text: string;
|
|
3059
|
-
type: "
|
|
3059
|
+
type: "success" | "error" | "info" | "warning";
|
|
3060
3060
|
id?: number | undefined;
|
|
3061
3061
|
}[] | undefined;
|
|
3062
3062
|
required?: boolean | undefined;
|
|
@@ -3289,7 +3289,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3289
3289
|
hint?: string | undefined;
|
|
3290
3290
|
messages?: {
|
|
3291
3291
|
text: string;
|
|
3292
|
-
type: "
|
|
3292
|
+
type: "success" | "error" | "info" | "warning";
|
|
3293
3293
|
id?: number | undefined;
|
|
3294
3294
|
}[] | undefined;
|
|
3295
3295
|
required?: boolean | undefined;
|
|
@@ -3307,7 +3307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3307
3307
|
hint?: string | undefined;
|
|
3308
3308
|
messages?: {
|
|
3309
3309
|
text: string;
|
|
3310
|
-
type: "
|
|
3310
|
+
type: "success" | "error" | "info" | "warning";
|
|
3311
3311
|
id?: number | undefined;
|
|
3312
3312
|
}[] | undefined;
|
|
3313
3313
|
required?: boolean | undefined;
|
|
@@ -3331,7 +3331,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3331
3331
|
hint?: string | undefined;
|
|
3332
3332
|
messages?: {
|
|
3333
3333
|
text: string;
|
|
3334
|
-
type: "
|
|
3334
|
+
type: "success" | "error" | "info" | "warning";
|
|
3335
3335
|
id?: number | undefined;
|
|
3336
3336
|
}[] | undefined;
|
|
3337
3337
|
required?: boolean | undefined;
|
|
@@ -3355,7 +3355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3355
3355
|
hint?: string | undefined;
|
|
3356
3356
|
messages?: {
|
|
3357
3357
|
text: string;
|
|
3358
|
-
type: "
|
|
3358
|
+
type: "success" | "error" | "info" | "warning";
|
|
3359
3359
|
id?: number | undefined;
|
|
3360
3360
|
}[] | undefined;
|
|
3361
3361
|
required?: boolean | undefined;
|
|
@@ -3379,7 +3379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3379
3379
|
hint?: string | undefined;
|
|
3380
3380
|
messages?: {
|
|
3381
3381
|
text: string;
|
|
3382
|
-
type: "
|
|
3382
|
+
type: "success" | "error" | "info" | "warning";
|
|
3383
3383
|
id?: number | undefined;
|
|
3384
3384
|
}[] | undefined;
|
|
3385
3385
|
required?: boolean | undefined;
|
|
@@ -3408,7 +3408,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3408
3408
|
hint?: string | undefined;
|
|
3409
3409
|
messages?: {
|
|
3410
3410
|
text: string;
|
|
3411
|
-
type: "
|
|
3411
|
+
type: "success" | "error" | "info" | "warning";
|
|
3412
3412
|
id?: number | undefined;
|
|
3413
3413
|
}[] | undefined;
|
|
3414
3414
|
required?: boolean | undefined;
|
|
@@ -3423,7 +3423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3423
3423
|
hint?: string | undefined;
|
|
3424
3424
|
messages?: {
|
|
3425
3425
|
text: string;
|
|
3426
|
-
type: "
|
|
3426
|
+
type: "success" | "error" | "info" | "warning";
|
|
3427
3427
|
id?: number | undefined;
|
|
3428
3428
|
}[] | undefined;
|
|
3429
3429
|
required?: boolean | undefined;
|
|
@@ -3444,7 +3444,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3444
3444
|
hint?: string | undefined;
|
|
3445
3445
|
messages?: {
|
|
3446
3446
|
text: string;
|
|
3447
|
-
type: "
|
|
3447
|
+
type: "success" | "error" | "info" | "warning";
|
|
3448
3448
|
id?: number | undefined;
|
|
3449
3449
|
}[] | undefined;
|
|
3450
3450
|
required?: boolean | undefined;
|
|
@@ -3469,7 +3469,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3469
3469
|
hint?: string | undefined;
|
|
3470
3470
|
messages?: {
|
|
3471
3471
|
text: string;
|
|
3472
|
-
type: "
|
|
3472
|
+
type: "success" | "error" | "info" | "warning";
|
|
3473
3473
|
id?: number | undefined;
|
|
3474
3474
|
}[] | undefined;
|
|
3475
3475
|
required?: boolean | undefined;
|
|
@@ -3488,7 +3488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3488
3488
|
hint?: string | undefined;
|
|
3489
3489
|
messages?: {
|
|
3490
3490
|
text: string;
|
|
3491
|
-
type: "
|
|
3491
|
+
type: "success" | "error" | "info" | "warning";
|
|
3492
3492
|
id?: number | undefined;
|
|
3493
3493
|
}[] | undefined;
|
|
3494
3494
|
required?: boolean | undefined;
|
|
@@ -3508,7 +3508,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3508
3508
|
hint?: string | undefined;
|
|
3509
3509
|
messages?: {
|
|
3510
3510
|
text: string;
|
|
3511
|
-
type: "
|
|
3511
|
+
type: "success" | "error" | "info" | "warning";
|
|
3512
3512
|
id?: number | undefined;
|
|
3513
3513
|
}[] | undefined;
|
|
3514
3514
|
required?: boolean | undefined;
|
|
@@ -3527,7 +3527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3527
3527
|
hint?: string | undefined;
|
|
3528
3528
|
messages?: {
|
|
3529
3529
|
text: string;
|
|
3530
|
-
type: "
|
|
3530
|
+
type: "success" | "error" | "info" | "warning";
|
|
3531
3531
|
id?: number | undefined;
|
|
3532
3532
|
}[] | undefined;
|
|
3533
3533
|
required?: boolean | undefined;
|
|
@@ -3549,7 +3549,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3549
3549
|
hint?: string | undefined;
|
|
3550
3550
|
messages?: {
|
|
3551
3551
|
text: string;
|
|
3552
|
-
type: "
|
|
3552
|
+
type: "success" | "error" | "info" | "warning";
|
|
3553
3553
|
id?: number | undefined;
|
|
3554
3554
|
}[] | undefined;
|
|
3555
3555
|
required?: boolean | undefined;
|
|
@@ -3571,7 +3571,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3571
3571
|
hint?: string | undefined;
|
|
3572
3572
|
messages?: {
|
|
3573
3573
|
text: string;
|
|
3574
|
-
type: "
|
|
3574
|
+
type: "success" | "error" | "info" | "warning";
|
|
3575
3575
|
id?: number | undefined;
|
|
3576
3576
|
}[] | undefined;
|
|
3577
3577
|
required?: boolean | undefined;
|
|
@@ -3590,7 +3590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3590
3590
|
hint?: string | undefined;
|
|
3591
3591
|
messages?: {
|
|
3592
3592
|
text: string;
|
|
3593
|
-
type: "
|
|
3593
|
+
type: "success" | "error" | "info" | "warning";
|
|
3594
3594
|
id?: number | undefined;
|
|
3595
3595
|
}[] | undefined;
|
|
3596
3596
|
required?: boolean | undefined;
|
|
@@ -3615,7 +3615,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3615
3615
|
hint?: string | undefined;
|
|
3616
3616
|
messages?: {
|
|
3617
3617
|
text: string;
|
|
3618
|
-
type: "
|
|
3618
|
+
type: "success" | "error" | "info" | "warning";
|
|
3619
3619
|
id?: number | undefined;
|
|
3620
3620
|
}[] | undefined;
|
|
3621
3621
|
required?: boolean | undefined;
|
|
@@ -3636,7 +3636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3636
3636
|
hint?: string | undefined;
|
|
3637
3637
|
messages?: {
|
|
3638
3638
|
text: string;
|
|
3639
|
-
type: "
|
|
3639
|
+
type: "success" | "error" | "info" | "warning";
|
|
3640
3640
|
id?: number | undefined;
|
|
3641
3641
|
}[] | undefined;
|
|
3642
3642
|
required?: boolean | undefined;
|
|
@@ -3657,7 +3657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3657
3657
|
hint?: string | undefined;
|
|
3658
3658
|
messages?: {
|
|
3659
3659
|
text: string;
|
|
3660
|
-
type: "
|
|
3660
|
+
type: "success" | "error" | "info" | "warning";
|
|
3661
3661
|
id?: number | undefined;
|
|
3662
3662
|
}[] | undefined;
|
|
3663
3663
|
required?: boolean | undefined;
|
|
@@ -3906,7 +3906,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3906
3906
|
hint?: string | undefined;
|
|
3907
3907
|
messages?: {
|
|
3908
3908
|
text: string;
|
|
3909
|
-
type: "
|
|
3909
|
+
type: "success" | "error" | "info" | "warning";
|
|
3910
3910
|
id?: number | undefined;
|
|
3911
3911
|
}[] | undefined;
|
|
3912
3912
|
required?: boolean | undefined;
|
|
@@ -3924,7 +3924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3924
3924
|
hint?: string | undefined;
|
|
3925
3925
|
messages?: {
|
|
3926
3926
|
text: string;
|
|
3927
|
-
type: "
|
|
3927
|
+
type: "success" | "error" | "info" | "warning";
|
|
3928
3928
|
id?: number | undefined;
|
|
3929
3929
|
}[] | undefined;
|
|
3930
3930
|
required?: boolean | undefined;
|
|
@@ -3948,7 +3948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3948
3948
|
hint?: string | undefined;
|
|
3949
3949
|
messages?: {
|
|
3950
3950
|
text: string;
|
|
3951
|
-
type: "
|
|
3951
|
+
type: "success" | "error" | "info" | "warning";
|
|
3952
3952
|
id?: number | undefined;
|
|
3953
3953
|
}[] | undefined;
|
|
3954
3954
|
required?: boolean | undefined;
|
|
@@ -3972,7 +3972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3972
3972
|
hint?: string | undefined;
|
|
3973
3973
|
messages?: {
|
|
3974
3974
|
text: string;
|
|
3975
|
-
type: "
|
|
3975
|
+
type: "success" | "error" | "info" | "warning";
|
|
3976
3976
|
id?: number | undefined;
|
|
3977
3977
|
}[] | undefined;
|
|
3978
3978
|
required?: boolean | undefined;
|
|
@@ -3996,7 +3996,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3996
3996
|
hint?: string | undefined;
|
|
3997
3997
|
messages?: {
|
|
3998
3998
|
text: string;
|
|
3999
|
-
type: "
|
|
3999
|
+
type: "success" | "error" | "info" | "warning";
|
|
4000
4000
|
id?: number | undefined;
|
|
4001
4001
|
}[] | undefined;
|
|
4002
4002
|
required?: boolean | undefined;
|
|
@@ -4025,7 +4025,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4025
4025
|
hint?: string | undefined;
|
|
4026
4026
|
messages?: {
|
|
4027
4027
|
text: string;
|
|
4028
|
-
type: "
|
|
4028
|
+
type: "success" | "error" | "info" | "warning";
|
|
4029
4029
|
id?: number | undefined;
|
|
4030
4030
|
}[] | undefined;
|
|
4031
4031
|
required?: boolean | undefined;
|
|
@@ -4040,7 +4040,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4040
4040
|
hint?: string | undefined;
|
|
4041
4041
|
messages?: {
|
|
4042
4042
|
text: string;
|
|
4043
|
-
type: "
|
|
4043
|
+
type: "success" | "error" | "info" | "warning";
|
|
4044
4044
|
id?: number | undefined;
|
|
4045
4045
|
}[] | undefined;
|
|
4046
4046
|
required?: boolean | undefined;
|
|
@@ -4061,7 +4061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4061
4061
|
hint?: string | undefined;
|
|
4062
4062
|
messages?: {
|
|
4063
4063
|
text: string;
|
|
4064
|
-
type: "
|
|
4064
|
+
type: "success" | "error" | "info" | "warning";
|
|
4065
4065
|
id?: number | undefined;
|
|
4066
4066
|
}[] | undefined;
|
|
4067
4067
|
required?: boolean | undefined;
|
|
@@ -4086,7 +4086,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4086
4086
|
hint?: string | undefined;
|
|
4087
4087
|
messages?: {
|
|
4088
4088
|
text: string;
|
|
4089
|
-
type: "
|
|
4089
|
+
type: "success" | "error" | "info" | "warning";
|
|
4090
4090
|
id?: number | undefined;
|
|
4091
4091
|
}[] | undefined;
|
|
4092
4092
|
required?: boolean | undefined;
|
|
@@ -4105,7 +4105,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4105
4105
|
hint?: string | undefined;
|
|
4106
4106
|
messages?: {
|
|
4107
4107
|
text: string;
|
|
4108
|
-
type: "
|
|
4108
|
+
type: "success" | "error" | "info" | "warning";
|
|
4109
4109
|
id?: number | undefined;
|
|
4110
4110
|
}[] | undefined;
|
|
4111
4111
|
required?: boolean | undefined;
|
|
@@ -4125,7 +4125,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4125
4125
|
hint?: string | undefined;
|
|
4126
4126
|
messages?: {
|
|
4127
4127
|
text: string;
|
|
4128
|
-
type: "
|
|
4128
|
+
type: "success" | "error" | "info" | "warning";
|
|
4129
4129
|
id?: number | undefined;
|
|
4130
4130
|
}[] | undefined;
|
|
4131
4131
|
required?: boolean | undefined;
|
|
@@ -4144,7 +4144,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4144
4144
|
hint?: string | undefined;
|
|
4145
4145
|
messages?: {
|
|
4146
4146
|
text: string;
|
|
4147
|
-
type: "
|
|
4147
|
+
type: "success" | "error" | "info" | "warning";
|
|
4148
4148
|
id?: number | undefined;
|
|
4149
4149
|
}[] | undefined;
|
|
4150
4150
|
required?: boolean | undefined;
|
|
@@ -4166,7 +4166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4166
4166
|
hint?: string | undefined;
|
|
4167
4167
|
messages?: {
|
|
4168
4168
|
text: string;
|
|
4169
|
-
type: "
|
|
4169
|
+
type: "success" | "error" | "info" | "warning";
|
|
4170
4170
|
id?: number | undefined;
|
|
4171
4171
|
}[] | undefined;
|
|
4172
4172
|
required?: boolean | undefined;
|
|
@@ -4188,7 +4188,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4188
4188
|
hint?: string | undefined;
|
|
4189
4189
|
messages?: {
|
|
4190
4190
|
text: string;
|
|
4191
|
-
type: "
|
|
4191
|
+
type: "success" | "error" | "info" | "warning";
|
|
4192
4192
|
id?: number | undefined;
|
|
4193
4193
|
}[] | undefined;
|
|
4194
4194
|
required?: boolean | undefined;
|
|
@@ -4207,7 +4207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4207
4207
|
hint?: string | undefined;
|
|
4208
4208
|
messages?: {
|
|
4209
4209
|
text: string;
|
|
4210
|
-
type: "
|
|
4210
|
+
type: "success" | "error" | "info" | "warning";
|
|
4211
4211
|
id?: number | undefined;
|
|
4212
4212
|
}[] | undefined;
|
|
4213
4213
|
required?: boolean | undefined;
|
|
@@ -4232,7 +4232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4232
4232
|
hint?: string | undefined;
|
|
4233
4233
|
messages?: {
|
|
4234
4234
|
text: string;
|
|
4235
|
-
type: "
|
|
4235
|
+
type: "success" | "error" | "info" | "warning";
|
|
4236
4236
|
id?: number | undefined;
|
|
4237
4237
|
}[] | undefined;
|
|
4238
4238
|
required?: boolean | undefined;
|
|
@@ -4253,7 +4253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4253
4253
|
hint?: string | undefined;
|
|
4254
4254
|
messages?: {
|
|
4255
4255
|
text: string;
|
|
4256
|
-
type: "
|
|
4256
|
+
type: "success" | "error" | "info" | "warning";
|
|
4257
4257
|
id?: number | undefined;
|
|
4258
4258
|
}[] | undefined;
|
|
4259
4259
|
required?: boolean | undefined;
|
|
@@ -4274,7 +4274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4274
4274
|
hint?: string | undefined;
|
|
4275
4275
|
messages?: {
|
|
4276
4276
|
text: string;
|
|
4277
|
-
type: "
|
|
4277
|
+
type: "success" | "error" | "info" | "warning";
|
|
4278
4278
|
id?: number | undefined;
|
|
4279
4279
|
}[] | undefined;
|
|
4280
4280
|
required?: boolean | undefined;
|
|
@@ -4528,7 +4528,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4528
4528
|
hint?: string | undefined;
|
|
4529
4529
|
messages?: {
|
|
4530
4530
|
text: string;
|
|
4531
|
-
type: "
|
|
4531
|
+
type: "success" | "error" | "info" | "warning";
|
|
4532
4532
|
id?: number | undefined;
|
|
4533
4533
|
}[] | undefined;
|
|
4534
4534
|
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: "success" | "error" | "info" | "warning";
|
|
4550
4550
|
id?: number | undefined;
|
|
4551
4551
|
}[] | undefined;
|
|
4552
4552
|
required?: boolean | undefined;
|
|
@@ -4570,7 +4570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4570
4570
|
hint?: string | undefined;
|
|
4571
4571
|
messages?: {
|
|
4572
4572
|
text: string;
|
|
4573
|
-
type: "
|
|
4573
|
+
type: "success" | "error" | "info" | "warning";
|
|
4574
4574
|
id?: number | undefined;
|
|
4575
4575
|
}[] | undefined;
|
|
4576
4576
|
required?: boolean | undefined;
|
|
@@ -4594,7 +4594,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4594
4594
|
hint?: string | undefined;
|
|
4595
4595
|
messages?: {
|
|
4596
4596
|
text: string;
|
|
4597
|
-
type: "
|
|
4597
|
+
type: "success" | "error" | "info" | "warning";
|
|
4598
4598
|
id?: number | undefined;
|
|
4599
4599
|
}[] | undefined;
|
|
4600
4600
|
required?: boolean | undefined;
|
|
@@ -4618,7 +4618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4618
4618
|
hint?: string | undefined;
|
|
4619
4619
|
messages?: {
|
|
4620
4620
|
text: string;
|
|
4621
|
-
type: "
|
|
4621
|
+
type: "success" | "error" | "info" | "warning";
|
|
4622
4622
|
id?: number | undefined;
|
|
4623
4623
|
}[] | undefined;
|
|
4624
4624
|
required?: boolean | undefined;
|
|
@@ -4643,7 +4643,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4643
4643
|
hint?: string | undefined;
|
|
4644
4644
|
messages?: {
|
|
4645
4645
|
text: string;
|
|
4646
|
-
type: "
|
|
4646
|
+
type: "success" | "error" | "info" | "warning";
|
|
4647
4647
|
id?: number | undefined;
|
|
4648
4648
|
}[] | undefined;
|
|
4649
4649
|
required?: boolean | undefined;
|
|
@@ -4658,7 +4658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4658
4658
|
hint?: string | undefined;
|
|
4659
4659
|
messages?: {
|
|
4660
4660
|
text: string;
|
|
4661
|
-
type: "
|
|
4661
|
+
type: "success" | "error" | "info" | "warning";
|
|
4662
4662
|
id?: number | undefined;
|
|
4663
4663
|
}[] | undefined;
|
|
4664
4664
|
required?: boolean | undefined;
|
|
@@ -4679,7 +4679,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4679
4679
|
hint?: string | undefined;
|
|
4680
4680
|
messages?: {
|
|
4681
4681
|
text: string;
|
|
4682
|
-
type: "
|
|
4682
|
+
type: "success" | "error" | "info" | "warning";
|
|
4683
4683
|
id?: number | undefined;
|
|
4684
4684
|
}[] | undefined;
|
|
4685
4685
|
required?: boolean | undefined;
|
|
@@ -4704,7 +4704,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4704
4704
|
hint?: string | undefined;
|
|
4705
4705
|
messages?: {
|
|
4706
4706
|
text: string;
|
|
4707
|
-
type: "
|
|
4707
|
+
type: "success" | "error" | "info" | "warning";
|
|
4708
4708
|
id?: number | undefined;
|
|
4709
4709
|
}[] | undefined;
|
|
4710
4710
|
required?: boolean | undefined;
|
|
@@ -4723,7 +4723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4723
4723
|
hint?: string | undefined;
|
|
4724
4724
|
messages?: {
|
|
4725
4725
|
text: string;
|
|
4726
|
-
type: "
|
|
4726
|
+
type: "success" | "error" | "info" | "warning";
|
|
4727
4727
|
id?: number | undefined;
|
|
4728
4728
|
}[] | undefined;
|
|
4729
4729
|
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: "success" | "error" | "info" | "warning";
|
|
4747
4747
|
id?: number | undefined;
|
|
4748
4748
|
}[] | undefined;
|
|
4749
4749
|
required?: boolean | undefined;
|
|
@@ -4762,7 +4762,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4762
4762
|
hint?: string | undefined;
|
|
4763
4763
|
messages?: {
|
|
4764
4764
|
text: string;
|
|
4765
|
-
type: "
|
|
4765
|
+
type: "success" | "error" | "info" | "warning";
|
|
4766
4766
|
id?: number | undefined;
|
|
4767
4767
|
}[] | undefined;
|
|
4768
4768
|
required?: boolean | undefined;
|
|
@@ -4784,7 +4784,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4784
4784
|
hint?: string | undefined;
|
|
4785
4785
|
messages?: {
|
|
4786
4786
|
text: string;
|
|
4787
|
-
type: "
|
|
4787
|
+
type: "success" | "error" | "info" | "warning";
|
|
4788
4788
|
id?: number | undefined;
|
|
4789
4789
|
}[] | undefined;
|
|
4790
4790
|
required?: boolean | undefined;
|
|
@@ -4806,7 +4806,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4806
4806
|
hint?: string | undefined;
|
|
4807
4807
|
messages?: {
|
|
4808
4808
|
text: string;
|
|
4809
|
-
type: "
|
|
4809
|
+
type: "success" | "error" | "info" | "warning";
|
|
4810
4810
|
id?: number | undefined;
|
|
4811
4811
|
}[] | undefined;
|
|
4812
4812
|
required?: boolean | undefined;
|
|
@@ -4825,7 +4825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4825
4825
|
hint?: string | undefined;
|
|
4826
4826
|
messages?: {
|
|
4827
4827
|
text: string;
|
|
4828
|
-
type: "
|
|
4828
|
+
type: "success" | "error" | "info" | "warning";
|
|
4829
4829
|
id?: number | undefined;
|
|
4830
4830
|
}[] | undefined;
|
|
4831
4831
|
required?: boolean | undefined;
|
|
@@ -4850,7 +4850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4850
4850
|
hint?: string | undefined;
|
|
4851
4851
|
messages?: {
|
|
4852
4852
|
text: string;
|
|
4853
|
-
type: "
|
|
4853
|
+
type: "success" | "error" | "info" | "warning";
|
|
4854
4854
|
id?: number | undefined;
|
|
4855
4855
|
}[] | undefined;
|
|
4856
4856
|
required?: boolean | undefined;
|
|
@@ -4871,7 +4871,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4871
4871
|
hint?: string | undefined;
|
|
4872
4872
|
messages?: {
|
|
4873
4873
|
text: string;
|
|
4874
|
-
type: "
|
|
4874
|
+
type: "success" | "error" | "info" | "warning";
|
|
4875
4875
|
id?: number | undefined;
|
|
4876
4876
|
}[] | undefined;
|
|
4877
4877
|
required?: boolean | undefined;
|
|
@@ -4892,7 +4892,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4892
4892
|
hint?: string | undefined;
|
|
4893
4893
|
messages?: {
|
|
4894
4894
|
text: string;
|
|
4895
|
-
type: "
|
|
4895
|
+
type: "success" | "error" | "info" | "warning";
|
|
4896
4896
|
id?: number | undefined;
|
|
4897
4897
|
}[] | undefined;
|
|
4898
4898
|
required?: boolean | undefined;
|
|
@@ -5123,7 +5123,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5123
5123
|
hint?: string | undefined;
|
|
5124
5124
|
messages?: {
|
|
5125
5125
|
text: string;
|
|
5126
|
-
type: "
|
|
5126
|
+
type: "success" | "error" | "info" | "warning";
|
|
5127
5127
|
id?: number | undefined;
|
|
5128
5128
|
}[] | undefined;
|
|
5129
5129
|
required?: boolean | undefined;
|
|
@@ -5141,7 +5141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5141
5141
|
hint?: string | undefined;
|
|
5142
5142
|
messages?: {
|
|
5143
5143
|
text: string;
|
|
5144
|
-
type: "
|
|
5144
|
+
type: "success" | "error" | "info" | "warning";
|
|
5145
5145
|
id?: number | undefined;
|
|
5146
5146
|
}[] | undefined;
|
|
5147
5147
|
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: "success" | "error" | "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: "success" | "error" | "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: "success" | "error" | "info" | "warning";
|
|
5217
5217
|
id?: number | undefined;
|
|
5218
5218
|
}[] | undefined;
|
|
5219
5219
|
required?: boolean | undefined;
|
|
@@ -5242,7 +5242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5242
5242
|
hint?: string | undefined;
|
|
5243
5243
|
messages?: {
|
|
5244
5244
|
text: string;
|
|
5245
|
-
type: "
|
|
5245
|
+
type: "success" | "error" | "info" | "warning";
|
|
5246
5246
|
id?: number | undefined;
|
|
5247
5247
|
}[] | undefined;
|
|
5248
5248
|
required?: boolean | undefined;
|
|
@@ -5257,7 +5257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5257
5257
|
hint?: string | undefined;
|
|
5258
5258
|
messages?: {
|
|
5259
5259
|
text: string;
|
|
5260
|
-
type: "
|
|
5260
|
+
type: "success" | "error" | "info" | "warning";
|
|
5261
5261
|
id?: number | undefined;
|
|
5262
5262
|
}[] | undefined;
|
|
5263
5263
|
required?: boolean | undefined;
|
|
@@ -5278,7 +5278,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5278
5278
|
hint?: string | undefined;
|
|
5279
5279
|
messages?: {
|
|
5280
5280
|
text: string;
|
|
5281
|
-
type: "
|
|
5281
|
+
type: "success" | "error" | "info" | "warning";
|
|
5282
5282
|
id?: number | undefined;
|
|
5283
5283
|
}[] | undefined;
|
|
5284
5284
|
required?: boolean | undefined;
|
|
@@ -5303,7 +5303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5303
5303
|
hint?: string | undefined;
|
|
5304
5304
|
messages?: {
|
|
5305
5305
|
text: string;
|
|
5306
|
-
type: "
|
|
5306
|
+
type: "success" | "error" | "info" | "warning";
|
|
5307
5307
|
id?: number | undefined;
|
|
5308
5308
|
}[] | undefined;
|
|
5309
5309
|
required?: boolean | undefined;
|
|
@@ -5322,7 +5322,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5322
5322
|
hint?: string | undefined;
|
|
5323
5323
|
messages?: {
|
|
5324
5324
|
text: string;
|
|
5325
|
-
type: "
|
|
5325
|
+
type: "success" | "error" | "info" | "warning";
|
|
5326
5326
|
id?: number | undefined;
|
|
5327
5327
|
}[] | undefined;
|
|
5328
5328
|
required?: boolean | undefined;
|
|
@@ -5342,7 +5342,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5342
5342
|
hint?: string | undefined;
|
|
5343
5343
|
messages?: {
|
|
5344
5344
|
text: string;
|
|
5345
|
-
type: "
|
|
5345
|
+
type: "success" | "error" | "info" | "warning";
|
|
5346
5346
|
id?: number | undefined;
|
|
5347
5347
|
}[] | undefined;
|
|
5348
5348
|
required?: boolean | undefined;
|
|
@@ -5361,7 +5361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5361
5361
|
hint?: string | undefined;
|
|
5362
5362
|
messages?: {
|
|
5363
5363
|
text: string;
|
|
5364
|
-
type: "
|
|
5364
|
+
type: "success" | "error" | "info" | "warning";
|
|
5365
5365
|
id?: number | undefined;
|
|
5366
5366
|
}[] | undefined;
|
|
5367
5367
|
required?: boolean | undefined;
|
|
@@ -5383,7 +5383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5383
5383
|
hint?: string | undefined;
|
|
5384
5384
|
messages?: {
|
|
5385
5385
|
text: string;
|
|
5386
|
-
type: "
|
|
5386
|
+
type: "success" | "error" | "info" | "warning";
|
|
5387
5387
|
id?: number | undefined;
|
|
5388
5388
|
}[] | undefined;
|
|
5389
5389
|
required?: boolean | undefined;
|
|
@@ -5405,7 +5405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5405
5405
|
hint?: string | undefined;
|
|
5406
5406
|
messages?: {
|
|
5407
5407
|
text: string;
|
|
5408
|
-
type: "
|
|
5408
|
+
type: "success" | "error" | "info" | "warning";
|
|
5409
5409
|
id?: number | undefined;
|
|
5410
5410
|
}[] | undefined;
|
|
5411
5411
|
required?: boolean | undefined;
|
|
@@ -5424,7 +5424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5424
5424
|
hint?: string | undefined;
|
|
5425
5425
|
messages?: {
|
|
5426
5426
|
text: string;
|
|
5427
|
-
type: "
|
|
5427
|
+
type: "success" | "error" | "info" | "warning";
|
|
5428
5428
|
id?: number | undefined;
|
|
5429
5429
|
}[] | undefined;
|
|
5430
5430
|
required?: boolean | undefined;
|
|
@@ -5449,7 +5449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5449
5449
|
hint?: string | undefined;
|
|
5450
5450
|
messages?: {
|
|
5451
5451
|
text: string;
|
|
5452
|
-
type: "
|
|
5452
|
+
type: "success" | "error" | "info" | "warning";
|
|
5453
5453
|
id?: number | undefined;
|
|
5454
5454
|
}[] | undefined;
|
|
5455
5455
|
required?: boolean | undefined;
|
|
@@ -5470,7 +5470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5470
5470
|
hint?: string | undefined;
|
|
5471
5471
|
messages?: {
|
|
5472
5472
|
text: string;
|
|
5473
|
-
type: "
|
|
5473
|
+
type: "success" | "error" | "info" | "warning";
|
|
5474
5474
|
id?: number | undefined;
|
|
5475
5475
|
}[] | undefined;
|
|
5476
5476
|
required?: boolean | undefined;
|
|
@@ -5491,7 +5491,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5491
5491
|
hint?: string | undefined;
|
|
5492
5492
|
messages?: {
|
|
5493
5493
|
text: string;
|
|
5494
|
-
type: "
|
|
5494
|
+
type: "success" | "error" | "info" | "warning";
|
|
5495
5495
|
id?: number | undefined;
|
|
5496
5496
|
}[] | undefined;
|
|
5497
5497
|
required?: boolean | undefined;
|
|
@@ -5724,7 +5724,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5724
5724
|
hint?: string | undefined;
|
|
5725
5725
|
messages?: {
|
|
5726
5726
|
text: string;
|
|
5727
|
-
type: "
|
|
5727
|
+
type: "success" | "error" | "info" | "warning";
|
|
5728
5728
|
id?: number | undefined;
|
|
5729
5729
|
}[] | undefined;
|
|
5730
5730
|
required?: boolean | undefined;
|
|
@@ -5742,7 +5742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5742
5742
|
hint?: string | undefined;
|
|
5743
5743
|
messages?: {
|
|
5744
5744
|
text: string;
|
|
5745
|
-
type: "
|
|
5745
|
+
type: "success" | "error" | "info" | "warning";
|
|
5746
5746
|
id?: number | undefined;
|
|
5747
5747
|
}[] | undefined;
|
|
5748
5748
|
required?: boolean | undefined;
|
|
@@ -5766,7 +5766,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5766
5766
|
hint?: string | undefined;
|
|
5767
5767
|
messages?: {
|
|
5768
5768
|
text: string;
|
|
5769
|
-
type: "
|
|
5769
|
+
type: "success" | "error" | "info" | "warning";
|
|
5770
5770
|
id?: number | undefined;
|
|
5771
5771
|
}[] | undefined;
|
|
5772
5772
|
required?: boolean | undefined;
|
|
@@ -5790,7 +5790,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5790
5790
|
hint?: string | undefined;
|
|
5791
5791
|
messages?: {
|
|
5792
5792
|
text: string;
|
|
5793
|
-
type: "
|
|
5793
|
+
type: "success" | "error" | "info" | "warning";
|
|
5794
5794
|
id?: number | undefined;
|
|
5795
5795
|
}[] | undefined;
|
|
5796
5796
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5814
5814
|
hint?: string | undefined;
|
|
5815
5815
|
messages?: {
|
|
5816
5816
|
text: string;
|
|
5817
|
-
type: "
|
|
5817
|
+
type: "success" | "error" | "info" | "warning";
|
|
5818
5818
|
id?: number | undefined;
|
|
5819
5819
|
}[] | undefined;
|
|
5820
5820
|
required?: boolean | undefined;
|
|
@@ -5839,7 +5839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5839
5839
|
hint?: string | undefined;
|
|
5840
5840
|
messages?: {
|
|
5841
5841
|
text: string;
|
|
5842
|
-
type: "
|
|
5842
|
+
type: "success" | "error" | "info" | "warning";
|
|
5843
5843
|
id?: number | undefined;
|
|
5844
5844
|
}[] | undefined;
|
|
5845
5845
|
required?: boolean | undefined;
|
|
@@ -5854,7 +5854,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5854
5854
|
hint?: string | undefined;
|
|
5855
5855
|
messages?: {
|
|
5856
5856
|
text: string;
|
|
5857
|
-
type: "
|
|
5857
|
+
type: "success" | "error" | "info" | "warning";
|
|
5858
5858
|
id?: number | undefined;
|
|
5859
5859
|
}[] | undefined;
|
|
5860
5860
|
required?: boolean | undefined;
|
|
@@ -5875,7 +5875,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5875
5875
|
hint?: string | undefined;
|
|
5876
5876
|
messages?: {
|
|
5877
5877
|
text: string;
|
|
5878
|
-
type: "
|
|
5878
|
+
type: "success" | "error" | "info" | "warning";
|
|
5879
5879
|
id?: number | undefined;
|
|
5880
5880
|
}[] | undefined;
|
|
5881
5881
|
required?: boolean | undefined;
|
|
@@ -5900,7 +5900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5900
5900
|
hint?: string | undefined;
|
|
5901
5901
|
messages?: {
|
|
5902
5902
|
text: string;
|
|
5903
|
-
type: "
|
|
5903
|
+
type: "success" | "error" | "info" | "warning";
|
|
5904
5904
|
id?: number | undefined;
|
|
5905
5905
|
}[] | undefined;
|
|
5906
5906
|
required?: boolean | undefined;
|
|
@@ -5919,7 +5919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5919
5919
|
hint?: string | undefined;
|
|
5920
5920
|
messages?: {
|
|
5921
5921
|
text: string;
|
|
5922
|
-
type: "
|
|
5922
|
+
type: "success" | "error" | "info" | "warning";
|
|
5923
5923
|
id?: number | undefined;
|
|
5924
5924
|
}[] | undefined;
|
|
5925
5925
|
required?: boolean | undefined;
|
|
@@ -5939,7 +5939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5939
5939
|
hint?: string | undefined;
|
|
5940
5940
|
messages?: {
|
|
5941
5941
|
text: string;
|
|
5942
|
-
type: "
|
|
5942
|
+
type: "success" | "error" | "info" | "warning";
|
|
5943
5943
|
id?: number | undefined;
|
|
5944
5944
|
}[] | undefined;
|
|
5945
5945
|
required?: boolean | undefined;
|
|
@@ -5958,7 +5958,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5958
5958
|
hint?: string | undefined;
|
|
5959
5959
|
messages?: {
|
|
5960
5960
|
text: string;
|
|
5961
|
-
type: "
|
|
5961
|
+
type: "success" | "error" | "info" | "warning";
|
|
5962
5962
|
id?: number | undefined;
|
|
5963
5963
|
}[] | undefined;
|
|
5964
5964
|
required?: boolean | undefined;
|
|
@@ -5980,7 +5980,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5980
5980
|
hint?: string | undefined;
|
|
5981
5981
|
messages?: {
|
|
5982
5982
|
text: string;
|
|
5983
|
-
type: "
|
|
5983
|
+
type: "success" | "error" | "info" | "warning";
|
|
5984
5984
|
id?: number | undefined;
|
|
5985
5985
|
}[] | undefined;
|
|
5986
5986
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6002,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6002
6002
|
hint?: string | undefined;
|
|
6003
6003
|
messages?: {
|
|
6004
6004
|
text: string;
|
|
6005
|
-
type: "
|
|
6005
|
+
type: "success" | "error" | "info" | "warning";
|
|
6006
6006
|
id?: number | undefined;
|
|
6007
6007
|
}[] | undefined;
|
|
6008
6008
|
required?: boolean | undefined;
|
|
@@ -6021,7 +6021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6021
6021
|
hint?: string | undefined;
|
|
6022
6022
|
messages?: {
|
|
6023
6023
|
text: string;
|
|
6024
|
-
type: "
|
|
6024
|
+
type: "success" | "error" | "info" | "warning";
|
|
6025
6025
|
id?: number | undefined;
|
|
6026
6026
|
}[] | undefined;
|
|
6027
6027
|
required?: boolean | undefined;
|
|
@@ -6046,7 +6046,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6046
6046
|
hint?: string | undefined;
|
|
6047
6047
|
messages?: {
|
|
6048
6048
|
text: string;
|
|
6049
|
-
type: "
|
|
6049
|
+
type: "success" | "error" | "info" | "warning";
|
|
6050
6050
|
id?: number | undefined;
|
|
6051
6051
|
}[] | undefined;
|
|
6052
6052
|
required?: boolean | undefined;
|
|
@@ -6067,7 +6067,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6067
6067
|
hint?: string | undefined;
|
|
6068
6068
|
messages?: {
|
|
6069
6069
|
text: string;
|
|
6070
|
-
type: "
|
|
6070
|
+
type: "success" | "error" | "info" | "warning";
|
|
6071
6071
|
id?: number | undefined;
|
|
6072
6072
|
}[] | undefined;
|
|
6073
6073
|
required?: boolean | undefined;
|
|
@@ -6088,7 +6088,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6088
6088
|
hint?: string | undefined;
|
|
6089
6089
|
messages?: {
|
|
6090
6090
|
text: string;
|
|
6091
|
-
type: "
|
|
6091
|
+
type: "success" | "error" | "info" | "warning";
|
|
6092
6092
|
id?: number | undefined;
|
|
6093
6093
|
}[] | undefined;
|
|
6094
6094
|
required?: boolean | undefined;
|
|
@@ -6319,7 +6319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6319
6319
|
hint?: string | undefined;
|
|
6320
6320
|
messages?: {
|
|
6321
6321
|
text: string;
|
|
6322
|
-
type: "
|
|
6322
|
+
type: "success" | "error" | "info" | "warning";
|
|
6323
6323
|
id?: number | undefined;
|
|
6324
6324
|
}[] | undefined;
|
|
6325
6325
|
required?: boolean | undefined;
|
|
@@ -6337,7 +6337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6337
6337
|
hint?: string | undefined;
|
|
6338
6338
|
messages?: {
|
|
6339
6339
|
text: string;
|
|
6340
|
-
type: "
|
|
6340
|
+
type: "success" | "error" | "info" | "warning";
|
|
6341
6341
|
id?: number | undefined;
|
|
6342
6342
|
}[] | undefined;
|
|
6343
6343
|
required?: boolean | undefined;
|
|
@@ -6361,7 +6361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6361
6361
|
hint?: string | undefined;
|
|
6362
6362
|
messages?: {
|
|
6363
6363
|
text: string;
|
|
6364
|
-
type: "
|
|
6364
|
+
type: "success" | "error" | "info" | "warning";
|
|
6365
6365
|
id?: number | undefined;
|
|
6366
6366
|
}[] | undefined;
|
|
6367
6367
|
required?: boolean | undefined;
|
|
@@ -6385,7 +6385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6385
6385
|
hint?: string | undefined;
|
|
6386
6386
|
messages?: {
|
|
6387
6387
|
text: string;
|
|
6388
|
-
type: "
|
|
6388
|
+
type: "success" | "error" | "info" | "warning";
|
|
6389
6389
|
id?: number | undefined;
|
|
6390
6390
|
}[] | undefined;
|
|
6391
6391
|
required?: boolean | undefined;
|
|
@@ -6409,7 +6409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6409
6409
|
hint?: string | undefined;
|
|
6410
6410
|
messages?: {
|
|
6411
6411
|
text: string;
|
|
6412
|
-
type: "
|
|
6412
|
+
type: "success" | "error" | "info" | "warning";
|
|
6413
6413
|
id?: number | undefined;
|
|
6414
6414
|
}[] | undefined;
|
|
6415
6415
|
required?: boolean | undefined;
|
|
@@ -6438,7 +6438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6438
6438
|
hint?: string | undefined;
|
|
6439
6439
|
messages?: {
|
|
6440
6440
|
text: string;
|
|
6441
|
-
type: "
|
|
6441
|
+
type: "success" | "error" | "info" | "warning";
|
|
6442
6442
|
id?: number | undefined;
|
|
6443
6443
|
}[] | undefined;
|
|
6444
6444
|
required?: boolean | undefined;
|
|
@@ -6453,7 +6453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6453
6453
|
hint?: string | undefined;
|
|
6454
6454
|
messages?: {
|
|
6455
6455
|
text: string;
|
|
6456
|
-
type: "
|
|
6456
|
+
type: "success" | "error" | "info" | "warning";
|
|
6457
6457
|
id?: number | undefined;
|
|
6458
6458
|
}[] | undefined;
|
|
6459
6459
|
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: "success" | "error" | "info" | "warning";
|
|
6478
6478
|
id?: number | undefined;
|
|
6479
6479
|
}[] | undefined;
|
|
6480
6480
|
required?: boolean | undefined;
|
|
@@ -6499,7 +6499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6499
6499
|
hint?: string | undefined;
|
|
6500
6500
|
messages?: {
|
|
6501
6501
|
text: string;
|
|
6502
|
-
type: "
|
|
6502
|
+
type: "success" | "error" | "info" | "warning";
|
|
6503
6503
|
id?: number | undefined;
|
|
6504
6504
|
}[] | undefined;
|
|
6505
6505
|
required?: boolean | undefined;
|
|
@@ -6518,7 +6518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6518
6518
|
hint?: string | undefined;
|
|
6519
6519
|
messages?: {
|
|
6520
6520
|
text: string;
|
|
6521
|
-
type: "
|
|
6521
|
+
type: "success" | "error" | "info" | "warning";
|
|
6522
6522
|
id?: number | undefined;
|
|
6523
6523
|
}[] | undefined;
|
|
6524
6524
|
required?: boolean | undefined;
|
|
@@ -6538,7 +6538,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6538
6538
|
hint?: string | undefined;
|
|
6539
6539
|
messages?: {
|
|
6540
6540
|
text: string;
|
|
6541
|
-
type: "
|
|
6541
|
+
type: "success" | "error" | "info" | "warning";
|
|
6542
6542
|
id?: number | undefined;
|
|
6543
6543
|
}[] | undefined;
|
|
6544
6544
|
required?: boolean | undefined;
|
|
@@ -6557,7 +6557,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6557
6557
|
hint?: string | undefined;
|
|
6558
6558
|
messages?: {
|
|
6559
6559
|
text: string;
|
|
6560
|
-
type: "
|
|
6560
|
+
type: "success" | "error" | "info" | "warning";
|
|
6561
6561
|
id?: number | undefined;
|
|
6562
6562
|
}[] | undefined;
|
|
6563
6563
|
required?: boolean | undefined;
|
|
@@ -6579,7 +6579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6579
6579
|
hint?: string | undefined;
|
|
6580
6580
|
messages?: {
|
|
6581
6581
|
text: string;
|
|
6582
|
-
type: "
|
|
6582
|
+
type: "success" | "error" | "info" | "warning";
|
|
6583
6583
|
id?: number | undefined;
|
|
6584
6584
|
}[] | undefined;
|
|
6585
6585
|
required?: boolean | undefined;
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
hint?: string | undefined;
|
|
6602
6602
|
messages?: {
|
|
6603
6603
|
text: string;
|
|
6604
|
-
type: "
|
|
6604
|
+
type: "success" | "error" | "info" | "warning";
|
|
6605
6605
|
id?: number | undefined;
|
|
6606
6606
|
}[] | undefined;
|
|
6607
6607
|
required?: boolean | undefined;
|
|
@@ -6620,7 +6620,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6620
6620
|
hint?: string | undefined;
|
|
6621
6621
|
messages?: {
|
|
6622
6622
|
text: string;
|
|
6623
|
-
type: "
|
|
6623
|
+
type: "success" | "error" | "info" | "warning";
|
|
6624
6624
|
id?: number | undefined;
|
|
6625
6625
|
}[] | undefined;
|
|
6626
6626
|
required?: boolean | undefined;
|
|
@@ -6645,7 +6645,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6645
6645
|
hint?: string | undefined;
|
|
6646
6646
|
messages?: {
|
|
6647
6647
|
text: string;
|
|
6648
|
-
type: "
|
|
6648
|
+
type: "success" | "error" | "info" | "warning";
|
|
6649
6649
|
id?: number | undefined;
|
|
6650
6650
|
}[] | undefined;
|
|
6651
6651
|
required?: boolean | undefined;
|
|
@@ -6666,7 +6666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6666
6666
|
hint?: string | undefined;
|
|
6667
6667
|
messages?: {
|
|
6668
6668
|
text: string;
|
|
6669
|
-
type: "
|
|
6669
|
+
type: "success" | "error" | "info" | "warning";
|
|
6670
6670
|
id?: number | undefined;
|
|
6671
6671
|
}[] | undefined;
|
|
6672
6672
|
required?: boolean | undefined;
|
|
@@ -6687,7 +6687,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6687
6687
|
hint?: string | undefined;
|
|
6688
6688
|
messages?: {
|
|
6689
6689
|
text: string;
|
|
6690
|
-
type: "
|
|
6690
|
+
type: "success" | "error" | "info" | "warning";
|
|
6691
6691
|
id?: number | undefined;
|
|
6692
6692
|
}[] | undefined;
|
|
6693
6693
|
required?: boolean | undefined;
|
|
@@ -6917,7 +6917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6917
6917
|
};
|
|
6918
6918
|
};
|
|
6919
6919
|
output: {
|
|
6920
|
-
prompt: "
|
|
6920
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
}[];
|
|
6923
6923
|
outputFormat: "json";
|
|
@@ -6955,7 +6955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6955
6955
|
$get: {
|
|
6956
6956
|
input: {
|
|
6957
6957
|
param: {
|
|
6958
|
-
prompt: "
|
|
6958
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6959
6959
|
language: string;
|
|
6960
6960
|
};
|
|
6961
6961
|
} & {
|
|
@@ -6977,7 +6977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6977
6977
|
$put: {
|
|
6978
6978
|
input: {
|
|
6979
6979
|
param: {
|
|
6980
|
-
prompt: "
|
|
6980
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6981
6981
|
language: string;
|
|
6982
6982
|
};
|
|
6983
6983
|
} & {
|
|
@@ -7001,7 +7001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7001
7001
|
$delete: {
|
|
7002
7002
|
input: {
|
|
7003
7003
|
param: {
|
|
7004
|
-
prompt: "
|
|
7004
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7005
7005
|
language: string;
|
|
7006
7006
|
};
|
|
7007
7007
|
} & {
|
|
@@ -7864,7 +7864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7864
7864
|
};
|
|
7865
7865
|
} | {
|
|
7866
7866
|
mode: "inline";
|
|
7867
|
-
status: "
|
|
7867
|
+
status: "success" | "error";
|
|
7868
7868
|
connection_id: string;
|
|
7869
7869
|
connection_name: string;
|
|
7870
7870
|
strategy: string;
|
|
@@ -8504,7 +8504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8504
8504
|
log_type: string;
|
|
8505
8505
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8506
8506
|
actor: {
|
|
8507
|
-
type: "
|
|
8507
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8508
8508
|
id?: string | undefined;
|
|
8509
8509
|
email?: string | undefined;
|
|
8510
8510
|
org_id?: string | undefined;
|
|
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9154
9154
|
};
|
|
9155
9155
|
};
|
|
9156
9156
|
output: {
|
|
9157
|
-
type: "fn" | "i" | "
|
|
9157
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9158
9158
|
date: string;
|
|
9159
9159
|
isMobile: boolean;
|
|
9160
9160
|
log_id: string;
|
|
@@ -9193,7 +9193,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9193
9193
|
limit: number;
|
|
9194
9194
|
length: number;
|
|
9195
9195
|
logs: {
|
|
9196
|
-
type: "fn" | "i" | "
|
|
9196
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9197
9197
|
date: string;
|
|
9198
9198
|
isMobile: boolean;
|
|
9199
9199
|
log_id: string;
|
|
@@ -9232,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9232
9232
|
next?: string | undefined;
|
|
9233
9233
|
} | {
|
|
9234
9234
|
logs: {
|
|
9235
|
-
type: "fn" | "i" | "
|
|
9235
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9236
9236
|
date: string;
|
|
9237
9237
|
isMobile: boolean;
|
|
9238
9238
|
log_id: string;
|
|
@@ -9286,7 +9286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9286
9286
|
};
|
|
9287
9287
|
};
|
|
9288
9288
|
output: {
|
|
9289
|
-
type: "fn" | "i" | "
|
|
9289
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9290
9290
|
date: string;
|
|
9291
9291
|
isMobile: boolean;
|
|
9292
9292
|
log_id: string;
|
|
@@ -9697,7 +9697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9697
9697
|
addons?: {
|
|
9698
9698
|
[x: string]: any;
|
|
9699
9699
|
} | undefined;
|
|
9700
|
-
token_endpoint_auth_method?: "
|
|
9700
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9701
9701
|
client_metadata?: {
|
|
9702
9702
|
[x: string]: string;
|
|
9703
9703
|
} | undefined;
|
|
@@ -9799,7 +9799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9799
9799
|
addons?: {
|
|
9800
9800
|
[x: string]: any;
|
|
9801
9801
|
} | undefined;
|
|
9802
|
-
token_endpoint_auth_method?: "
|
|
9802
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9803
9803
|
client_metadata?: {
|
|
9804
9804
|
[x: string]: string;
|
|
9805
9805
|
} | undefined;
|
|
@@ -9901,7 +9901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9901
9901
|
addons?: {
|
|
9902
9902
|
[x: string]: any;
|
|
9903
9903
|
} | undefined;
|
|
9904
|
-
token_endpoint_auth_method?: "
|
|
9904
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9905
9905
|
client_metadata?: {
|
|
9906
9906
|
[x: string]: string;
|
|
9907
9907
|
} | undefined;
|
|
@@ -10018,7 +10018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10018
10018
|
addons?: {
|
|
10019
10019
|
[x: string]: any;
|
|
10020
10020
|
} | undefined;
|
|
10021
|
-
token_endpoint_auth_method?: "
|
|
10021
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10022
10022
|
client_metadata?: {
|
|
10023
10023
|
[x: string]: string;
|
|
10024
10024
|
} | undefined;
|
|
@@ -10136,7 +10136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10136
10136
|
custom_login_page_preview?: string | undefined;
|
|
10137
10137
|
form_template?: string | undefined;
|
|
10138
10138
|
addons?: Record<string, any> | undefined;
|
|
10139
|
-
token_endpoint_auth_method?: "
|
|
10139
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10140
10140
|
client_metadata?: Record<string, string> | undefined;
|
|
10141
10141
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10142
10142
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10222,7 +10222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10222
10222
|
addons?: {
|
|
10223
10223
|
[x: string]: any;
|
|
10224
10224
|
} | undefined;
|
|
10225
|
-
token_endpoint_auth_method?: "
|
|
10225
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10226
10226
|
client_metadata?: {
|
|
10227
10227
|
[x: string]: string;
|
|
10228
10228
|
} | undefined;
|
|
@@ -10319,7 +10319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10319
10319
|
custom_login_page_preview?: string | undefined;
|
|
10320
10320
|
form_template?: string | undefined;
|
|
10321
10321
|
addons?: Record<string, any> | undefined;
|
|
10322
|
-
token_endpoint_auth_method?: "
|
|
10322
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10323
10323
|
client_metadata?: Record<string, string> | undefined;
|
|
10324
10324
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10325
10325
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10405,7 +10405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10405
10405
|
addons?: {
|
|
10406
10406
|
[x: string]: any;
|
|
10407
10407
|
} | undefined;
|
|
10408
|
-
token_endpoint_auth_method?: "
|
|
10408
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10409
10409
|
client_metadata?: {
|
|
10410
10410
|
[x: string]: string;
|
|
10411
10411
|
} | undefined;
|
|
@@ -11741,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11741
11741
|
};
|
|
11742
11742
|
};
|
|
11743
11743
|
output: {
|
|
11744
|
-
type: "fn" | "i" | "
|
|
11744
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11745
11745
|
date: string;
|
|
11746
11746
|
isMobile: boolean;
|
|
11747
11747
|
log_id: string;
|
|
@@ -11780,7 +11780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11780
11780
|
limit: number;
|
|
11781
11781
|
length: number;
|
|
11782
11782
|
logs: {
|
|
11783
|
-
type: "fn" | "i" | "
|
|
11783
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11784
11784
|
date: string;
|
|
11785
11785
|
isMobile: boolean;
|
|
11786
11786
|
log_id: string;
|
|
@@ -12624,7 +12624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12624
12624
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12625
12625
|
custom_domain_id: string;
|
|
12626
12626
|
primary: boolean;
|
|
12627
|
-
status: "
|
|
12627
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12628
12628
|
verification_method?: "txt" | undefined;
|
|
12629
12629
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12630
12630
|
domain_metadata?: {
|
|
@@ -12665,7 +12665,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12665
12665
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12666
12666
|
custom_domain_id: string;
|
|
12667
12667
|
primary: boolean;
|
|
12668
|
-
status: "
|
|
12668
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12669
12669
|
verification_method?: "txt" | undefined;
|
|
12670
12670
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12671
12671
|
domain_metadata?: {
|
|
@@ -12729,7 +12729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12729
12729
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12730
12730
|
custom_domain_id: string;
|
|
12731
12731
|
primary: boolean;
|
|
12732
|
-
status: "
|
|
12732
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12733
12733
|
verification_method?: "txt" | undefined;
|
|
12734
12734
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12735
12735
|
domain_metadata?: {
|
|
@@ -12776,7 +12776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12776
12776
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12777
12777
|
custom_domain_id: string;
|
|
12778
12778
|
primary: boolean;
|
|
12779
|
-
status: "
|
|
12779
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12780
12780
|
verification_method?: "txt" | undefined;
|
|
12781
12781
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12782
12782
|
domain_metadata?: {
|
|
@@ -12822,7 +12822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12822
12822
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12823
12823
|
custom_domain_id: string;
|
|
12824
12824
|
primary: boolean;
|
|
12825
|
-
status: "
|
|
12825
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12826
12826
|
verification_method?: "txt" | undefined;
|
|
12827
12827
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12828
12828
|
domain_metadata?: {
|
|
@@ -12863,7 +12863,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12863
12863
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12864
12864
|
custom_domain_id: string;
|
|
12865
12865
|
primary: boolean;
|
|
12866
|
-
status: "
|
|
12866
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12867
12867
|
verification_method?: "txt" | undefined;
|
|
12868
12868
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12869
12869
|
domain_metadata?: {
|
|
@@ -13293,7 +13293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13293
13293
|
} & {
|
|
13294
13294
|
json: {
|
|
13295
13295
|
body?: string | undefined;
|
|
13296
|
-
screen?: "
|
|
13296
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13297
13297
|
branding?: {
|
|
13298
13298
|
colors?: {
|
|
13299
13299
|
primary: string;
|