authhero 9.1.1 → 9.2.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-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +133 -133
- package/dist/authhero.d.ts +298 -233
- package/dist/authhero.mjs +5803 -5765
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/index.d.ts +259 -229
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- 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/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- 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 +28 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +234 -206
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +2 -2
- 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/package.json +6 -6
- package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
|
@@ -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?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | 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?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | 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?: "true" | "false" | 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: "email" | "
|
|
99
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
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: "email" | "
|
|
239
|
+
name: "email" | "sms" | "otp" | "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: "email" | "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "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: "email" | "
|
|
402
|
+
name: "email" | "sms" | "otp" | "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: "email" | "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "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: "email" | "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
inviter: {
|
|
1200
|
-
name?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
invitee: {
|
|
1203
1200
|
email?: string | undefined;
|
|
1204
1201
|
};
|
|
1202
|
+
inviter: {
|
|
1203
|
+
name?: string | undefined;
|
|
1204
|
+
};
|
|
1205
|
+
id?: string | undefined;
|
|
1205
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1206
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
-
id?: string | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
|
-
ttl_sec?: number | undefined;
|
|
1211
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
+
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -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;
|
|
@@ -2876,6 +2876,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2876
2876
|
config?: {
|
|
2877
2877
|
placeholder?: string | undefined;
|
|
2878
2878
|
default_value?: string | undefined;
|
|
2879
|
+
last_used?: boolean | undefined;
|
|
2880
|
+
last_used_label?: string | undefined;
|
|
2879
2881
|
} | undefined;
|
|
2880
2882
|
} | {
|
|
2881
2883
|
id: string;
|
|
@@ -2887,7 +2889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2887
2889
|
hint?: string | undefined;
|
|
2888
2890
|
messages?: {
|
|
2889
2891
|
text: string;
|
|
2890
|
-
type: "
|
|
2892
|
+
type: "error" | "success" | "info" | "warning";
|
|
2891
2893
|
id?: number | undefined;
|
|
2892
2894
|
}[] | undefined;
|
|
2893
2895
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2909,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2907
2909
|
hint?: string | undefined;
|
|
2908
2910
|
messages?: {
|
|
2909
2911
|
text: string;
|
|
2910
|
-
type: "
|
|
2912
|
+
type: "error" | "success" | "info" | "warning";
|
|
2911
2913
|
id?: number | undefined;
|
|
2912
2914
|
}[] | undefined;
|
|
2913
2915
|
required?: boolean | undefined;
|
|
@@ -2926,7 +2928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2926
2928
|
hint?: string | undefined;
|
|
2927
2929
|
messages?: {
|
|
2928
2930
|
text: string;
|
|
2929
|
-
type: "
|
|
2931
|
+
type: "error" | "success" | "info" | "warning";
|
|
2930
2932
|
id?: number | undefined;
|
|
2931
2933
|
}[] | undefined;
|
|
2932
2934
|
required?: boolean | undefined;
|
|
@@ -2948,7 +2950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2948
2950
|
hint?: string | undefined;
|
|
2949
2951
|
messages?: {
|
|
2950
2952
|
text: string;
|
|
2951
|
-
type: "
|
|
2953
|
+
type: "error" | "success" | "info" | "warning";
|
|
2952
2954
|
id?: number | undefined;
|
|
2953
2955
|
}[] | undefined;
|
|
2954
2956
|
required?: boolean | undefined;
|
|
@@ -2970,7 +2972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2970
2972
|
hint?: string | undefined;
|
|
2971
2973
|
messages?: {
|
|
2972
2974
|
text: string;
|
|
2973
|
-
type: "
|
|
2975
|
+
type: "error" | "success" | "info" | "warning";
|
|
2974
2976
|
id?: number | undefined;
|
|
2975
2977
|
}[] | undefined;
|
|
2976
2978
|
required?: boolean | undefined;
|
|
@@ -2989,7 +2991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2989
2991
|
hint?: string | undefined;
|
|
2990
2992
|
messages?: {
|
|
2991
2993
|
text: string;
|
|
2992
|
-
type: "
|
|
2994
|
+
type: "error" | "success" | "info" | "warning";
|
|
2993
2995
|
id?: number | undefined;
|
|
2994
2996
|
}[] | undefined;
|
|
2995
2997
|
required?: boolean | undefined;
|
|
@@ -3016,7 +3018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3016
3018
|
hint?: string | undefined;
|
|
3017
3019
|
messages?: {
|
|
3018
3020
|
text: string;
|
|
3019
|
-
type: "
|
|
3021
|
+
type: "error" | "success" | "info" | "warning";
|
|
3020
3022
|
id?: number | undefined;
|
|
3021
3023
|
}[] | undefined;
|
|
3022
3024
|
required?: boolean | undefined;
|
|
@@ -3037,7 +3039,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3037
3039
|
hint?: string | undefined;
|
|
3038
3040
|
messages?: {
|
|
3039
3041
|
text: string;
|
|
3040
|
-
type: "
|
|
3042
|
+
type: "error" | "success" | "info" | "warning";
|
|
3041
3043
|
id?: number | undefined;
|
|
3042
3044
|
}[] | undefined;
|
|
3043
3045
|
required?: boolean | undefined;
|
|
@@ -3047,6 +3049,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3047
3049
|
multiline?: boolean | undefined;
|
|
3048
3050
|
max_length?: number | undefined;
|
|
3049
3051
|
default_value?: string | undefined;
|
|
3052
|
+
last_used?: boolean | undefined;
|
|
3053
|
+
last_used_label?: string | undefined;
|
|
3050
3054
|
} | undefined;
|
|
3051
3055
|
} | {
|
|
3052
3056
|
id: string;
|
|
@@ -3058,7 +3062,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3058
3062
|
hint?: string | undefined;
|
|
3059
3063
|
messages?: {
|
|
3060
3064
|
text: string;
|
|
3061
|
-
type: "
|
|
3065
|
+
type: "error" | "success" | "info" | "warning";
|
|
3062
3066
|
id?: number | undefined;
|
|
3063
3067
|
}[] | undefined;
|
|
3064
3068
|
required?: boolean | undefined;
|
|
@@ -3291,7 +3295,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3291
3295
|
hint?: string | undefined;
|
|
3292
3296
|
messages?: {
|
|
3293
3297
|
text: string;
|
|
3294
|
-
type: "
|
|
3298
|
+
type: "error" | "success" | "info" | "warning";
|
|
3295
3299
|
id?: number | undefined;
|
|
3296
3300
|
}[] | undefined;
|
|
3297
3301
|
required?: boolean | undefined;
|
|
@@ -3309,7 +3313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3309
3313
|
hint?: string | undefined;
|
|
3310
3314
|
messages?: {
|
|
3311
3315
|
text: string;
|
|
3312
|
-
type: "
|
|
3316
|
+
type: "error" | "success" | "info" | "warning";
|
|
3313
3317
|
id?: number | undefined;
|
|
3314
3318
|
}[] | undefined;
|
|
3315
3319
|
required?: boolean | undefined;
|
|
@@ -3333,7 +3337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3333
3337
|
hint?: string | undefined;
|
|
3334
3338
|
messages?: {
|
|
3335
3339
|
text: string;
|
|
3336
|
-
type: "
|
|
3340
|
+
type: "error" | "success" | "info" | "warning";
|
|
3337
3341
|
id?: number | undefined;
|
|
3338
3342
|
}[] | undefined;
|
|
3339
3343
|
required?: boolean | undefined;
|
|
@@ -3357,7 +3361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3357
3361
|
hint?: string | undefined;
|
|
3358
3362
|
messages?: {
|
|
3359
3363
|
text: string;
|
|
3360
|
-
type: "
|
|
3364
|
+
type: "error" | "success" | "info" | "warning";
|
|
3361
3365
|
id?: number | undefined;
|
|
3362
3366
|
}[] | undefined;
|
|
3363
3367
|
required?: boolean | undefined;
|
|
@@ -3381,7 +3385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3381
3385
|
hint?: string | undefined;
|
|
3382
3386
|
messages?: {
|
|
3383
3387
|
text: string;
|
|
3384
|
-
type: "
|
|
3388
|
+
type: "error" | "success" | "info" | "warning";
|
|
3385
3389
|
id?: number | undefined;
|
|
3386
3390
|
}[] | undefined;
|
|
3387
3391
|
required?: boolean | undefined;
|
|
@@ -3410,7 +3414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3410
3414
|
hint?: string | undefined;
|
|
3411
3415
|
messages?: {
|
|
3412
3416
|
text: string;
|
|
3413
|
-
type: "
|
|
3417
|
+
type: "error" | "success" | "info" | "warning";
|
|
3414
3418
|
id?: number | undefined;
|
|
3415
3419
|
}[] | undefined;
|
|
3416
3420
|
required?: boolean | undefined;
|
|
@@ -3425,7 +3429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3425
3429
|
hint?: string | undefined;
|
|
3426
3430
|
messages?: {
|
|
3427
3431
|
text: string;
|
|
3428
|
-
type: "
|
|
3432
|
+
type: "error" | "success" | "info" | "warning";
|
|
3429
3433
|
id?: number | undefined;
|
|
3430
3434
|
}[] | undefined;
|
|
3431
3435
|
required?: boolean | undefined;
|
|
@@ -3446,7 +3450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3446
3450
|
hint?: string | undefined;
|
|
3447
3451
|
messages?: {
|
|
3448
3452
|
text: string;
|
|
3449
|
-
type: "
|
|
3453
|
+
type: "error" | "success" | "info" | "warning";
|
|
3450
3454
|
id?: number | undefined;
|
|
3451
3455
|
}[] | undefined;
|
|
3452
3456
|
required?: boolean | undefined;
|
|
@@ -3471,7 +3475,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3471
3475
|
hint?: string | undefined;
|
|
3472
3476
|
messages?: {
|
|
3473
3477
|
text: string;
|
|
3474
|
-
type: "
|
|
3478
|
+
type: "error" | "success" | "info" | "warning";
|
|
3475
3479
|
id?: number | undefined;
|
|
3476
3480
|
}[] | undefined;
|
|
3477
3481
|
required?: boolean | undefined;
|
|
@@ -3479,6 +3483,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3479
3483
|
config?: {
|
|
3480
3484
|
placeholder?: string | undefined;
|
|
3481
3485
|
default_value?: string | undefined;
|
|
3486
|
+
last_used?: boolean | undefined;
|
|
3487
|
+
last_used_label?: string | undefined;
|
|
3482
3488
|
} | undefined;
|
|
3483
3489
|
} | {
|
|
3484
3490
|
id: string;
|
|
@@ -3490,7 +3496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3490
3496
|
hint?: string | undefined;
|
|
3491
3497
|
messages?: {
|
|
3492
3498
|
text: string;
|
|
3493
|
-
type: "
|
|
3499
|
+
type: "error" | "success" | "info" | "warning";
|
|
3494
3500
|
id?: number | undefined;
|
|
3495
3501
|
}[] | undefined;
|
|
3496
3502
|
required?: boolean | undefined;
|
|
@@ -3510,7 +3516,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3510
3516
|
hint?: string | undefined;
|
|
3511
3517
|
messages?: {
|
|
3512
3518
|
text: string;
|
|
3513
|
-
type: "
|
|
3519
|
+
type: "error" | "success" | "info" | "warning";
|
|
3514
3520
|
id?: number | undefined;
|
|
3515
3521
|
}[] | undefined;
|
|
3516
3522
|
required?: boolean | undefined;
|
|
@@ -3529,7 +3535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3529
3535
|
hint?: string | undefined;
|
|
3530
3536
|
messages?: {
|
|
3531
3537
|
text: string;
|
|
3532
|
-
type: "
|
|
3538
|
+
type: "error" | "success" | "info" | "warning";
|
|
3533
3539
|
id?: number | undefined;
|
|
3534
3540
|
}[] | undefined;
|
|
3535
3541
|
required?: boolean | undefined;
|
|
@@ -3551,7 +3557,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3551
3557
|
hint?: string | undefined;
|
|
3552
3558
|
messages?: {
|
|
3553
3559
|
text: string;
|
|
3554
|
-
type: "
|
|
3560
|
+
type: "error" | "success" | "info" | "warning";
|
|
3555
3561
|
id?: number | undefined;
|
|
3556
3562
|
}[] | undefined;
|
|
3557
3563
|
required?: boolean | undefined;
|
|
@@ -3573,7 +3579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3573
3579
|
hint?: string | undefined;
|
|
3574
3580
|
messages?: {
|
|
3575
3581
|
text: string;
|
|
3576
|
-
type: "
|
|
3582
|
+
type: "error" | "success" | "info" | "warning";
|
|
3577
3583
|
id?: number | undefined;
|
|
3578
3584
|
}[] | undefined;
|
|
3579
3585
|
required?: boolean | undefined;
|
|
@@ -3592,7 +3598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3592
3598
|
hint?: string | undefined;
|
|
3593
3599
|
messages?: {
|
|
3594
3600
|
text: string;
|
|
3595
|
-
type: "
|
|
3601
|
+
type: "error" | "success" | "info" | "warning";
|
|
3596
3602
|
id?: number | undefined;
|
|
3597
3603
|
}[] | undefined;
|
|
3598
3604
|
required?: boolean | undefined;
|
|
@@ -3619,7 +3625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3619
3625
|
hint?: string | undefined;
|
|
3620
3626
|
messages?: {
|
|
3621
3627
|
text: string;
|
|
3622
|
-
type: "
|
|
3628
|
+
type: "error" | "success" | "info" | "warning";
|
|
3623
3629
|
id?: number | undefined;
|
|
3624
3630
|
}[] | undefined;
|
|
3625
3631
|
required?: boolean | undefined;
|
|
@@ -3640,7 +3646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3640
3646
|
hint?: string | undefined;
|
|
3641
3647
|
messages?: {
|
|
3642
3648
|
text: string;
|
|
3643
|
-
type: "
|
|
3649
|
+
type: "error" | "success" | "info" | "warning";
|
|
3644
3650
|
id?: number | undefined;
|
|
3645
3651
|
}[] | undefined;
|
|
3646
3652
|
required?: boolean | undefined;
|
|
@@ -3650,6 +3656,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3650
3656
|
multiline?: boolean | undefined;
|
|
3651
3657
|
max_length?: number | undefined;
|
|
3652
3658
|
default_value?: string | undefined;
|
|
3659
|
+
last_used?: boolean | undefined;
|
|
3660
|
+
last_used_label?: string | undefined;
|
|
3653
3661
|
} | undefined;
|
|
3654
3662
|
} | {
|
|
3655
3663
|
id: string;
|
|
@@ -3661,7 +3669,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3661
3669
|
hint?: string | undefined;
|
|
3662
3670
|
messages?: {
|
|
3663
3671
|
text: string;
|
|
3664
|
-
type: "
|
|
3672
|
+
type: "error" | "success" | "info" | "warning";
|
|
3665
3673
|
id?: number | undefined;
|
|
3666
3674
|
}[] | undefined;
|
|
3667
3675
|
required?: boolean | undefined;
|
|
@@ -3910,7 +3918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3910
3918
|
hint?: string | undefined;
|
|
3911
3919
|
messages?: {
|
|
3912
3920
|
text: string;
|
|
3913
|
-
type: "
|
|
3921
|
+
type: "error" | "success" | "info" | "warning";
|
|
3914
3922
|
id?: number | undefined;
|
|
3915
3923
|
}[] | undefined;
|
|
3916
3924
|
required?: boolean | undefined;
|
|
@@ -3928,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3928
3936
|
hint?: string | undefined;
|
|
3929
3937
|
messages?: {
|
|
3930
3938
|
text: string;
|
|
3931
|
-
type: "
|
|
3939
|
+
type: "error" | "success" | "info" | "warning";
|
|
3932
3940
|
id?: number | undefined;
|
|
3933
3941
|
}[] | undefined;
|
|
3934
3942
|
required?: boolean | undefined;
|
|
@@ -3952,7 +3960,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3952
3960
|
hint?: string | undefined;
|
|
3953
3961
|
messages?: {
|
|
3954
3962
|
text: string;
|
|
3955
|
-
type: "
|
|
3963
|
+
type: "error" | "success" | "info" | "warning";
|
|
3956
3964
|
id?: number | undefined;
|
|
3957
3965
|
}[] | undefined;
|
|
3958
3966
|
required?: boolean | undefined;
|
|
@@ -3976,7 +3984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3976
3984
|
hint?: string | undefined;
|
|
3977
3985
|
messages?: {
|
|
3978
3986
|
text: string;
|
|
3979
|
-
type: "
|
|
3987
|
+
type: "error" | "success" | "info" | "warning";
|
|
3980
3988
|
id?: number | undefined;
|
|
3981
3989
|
}[] | undefined;
|
|
3982
3990
|
required?: boolean | undefined;
|
|
@@ -4000,7 +4008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4000
4008
|
hint?: string | undefined;
|
|
4001
4009
|
messages?: {
|
|
4002
4010
|
text: string;
|
|
4003
|
-
type: "
|
|
4011
|
+
type: "error" | "success" | "info" | "warning";
|
|
4004
4012
|
id?: number | undefined;
|
|
4005
4013
|
}[] | undefined;
|
|
4006
4014
|
required?: boolean | undefined;
|
|
@@ -4029,7 +4037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4029
4037
|
hint?: string | undefined;
|
|
4030
4038
|
messages?: {
|
|
4031
4039
|
text: string;
|
|
4032
|
-
type: "
|
|
4040
|
+
type: "error" | "success" | "info" | "warning";
|
|
4033
4041
|
id?: number | undefined;
|
|
4034
4042
|
}[] | undefined;
|
|
4035
4043
|
required?: boolean | undefined;
|
|
@@ -4044,7 +4052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4044
4052
|
hint?: string | undefined;
|
|
4045
4053
|
messages?: {
|
|
4046
4054
|
text: string;
|
|
4047
|
-
type: "
|
|
4055
|
+
type: "error" | "success" | "info" | "warning";
|
|
4048
4056
|
id?: number | undefined;
|
|
4049
4057
|
}[] | undefined;
|
|
4050
4058
|
required?: boolean | undefined;
|
|
@@ -4065,7 +4073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4065
4073
|
hint?: string | undefined;
|
|
4066
4074
|
messages?: {
|
|
4067
4075
|
text: string;
|
|
4068
|
-
type: "
|
|
4076
|
+
type: "error" | "success" | "info" | "warning";
|
|
4069
4077
|
id?: number | undefined;
|
|
4070
4078
|
}[] | undefined;
|
|
4071
4079
|
required?: boolean | undefined;
|
|
@@ -4090,7 +4098,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4090
4098
|
hint?: string | undefined;
|
|
4091
4099
|
messages?: {
|
|
4092
4100
|
text: string;
|
|
4093
|
-
type: "
|
|
4101
|
+
type: "error" | "success" | "info" | "warning";
|
|
4094
4102
|
id?: number | undefined;
|
|
4095
4103
|
}[] | undefined;
|
|
4096
4104
|
required?: boolean | undefined;
|
|
@@ -4098,6 +4106,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4098
4106
|
config?: {
|
|
4099
4107
|
placeholder?: string | undefined;
|
|
4100
4108
|
default_value?: string | undefined;
|
|
4109
|
+
last_used?: boolean | undefined;
|
|
4110
|
+
last_used_label?: string | undefined;
|
|
4101
4111
|
} | undefined;
|
|
4102
4112
|
} | {
|
|
4103
4113
|
id: string;
|
|
@@ -4109,7 +4119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4109
4119
|
hint?: string | undefined;
|
|
4110
4120
|
messages?: {
|
|
4111
4121
|
text: string;
|
|
4112
|
-
type: "
|
|
4122
|
+
type: "error" | "success" | "info" | "warning";
|
|
4113
4123
|
id?: number | undefined;
|
|
4114
4124
|
}[] | undefined;
|
|
4115
4125
|
required?: boolean | undefined;
|
|
@@ -4129,7 +4139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4129
4139
|
hint?: string | undefined;
|
|
4130
4140
|
messages?: {
|
|
4131
4141
|
text: string;
|
|
4132
|
-
type: "
|
|
4142
|
+
type: "error" | "success" | "info" | "warning";
|
|
4133
4143
|
id?: number | undefined;
|
|
4134
4144
|
}[] | undefined;
|
|
4135
4145
|
required?: boolean | undefined;
|
|
@@ -4148,7 +4158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4148
4158
|
hint?: string | undefined;
|
|
4149
4159
|
messages?: {
|
|
4150
4160
|
text: string;
|
|
4151
|
-
type: "
|
|
4161
|
+
type: "error" | "success" | "info" | "warning";
|
|
4152
4162
|
id?: number | undefined;
|
|
4153
4163
|
}[] | undefined;
|
|
4154
4164
|
required?: boolean | undefined;
|
|
@@ -4170,7 +4180,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4170
4180
|
hint?: string | undefined;
|
|
4171
4181
|
messages?: {
|
|
4172
4182
|
text: string;
|
|
4173
|
-
type: "
|
|
4183
|
+
type: "error" | "success" | "info" | "warning";
|
|
4174
4184
|
id?: number | undefined;
|
|
4175
4185
|
}[] | undefined;
|
|
4176
4186
|
required?: boolean | undefined;
|
|
@@ -4192,7 +4202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4192
4202
|
hint?: string | undefined;
|
|
4193
4203
|
messages?: {
|
|
4194
4204
|
text: string;
|
|
4195
|
-
type: "
|
|
4205
|
+
type: "error" | "success" | "info" | "warning";
|
|
4196
4206
|
id?: number | undefined;
|
|
4197
4207
|
}[] | undefined;
|
|
4198
4208
|
required?: boolean | undefined;
|
|
@@ -4211,7 +4221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4211
4221
|
hint?: string | undefined;
|
|
4212
4222
|
messages?: {
|
|
4213
4223
|
text: string;
|
|
4214
|
-
type: "
|
|
4224
|
+
type: "error" | "success" | "info" | "warning";
|
|
4215
4225
|
id?: number | undefined;
|
|
4216
4226
|
}[] | undefined;
|
|
4217
4227
|
required?: boolean | undefined;
|
|
@@ -4238,7 +4248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4238
4248
|
hint?: string | undefined;
|
|
4239
4249
|
messages?: {
|
|
4240
4250
|
text: string;
|
|
4241
|
-
type: "
|
|
4251
|
+
type: "error" | "success" | "info" | "warning";
|
|
4242
4252
|
id?: number | undefined;
|
|
4243
4253
|
}[] | undefined;
|
|
4244
4254
|
required?: boolean | undefined;
|
|
@@ -4259,7 +4269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4259
4269
|
hint?: string | undefined;
|
|
4260
4270
|
messages?: {
|
|
4261
4271
|
text: string;
|
|
4262
|
-
type: "
|
|
4272
|
+
type: "error" | "success" | "info" | "warning";
|
|
4263
4273
|
id?: number | undefined;
|
|
4264
4274
|
}[] | undefined;
|
|
4265
4275
|
required?: boolean | undefined;
|
|
@@ -4269,6 +4279,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4269
4279
|
multiline?: boolean | undefined;
|
|
4270
4280
|
max_length?: number | undefined;
|
|
4271
4281
|
default_value?: string | undefined;
|
|
4282
|
+
last_used?: boolean | undefined;
|
|
4283
|
+
last_used_label?: string | undefined;
|
|
4272
4284
|
} | undefined;
|
|
4273
4285
|
} | {
|
|
4274
4286
|
id: string;
|
|
@@ -4280,7 +4292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4280
4292
|
hint?: string | undefined;
|
|
4281
4293
|
messages?: {
|
|
4282
4294
|
text: string;
|
|
4283
|
-
type: "
|
|
4295
|
+
type: "error" | "success" | "info" | "warning";
|
|
4284
4296
|
id?: number | undefined;
|
|
4285
4297
|
}[] | undefined;
|
|
4286
4298
|
required?: boolean | undefined;
|
|
@@ -4534,7 +4546,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4534
4546
|
hint?: string | undefined;
|
|
4535
4547
|
messages?: {
|
|
4536
4548
|
text: string;
|
|
4537
|
-
type: "
|
|
4549
|
+
type: "error" | "success" | "info" | "warning";
|
|
4538
4550
|
id?: number | undefined;
|
|
4539
4551
|
}[] | undefined;
|
|
4540
4552
|
required?: boolean | undefined;
|
|
@@ -4552,7 +4564,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4552
4564
|
hint?: string | undefined;
|
|
4553
4565
|
messages?: {
|
|
4554
4566
|
text: string;
|
|
4555
|
-
type: "
|
|
4567
|
+
type: "error" | "success" | "info" | "warning";
|
|
4556
4568
|
id?: number | undefined;
|
|
4557
4569
|
}[] | undefined;
|
|
4558
4570
|
required?: boolean | undefined;
|
|
@@ -4576,7 +4588,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4576
4588
|
hint?: string | undefined;
|
|
4577
4589
|
messages?: {
|
|
4578
4590
|
text: string;
|
|
4579
|
-
type: "
|
|
4591
|
+
type: "error" | "success" | "info" | "warning";
|
|
4580
4592
|
id?: number | undefined;
|
|
4581
4593
|
}[] | undefined;
|
|
4582
4594
|
required?: boolean | undefined;
|
|
@@ -4600,7 +4612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4600
4612
|
hint?: string | undefined;
|
|
4601
4613
|
messages?: {
|
|
4602
4614
|
text: string;
|
|
4603
|
-
type: "
|
|
4615
|
+
type: "error" | "success" | "info" | "warning";
|
|
4604
4616
|
id?: number | undefined;
|
|
4605
4617
|
}[] | undefined;
|
|
4606
4618
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4624
4636
|
hint?: string | undefined;
|
|
4625
4637
|
messages?: {
|
|
4626
4638
|
text: string;
|
|
4627
|
-
type: "
|
|
4639
|
+
type: "error" | "success" | "info" | "warning";
|
|
4628
4640
|
id?: number | undefined;
|
|
4629
4641
|
}[] | undefined;
|
|
4630
4642
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4649
4661
|
hint?: string | undefined;
|
|
4650
4662
|
messages?: {
|
|
4651
4663
|
text: string;
|
|
4652
|
-
type: "
|
|
4664
|
+
type: "error" | "success" | "info" | "warning";
|
|
4653
4665
|
id?: number | undefined;
|
|
4654
4666
|
}[] | undefined;
|
|
4655
4667
|
required?: boolean | undefined;
|
|
@@ -4664,7 +4676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4664
4676
|
hint?: string | undefined;
|
|
4665
4677
|
messages?: {
|
|
4666
4678
|
text: string;
|
|
4667
|
-
type: "
|
|
4679
|
+
type: "error" | "success" | "info" | "warning";
|
|
4668
4680
|
id?: number | undefined;
|
|
4669
4681
|
}[] | undefined;
|
|
4670
4682
|
required?: boolean | undefined;
|
|
@@ -4685,7 +4697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4685
4697
|
hint?: string | undefined;
|
|
4686
4698
|
messages?: {
|
|
4687
4699
|
text: string;
|
|
4688
|
-
type: "
|
|
4700
|
+
type: "error" | "success" | "info" | "warning";
|
|
4689
4701
|
id?: number | undefined;
|
|
4690
4702
|
}[] | undefined;
|
|
4691
4703
|
required?: boolean | undefined;
|
|
@@ -4710,7 +4722,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4710
4722
|
hint?: string | undefined;
|
|
4711
4723
|
messages?: {
|
|
4712
4724
|
text: string;
|
|
4713
|
-
type: "
|
|
4725
|
+
type: "error" | "success" | "info" | "warning";
|
|
4714
4726
|
id?: number | undefined;
|
|
4715
4727
|
}[] | undefined;
|
|
4716
4728
|
required?: boolean | undefined;
|
|
@@ -4718,6 +4730,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4718
4730
|
config?: {
|
|
4719
4731
|
placeholder?: string | undefined;
|
|
4720
4732
|
default_value?: string | undefined;
|
|
4733
|
+
last_used?: boolean | undefined;
|
|
4734
|
+
last_used_label?: string | undefined;
|
|
4721
4735
|
} | undefined;
|
|
4722
4736
|
} | {
|
|
4723
4737
|
id: string;
|
|
@@ -4729,7 +4743,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4729
4743
|
hint?: string | undefined;
|
|
4730
4744
|
messages?: {
|
|
4731
4745
|
text: string;
|
|
4732
|
-
type: "
|
|
4746
|
+
type: "error" | "success" | "info" | "warning";
|
|
4733
4747
|
id?: number | undefined;
|
|
4734
4748
|
}[] | undefined;
|
|
4735
4749
|
required?: boolean | undefined;
|
|
@@ -4749,7 +4763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4749
4763
|
hint?: string | undefined;
|
|
4750
4764
|
messages?: {
|
|
4751
4765
|
text: string;
|
|
4752
|
-
type: "
|
|
4766
|
+
type: "error" | "success" | "info" | "warning";
|
|
4753
4767
|
id?: number | undefined;
|
|
4754
4768
|
}[] | undefined;
|
|
4755
4769
|
required?: boolean | undefined;
|
|
@@ -4768,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4768
4782
|
hint?: string | undefined;
|
|
4769
4783
|
messages?: {
|
|
4770
4784
|
text: string;
|
|
4771
|
-
type: "
|
|
4785
|
+
type: "error" | "success" | "info" | "warning";
|
|
4772
4786
|
id?: number | undefined;
|
|
4773
4787
|
}[] | undefined;
|
|
4774
4788
|
required?: boolean | undefined;
|
|
@@ -4790,7 +4804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4790
4804
|
hint?: string | undefined;
|
|
4791
4805
|
messages?: {
|
|
4792
4806
|
text: string;
|
|
4793
|
-
type: "
|
|
4807
|
+
type: "error" | "success" | "info" | "warning";
|
|
4794
4808
|
id?: number | undefined;
|
|
4795
4809
|
}[] | undefined;
|
|
4796
4810
|
required?: boolean | undefined;
|
|
@@ -4812,7 +4826,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4812
4826
|
hint?: string | undefined;
|
|
4813
4827
|
messages?: {
|
|
4814
4828
|
text: string;
|
|
4815
|
-
type: "
|
|
4829
|
+
type: "error" | "success" | "info" | "warning";
|
|
4816
4830
|
id?: number | undefined;
|
|
4817
4831
|
}[] | undefined;
|
|
4818
4832
|
required?: boolean | undefined;
|
|
@@ -4831,7 +4845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4831
4845
|
hint?: string | undefined;
|
|
4832
4846
|
messages?: {
|
|
4833
4847
|
text: string;
|
|
4834
|
-
type: "
|
|
4848
|
+
type: "error" | "success" | "info" | "warning";
|
|
4835
4849
|
id?: number | undefined;
|
|
4836
4850
|
}[] | undefined;
|
|
4837
4851
|
required?: boolean | undefined;
|
|
@@ -4858,7 +4872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4858
4872
|
hint?: string | undefined;
|
|
4859
4873
|
messages?: {
|
|
4860
4874
|
text: string;
|
|
4861
|
-
type: "
|
|
4875
|
+
type: "error" | "success" | "info" | "warning";
|
|
4862
4876
|
id?: number | undefined;
|
|
4863
4877
|
}[] | undefined;
|
|
4864
4878
|
required?: boolean | undefined;
|
|
@@ -4879,7 +4893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4879
4893
|
hint?: string | undefined;
|
|
4880
4894
|
messages?: {
|
|
4881
4895
|
text: string;
|
|
4882
|
-
type: "
|
|
4896
|
+
type: "error" | "success" | "info" | "warning";
|
|
4883
4897
|
id?: number | undefined;
|
|
4884
4898
|
}[] | undefined;
|
|
4885
4899
|
required?: boolean | undefined;
|
|
@@ -4889,6 +4903,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4889
4903
|
multiline?: boolean | undefined;
|
|
4890
4904
|
max_length?: number | undefined;
|
|
4891
4905
|
default_value?: string | undefined;
|
|
4906
|
+
last_used?: boolean | undefined;
|
|
4907
|
+
last_used_label?: string | undefined;
|
|
4892
4908
|
} | undefined;
|
|
4893
4909
|
} | {
|
|
4894
4910
|
id: string;
|
|
@@ -4900,7 +4916,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4900
4916
|
hint?: string | undefined;
|
|
4901
4917
|
messages?: {
|
|
4902
4918
|
text: string;
|
|
4903
|
-
type: "
|
|
4919
|
+
type: "error" | "success" | "info" | "warning";
|
|
4904
4920
|
id?: number | undefined;
|
|
4905
4921
|
}[] | undefined;
|
|
4906
4922
|
required?: boolean | undefined;
|
|
@@ -5131,7 +5147,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5131
5147
|
hint?: string | undefined;
|
|
5132
5148
|
messages?: {
|
|
5133
5149
|
text: string;
|
|
5134
|
-
type: "
|
|
5150
|
+
type: "error" | "success" | "info" | "warning";
|
|
5135
5151
|
id?: number | undefined;
|
|
5136
5152
|
}[] | undefined;
|
|
5137
5153
|
required?: boolean | undefined;
|
|
@@ -5149,7 +5165,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5149
5165
|
hint?: string | undefined;
|
|
5150
5166
|
messages?: {
|
|
5151
5167
|
text: string;
|
|
5152
|
-
type: "
|
|
5168
|
+
type: "error" | "success" | "info" | "warning";
|
|
5153
5169
|
id?: number | undefined;
|
|
5154
5170
|
}[] | undefined;
|
|
5155
5171
|
required?: boolean | undefined;
|
|
@@ -5173,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5173
5189
|
hint?: string | undefined;
|
|
5174
5190
|
messages?: {
|
|
5175
5191
|
text: string;
|
|
5176
|
-
type: "
|
|
5192
|
+
type: "error" | "success" | "info" | "warning";
|
|
5177
5193
|
id?: number | undefined;
|
|
5178
5194
|
}[] | undefined;
|
|
5179
5195
|
required?: boolean | undefined;
|
|
@@ -5197,7 +5213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5197
5213
|
hint?: string | undefined;
|
|
5198
5214
|
messages?: {
|
|
5199
5215
|
text: string;
|
|
5200
|
-
type: "
|
|
5216
|
+
type: "error" | "success" | "info" | "warning";
|
|
5201
5217
|
id?: number | undefined;
|
|
5202
5218
|
}[] | undefined;
|
|
5203
5219
|
required?: boolean | undefined;
|
|
@@ -5221,7 +5237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5221
5237
|
hint?: string | undefined;
|
|
5222
5238
|
messages?: {
|
|
5223
5239
|
text: string;
|
|
5224
|
-
type: "
|
|
5240
|
+
type: "error" | "success" | "info" | "warning";
|
|
5225
5241
|
id?: number | undefined;
|
|
5226
5242
|
}[] | undefined;
|
|
5227
5243
|
required?: boolean | undefined;
|
|
@@ -5250,7 +5266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5250
5266
|
hint?: string | undefined;
|
|
5251
5267
|
messages?: {
|
|
5252
5268
|
text: string;
|
|
5253
|
-
type: "
|
|
5269
|
+
type: "error" | "success" | "info" | "warning";
|
|
5254
5270
|
id?: number | undefined;
|
|
5255
5271
|
}[] | undefined;
|
|
5256
5272
|
required?: boolean | undefined;
|
|
@@ -5265,7 +5281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5265
5281
|
hint?: string | undefined;
|
|
5266
5282
|
messages?: {
|
|
5267
5283
|
text: string;
|
|
5268
|
-
type: "
|
|
5284
|
+
type: "error" | "success" | "info" | "warning";
|
|
5269
5285
|
id?: number | undefined;
|
|
5270
5286
|
}[] | undefined;
|
|
5271
5287
|
required?: boolean | undefined;
|
|
@@ -5286,7 +5302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5286
5302
|
hint?: string | undefined;
|
|
5287
5303
|
messages?: {
|
|
5288
5304
|
text: string;
|
|
5289
|
-
type: "
|
|
5305
|
+
type: "error" | "success" | "info" | "warning";
|
|
5290
5306
|
id?: number | undefined;
|
|
5291
5307
|
}[] | undefined;
|
|
5292
5308
|
required?: boolean | undefined;
|
|
@@ -5311,7 +5327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5311
5327
|
hint?: string | undefined;
|
|
5312
5328
|
messages?: {
|
|
5313
5329
|
text: string;
|
|
5314
|
-
type: "
|
|
5330
|
+
type: "error" | "success" | "info" | "warning";
|
|
5315
5331
|
id?: number | undefined;
|
|
5316
5332
|
}[] | undefined;
|
|
5317
5333
|
required?: boolean | undefined;
|
|
@@ -5319,6 +5335,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5319
5335
|
config?: {
|
|
5320
5336
|
placeholder?: string | undefined;
|
|
5321
5337
|
default_value?: string | undefined;
|
|
5338
|
+
last_used?: boolean | undefined;
|
|
5339
|
+
last_used_label?: string | undefined;
|
|
5322
5340
|
} | undefined;
|
|
5323
5341
|
} | {
|
|
5324
5342
|
id: string;
|
|
@@ -5330,7 +5348,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5330
5348
|
hint?: string | undefined;
|
|
5331
5349
|
messages?: {
|
|
5332
5350
|
text: string;
|
|
5333
|
-
type: "
|
|
5351
|
+
type: "error" | "success" | "info" | "warning";
|
|
5334
5352
|
id?: number | undefined;
|
|
5335
5353
|
}[] | undefined;
|
|
5336
5354
|
required?: boolean | undefined;
|
|
@@ -5350,7 +5368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5350
5368
|
hint?: string | undefined;
|
|
5351
5369
|
messages?: {
|
|
5352
5370
|
text: string;
|
|
5353
|
-
type: "
|
|
5371
|
+
type: "error" | "success" | "info" | "warning";
|
|
5354
5372
|
id?: number | undefined;
|
|
5355
5373
|
}[] | undefined;
|
|
5356
5374
|
required?: boolean | undefined;
|
|
@@ -5369,7 +5387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5369
5387
|
hint?: string | undefined;
|
|
5370
5388
|
messages?: {
|
|
5371
5389
|
text: string;
|
|
5372
|
-
type: "
|
|
5390
|
+
type: "error" | "success" | "info" | "warning";
|
|
5373
5391
|
id?: number | undefined;
|
|
5374
5392
|
}[] | undefined;
|
|
5375
5393
|
required?: boolean | undefined;
|
|
@@ -5391,7 +5409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5391
5409
|
hint?: string | undefined;
|
|
5392
5410
|
messages?: {
|
|
5393
5411
|
text: string;
|
|
5394
|
-
type: "
|
|
5412
|
+
type: "error" | "success" | "info" | "warning";
|
|
5395
5413
|
id?: number | undefined;
|
|
5396
5414
|
}[] | undefined;
|
|
5397
5415
|
required?: boolean | undefined;
|
|
@@ -5413,7 +5431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5413
5431
|
hint?: string | undefined;
|
|
5414
5432
|
messages?: {
|
|
5415
5433
|
text: string;
|
|
5416
|
-
type: "
|
|
5434
|
+
type: "error" | "success" | "info" | "warning";
|
|
5417
5435
|
id?: number | undefined;
|
|
5418
5436
|
}[] | undefined;
|
|
5419
5437
|
required?: boolean | undefined;
|
|
@@ -5432,7 +5450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5432
5450
|
hint?: string | undefined;
|
|
5433
5451
|
messages?: {
|
|
5434
5452
|
text: string;
|
|
5435
|
-
type: "
|
|
5453
|
+
type: "error" | "success" | "info" | "warning";
|
|
5436
5454
|
id?: number | undefined;
|
|
5437
5455
|
}[] | undefined;
|
|
5438
5456
|
required?: boolean | undefined;
|
|
@@ -5459,7 +5477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5459
5477
|
hint?: string | undefined;
|
|
5460
5478
|
messages?: {
|
|
5461
5479
|
text: string;
|
|
5462
|
-
type: "
|
|
5480
|
+
type: "error" | "success" | "info" | "warning";
|
|
5463
5481
|
id?: number | undefined;
|
|
5464
5482
|
}[] | undefined;
|
|
5465
5483
|
required?: boolean | undefined;
|
|
@@ -5480,7 +5498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5480
5498
|
hint?: string | undefined;
|
|
5481
5499
|
messages?: {
|
|
5482
5500
|
text: string;
|
|
5483
|
-
type: "
|
|
5501
|
+
type: "error" | "success" | "info" | "warning";
|
|
5484
5502
|
id?: number | undefined;
|
|
5485
5503
|
}[] | undefined;
|
|
5486
5504
|
required?: boolean | undefined;
|
|
@@ -5490,6 +5508,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5490
5508
|
multiline?: boolean | undefined;
|
|
5491
5509
|
max_length?: number | undefined;
|
|
5492
5510
|
default_value?: string | undefined;
|
|
5511
|
+
last_used?: boolean | undefined;
|
|
5512
|
+
last_used_label?: string | undefined;
|
|
5493
5513
|
} | undefined;
|
|
5494
5514
|
} | {
|
|
5495
5515
|
id: string;
|
|
@@ -5501,7 +5521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5501
5521
|
hint?: string | undefined;
|
|
5502
5522
|
messages?: {
|
|
5503
5523
|
text: string;
|
|
5504
|
-
type: "
|
|
5524
|
+
type: "error" | "success" | "info" | "warning";
|
|
5505
5525
|
id?: number | undefined;
|
|
5506
5526
|
}[] | undefined;
|
|
5507
5527
|
required?: boolean | undefined;
|
|
@@ -5734,7 +5754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5734
5754
|
hint?: string | undefined;
|
|
5735
5755
|
messages?: {
|
|
5736
5756
|
text: string;
|
|
5737
|
-
type: "
|
|
5757
|
+
type: "error" | "success" | "info" | "warning";
|
|
5738
5758
|
id?: number | undefined;
|
|
5739
5759
|
}[] | undefined;
|
|
5740
5760
|
required?: boolean | undefined;
|
|
@@ -5752,7 +5772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5752
5772
|
hint?: string | undefined;
|
|
5753
5773
|
messages?: {
|
|
5754
5774
|
text: string;
|
|
5755
|
-
type: "
|
|
5775
|
+
type: "error" | "success" | "info" | "warning";
|
|
5756
5776
|
id?: number | undefined;
|
|
5757
5777
|
}[] | undefined;
|
|
5758
5778
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5776
5796
|
hint?: string | undefined;
|
|
5777
5797
|
messages?: {
|
|
5778
5798
|
text: string;
|
|
5779
|
-
type: "
|
|
5799
|
+
type: "error" | "success" | "info" | "warning";
|
|
5780
5800
|
id?: number | undefined;
|
|
5781
5801
|
}[] | undefined;
|
|
5782
5802
|
required?: boolean | undefined;
|
|
@@ -5800,7 +5820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5800
5820
|
hint?: string | undefined;
|
|
5801
5821
|
messages?: {
|
|
5802
5822
|
text: string;
|
|
5803
|
-
type: "
|
|
5823
|
+
type: "error" | "success" | "info" | "warning";
|
|
5804
5824
|
id?: number | undefined;
|
|
5805
5825
|
}[] | undefined;
|
|
5806
5826
|
required?: boolean | undefined;
|
|
@@ -5824,7 +5844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5824
5844
|
hint?: string | undefined;
|
|
5825
5845
|
messages?: {
|
|
5826
5846
|
text: string;
|
|
5827
|
-
type: "
|
|
5847
|
+
type: "error" | "success" | "info" | "warning";
|
|
5828
5848
|
id?: number | undefined;
|
|
5829
5849
|
}[] | undefined;
|
|
5830
5850
|
required?: boolean | undefined;
|
|
@@ -5849,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5849
5869
|
hint?: string | undefined;
|
|
5850
5870
|
messages?: {
|
|
5851
5871
|
text: string;
|
|
5852
|
-
type: "
|
|
5872
|
+
type: "error" | "success" | "info" | "warning";
|
|
5853
5873
|
id?: number | undefined;
|
|
5854
5874
|
}[] | undefined;
|
|
5855
5875
|
required?: boolean | undefined;
|
|
@@ -5864,7 +5884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5864
5884
|
hint?: string | undefined;
|
|
5865
5885
|
messages?: {
|
|
5866
5886
|
text: string;
|
|
5867
|
-
type: "
|
|
5887
|
+
type: "error" | "success" | "info" | "warning";
|
|
5868
5888
|
id?: number | undefined;
|
|
5869
5889
|
}[] | undefined;
|
|
5870
5890
|
required?: boolean | undefined;
|
|
@@ -5885,7 +5905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5885
5905
|
hint?: string | undefined;
|
|
5886
5906
|
messages?: {
|
|
5887
5907
|
text: string;
|
|
5888
|
-
type: "
|
|
5908
|
+
type: "error" | "success" | "info" | "warning";
|
|
5889
5909
|
id?: number | undefined;
|
|
5890
5910
|
}[] | undefined;
|
|
5891
5911
|
required?: boolean | undefined;
|
|
@@ -5910,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5910
5930
|
hint?: string | undefined;
|
|
5911
5931
|
messages?: {
|
|
5912
5932
|
text: string;
|
|
5913
|
-
type: "
|
|
5933
|
+
type: "error" | "success" | "info" | "warning";
|
|
5914
5934
|
id?: number | undefined;
|
|
5915
5935
|
}[] | undefined;
|
|
5916
5936
|
required?: boolean | undefined;
|
|
@@ -5918,6 +5938,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5918
5938
|
config?: {
|
|
5919
5939
|
placeholder?: string | undefined;
|
|
5920
5940
|
default_value?: string | undefined;
|
|
5941
|
+
last_used?: boolean | undefined;
|
|
5942
|
+
last_used_label?: string | undefined;
|
|
5921
5943
|
} | undefined;
|
|
5922
5944
|
} | {
|
|
5923
5945
|
id: string;
|
|
@@ -5929,7 +5951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5929
5951
|
hint?: string | undefined;
|
|
5930
5952
|
messages?: {
|
|
5931
5953
|
text: string;
|
|
5932
|
-
type: "
|
|
5954
|
+
type: "error" | "success" | "info" | "warning";
|
|
5933
5955
|
id?: number | undefined;
|
|
5934
5956
|
}[] | undefined;
|
|
5935
5957
|
required?: boolean | undefined;
|
|
@@ -5949,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5949
5971
|
hint?: string | undefined;
|
|
5950
5972
|
messages?: {
|
|
5951
5973
|
text: string;
|
|
5952
|
-
type: "
|
|
5974
|
+
type: "error" | "success" | "info" | "warning";
|
|
5953
5975
|
id?: number | undefined;
|
|
5954
5976
|
}[] | undefined;
|
|
5955
5977
|
required?: boolean | undefined;
|
|
@@ -5968,7 +5990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5968
5990
|
hint?: string | undefined;
|
|
5969
5991
|
messages?: {
|
|
5970
5992
|
text: string;
|
|
5971
|
-
type: "
|
|
5993
|
+
type: "error" | "success" | "info" | "warning";
|
|
5972
5994
|
id?: number | undefined;
|
|
5973
5995
|
}[] | undefined;
|
|
5974
5996
|
required?: boolean | undefined;
|
|
@@ -5990,7 +6012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5990
6012
|
hint?: string | undefined;
|
|
5991
6013
|
messages?: {
|
|
5992
6014
|
text: string;
|
|
5993
|
-
type: "
|
|
6015
|
+
type: "error" | "success" | "info" | "warning";
|
|
5994
6016
|
id?: number | undefined;
|
|
5995
6017
|
}[] | undefined;
|
|
5996
6018
|
required?: boolean | undefined;
|
|
@@ -6012,7 +6034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6012
6034
|
hint?: string | undefined;
|
|
6013
6035
|
messages?: {
|
|
6014
6036
|
text: string;
|
|
6015
|
-
type: "
|
|
6037
|
+
type: "error" | "success" | "info" | "warning";
|
|
6016
6038
|
id?: number | undefined;
|
|
6017
6039
|
}[] | undefined;
|
|
6018
6040
|
required?: boolean | undefined;
|
|
@@ -6031,7 +6053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6031
6053
|
hint?: string | undefined;
|
|
6032
6054
|
messages?: {
|
|
6033
6055
|
text: string;
|
|
6034
|
-
type: "
|
|
6056
|
+
type: "error" | "success" | "info" | "warning";
|
|
6035
6057
|
id?: number | undefined;
|
|
6036
6058
|
}[] | undefined;
|
|
6037
6059
|
required?: boolean | undefined;
|
|
@@ -6058,7 +6080,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6058
6080
|
hint?: string | undefined;
|
|
6059
6081
|
messages?: {
|
|
6060
6082
|
text: string;
|
|
6061
|
-
type: "
|
|
6083
|
+
type: "error" | "success" | "info" | "warning";
|
|
6062
6084
|
id?: number | undefined;
|
|
6063
6085
|
}[] | undefined;
|
|
6064
6086
|
required?: boolean | undefined;
|
|
@@ -6079,7 +6101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6079
6101
|
hint?: string | undefined;
|
|
6080
6102
|
messages?: {
|
|
6081
6103
|
text: string;
|
|
6082
|
-
type: "
|
|
6104
|
+
type: "error" | "success" | "info" | "warning";
|
|
6083
6105
|
id?: number | undefined;
|
|
6084
6106
|
}[] | undefined;
|
|
6085
6107
|
required?: boolean | undefined;
|
|
@@ -6089,6 +6111,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6089
6111
|
multiline?: boolean | undefined;
|
|
6090
6112
|
max_length?: number | undefined;
|
|
6091
6113
|
default_value?: string | undefined;
|
|
6114
|
+
last_used?: boolean | undefined;
|
|
6115
|
+
last_used_label?: string | undefined;
|
|
6092
6116
|
} | undefined;
|
|
6093
6117
|
} | {
|
|
6094
6118
|
id: string;
|
|
@@ -6100,7 +6124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6100
6124
|
hint?: string | undefined;
|
|
6101
6125
|
messages?: {
|
|
6102
6126
|
text: string;
|
|
6103
|
-
type: "
|
|
6127
|
+
type: "error" | "success" | "info" | "warning";
|
|
6104
6128
|
id?: number | undefined;
|
|
6105
6129
|
}[] | undefined;
|
|
6106
6130
|
required?: boolean | undefined;
|
|
@@ -6331,7 +6355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6331
6355
|
hint?: string | undefined;
|
|
6332
6356
|
messages?: {
|
|
6333
6357
|
text: string;
|
|
6334
|
-
type: "
|
|
6358
|
+
type: "error" | "success" | "info" | "warning";
|
|
6335
6359
|
id?: number | undefined;
|
|
6336
6360
|
}[] | undefined;
|
|
6337
6361
|
required?: boolean | undefined;
|
|
@@ -6349,7 +6373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6349
6373
|
hint?: string | undefined;
|
|
6350
6374
|
messages?: {
|
|
6351
6375
|
text: string;
|
|
6352
|
-
type: "
|
|
6376
|
+
type: "error" | "success" | "info" | "warning";
|
|
6353
6377
|
id?: number | undefined;
|
|
6354
6378
|
}[] | undefined;
|
|
6355
6379
|
required?: boolean | undefined;
|
|
@@ -6373,7 +6397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6373
6397
|
hint?: string | undefined;
|
|
6374
6398
|
messages?: {
|
|
6375
6399
|
text: string;
|
|
6376
|
-
type: "
|
|
6400
|
+
type: "error" | "success" | "info" | "warning";
|
|
6377
6401
|
id?: number | undefined;
|
|
6378
6402
|
}[] | undefined;
|
|
6379
6403
|
required?: boolean | undefined;
|
|
@@ -6397,7 +6421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6397
6421
|
hint?: string | undefined;
|
|
6398
6422
|
messages?: {
|
|
6399
6423
|
text: string;
|
|
6400
|
-
type: "
|
|
6424
|
+
type: "error" | "success" | "info" | "warning";
|
|
6401
6425
|
id?: number | undefined;
|
|
6402
6426
|
}[] | undefined;
|
|
6403
6427
|
required?: boolean | undefined;
|
|
@@ -6421,7 +6445,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6421
6445
|
hint?: string | undefined;
|
|
6422
6446
|
messages?: {
|
|
6423
6447
|
text: string;
|
|
6424
|
-
type: "
|
|
6448
|
+
type: "error" | "success" | "info" | "warning";
|
|
6425
6449
|
id?: number | undefined;
|
|
6426
6450
|
}[] | undefined;
|
|
6427
6451
|
required?: boolean | undefined;
|
|
@@ -6450,7 +6474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6450
6474
|
hint?: string | undefined;
|
|
6451
6475
|
messages?: {
|
|
6452
6476
|
text: string;
|
|
6453
|
-
type: "
|
|
6477
|
+
type: "error" | "success" | "info" | "warning";
|
|
6454
6478
|
id?: number | undefined;
|
|
6455
6479
|
}[] | undefined;
|
|
6456
6480
|
required?: boolean | undefined;
|
|
@@ -6465,7 +6489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6465
6489
|
hint?: string | undefined;
|
|
6466
6490
|
messages?: {
|
|
6467
6491
|
text: string;
|
|
6468
|
-
type: "
|
|
6492
|
+
type: "error" | "success" | "info" | "warning";
|
|
6469
6493
|
id?: number | undefined;
|
|
6470
6494
|
}[] | undefined;
|
|
6471
6495
|
required?: boolean | undefined;
|
|
@@ -6486,7 +6510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6486
6510
|
hint?: string | undefined;
|
|
6487
6511
|
messages?: {
|
|
6488
6512
|
text: string;
|
|
6489
|
-
type: "
|
|
6513
|
+
type: "error" | "success" | "info" | "warning";
|
|
6490
6514
|
id?: number | undefined;
|
|
6491
6515
|
}[] | undefined;
|
|
6492
6516
|
required?: boolean | undefined;
|
|
@@ -6511,7 +6535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6511
6535
|
hint?: string | undefined;
|
|
6512
6536
|
messages?: {
|
|
6513
6537
|
text: string;
|
|
6514
|
-
type: "
|
|
6538
|
+
type: "error" | "success" | "info" | "warning";
|
|
6515
6539
|
id?: number | undefined;
|
|
6516
6540
|
}[] | undefined;
|
|
6517
6541
|
required?: boolean | undefined;
|
|
@@ -6519,6 +6543,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6519
6543
|
config?: {
|
|
6520
6544
|
placeholder?: string | undefined;
|
|
6521
6545
|
default_value?: string | undefined;
|
|
6546
|
+
last_used?: boolean | undefined;
|
|
6547
|
+
last_used_label?: string | undefined;
|
|
6522
6548
|
} | undefined;
|
|
6523
6549
|
} | {
|
|
6524
6550
|
id: string;
|
|
@@ -6530,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6530
6556
|
hint?: string | undefined;
|
|
6531
6557
|
messages?: {
|
|
6532
6558
|
text: string;
|
|
6533
|
-
type: "
|
|
6559
|
+
type: "error" | "success" | "info" | "warning";
|
|
6534
6560
|
id?: number | undefined;
|
|
6535
6561
|
}[] | undefined;
|
|
6536
6562
|
required?: boolean | undefined;
|
|
@@ -6550,7 +6576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6550
6576
|
hint?: string | undefined;
|
|
6551
6577
|
messages?: {
|
|
6552
6578
|
text: string;
|
|
6553
|
-
type: "
|
|
6579
|
+
type: "error" | "success" | "info" | "warning";
|
|
6554
6580
|
id?: number | undefined;
|
|
6555
6581
|
}[] | undefined;
|
|
6556
6582
|
required?: boolean | undefined;
|
|
@@ -6569,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6569
6595
|
hint?: string | undefined;
|
|
6570
6596
|
messages?: {
|
|
6571
6597
|
text: string;
|
|
6572
|
-
type: "
|
|
6598
|
+
type: "error" | "success" | "info" | "warning";
|
|
6573
6599
|
id?: number | undefined;
|
|
6574
6600
|
}[] | undefined;
|
|
6575
6601
|
required?: boolean | undefined;
|
|
@@ -6591,7 +6617,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6591
6617
|
hint?: string | undefined;
|
|
6592
6618
|
messages?: {
|
|
6593
6619
|
text: string;
|
|
6594
|
-
type: "
|
|
6620
|
+
type: "error" | "success" | "info" | "warning";
|
|
6595
6621
|
id?: number | undefined;
|
|
6596
6622
|
}[] | undefined;
|
|
6597
6623
|
required?: boolean | undefined;
|
|
@@ -6613,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6613
6639
|
hint?: string | undefined;
|
|
6614
6640
|
messages?: {
|
|
6615
6641
|
text: string;
|
|
6616
|
-
type: "
|
|
6642
|
+
type: "error" | "success" | "info" | "warning";
|
|
6617
6643
|
id?: number | undefined;
|
|
6618
6644
|
}[] | undefined;
|
|
6619
6645
|
required?: boolean | undefined;
|
|
@@ -6632,7 +6658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6632
6658
|
hint?: string | undefined;
|
|
6633
6659
|
messages?: {
|
|
6634
6660
|
text: string;
|
|
6635
|
-
type: "
|
|
6661
|
+
type: "error" | "success" | "info" | "warning";
|
|
6636
6662
|
id?: number | undefined;
|
|
6637
6663
|
}[] | undefined;
|
|
6638
6664
|
required?: boolean | undefined;
|
|
@@ -6659,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6659
6685
|
hint?: string | undefined;
|
|
6660
6686
|
messages?: {
|
|
6661
6687
|
text: string;
|
|
6662
|
-
type: "
|
|
6688
|
+
type: "error" | "success" | "info" | "warning";
|
|
6663
6689
|
id?: number | undefined;
|
|
6664
6690
|
}[] | undefined;
|
|
6665
6691
|
required?: boolean | undefined;
|
|
@@ -6680,7 +6706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6680
6706
|
hint?: string | undefined;
|
|
6681
6707
|
messages?: {
|
|
6682
6708
|
text: string;
|
|
6683
|
-
type: "
|
|
6709
|
+
type: "error" | "success" | "info" | "warning";
|
|
6684
6710
|
id?: number | undefined;
|
|
6685
6711
|
}[] | undefined;
|
|
6686
6712
|
required?: boolean | undefined;
|
|
@@ -6690,6 +6716,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6690
6716
|
multiline?: boolean | undefined;
|
|
6691
6717
|
max_length?: number | undefined;
|
|
6692
6718
|
default_value?: string | undefined;
|
|
6719
|
+
last_used?: boolean | undefined;
|
|
6720
|
+
last_used_label?: string | undefined;
|
|
6693
6721
|
} | undefined;
|
|
6694
6722
|
} | {
|
|
6695
6723
|
id: string;
|
|
@@ -6701,7 +6729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6701
6729
|
hint?: string | undefined;
|
|
6702
6730
|
messages?: {
|
|
6703
6731
|
text: string;
|
|
6704
|
-
type: "
|
|
6732
|
+
type: "error" | "success" | "info" | "warning";
|
|
6705
6733
|
id?: number | undefined;
|
|
6706
6734
|
}[] | undefined;
|
|
6707
6735
|
required?: boolean | undefined;
|
|
@@ -6933,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6933
6961
|
};
|
|
6934
6962
|
};
|
|
6935
6963
|
output: {
|
|
6936
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6964
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6937
6965
|
language: string;
|
|
6938
6966
|
}[];
|
|
6939
6967
|
outputFormat: "json";
|
|
@@ -6971,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6971
6999
|
$get: {
|
|
6972
7000
|
input: {
|
|
6973
7001
|
param: {
|
|
6974
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7002
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6975
7003
|
language: string;
|
|
6976
7004
|
};
|
|
6977
7005
|
} & {
|
|
@@ -6993,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6993
7021
|
$put: {
|
|
6994
7022
|
input: {
|
|
6995
7023
|
param: {
|
|
6996
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7024
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6997
7025
|
language: string;
|
|
6998
7026
|
};
|
|
6999
7027
|
} & {
|
|
@@ -7017,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7017
7045
|
$delete: {
|
|
7018
7046
|
input: {
|
|
7019
7047
|
param: {
|
|
7020
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7048
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7021
7049
|
language: string;
|
|
7022
7050
|
};
|
|
7023
7051
|
} & {
|
|
@@ -7880,7 +7908,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7880
7908
|
};
|
|
7881
7909
|
} | {
|
|
7882
7910
|
mode: "inline";
|
|
7883
|
-
status: "
|
|
7911
|
+
status: "error" | "success";
|
|
7884
7912
|
connection_id: string;
|
|
7885
7913
|
connection_name: string;
|
|
7886
7914
|
strategy: string;
|
|
@@ -8520,7 +8548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8520
8548
|
log_type: string;
|
|
8521
8549
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8522
8550
|
actor: {
|
|
8523
|
-
type: "
|
|
8551
|
+
type: "api_key" | "user" | "client_credentials" | "system" | "admin";
|
|
8524
8552
|
id?: string | undefined;
|
|
8525
8553
|
email?: string | undefined;
|
|
8526
8554
|
org_id?: string | undefined;
|
|
@@ -8831,7 +8859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8831
8859
|
created_at: string;
|
|
8832
8860
|
updated_at: string;
|
|
8833
8861
|
name: string;
|
|
8834
|
-
provider: "auth0" | "
|
|
8862
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8835
8863
|
connection: string;
|
|
8836
8864
|
enabled: boolean;
|
|
8837
8865
|
credentials: {
|
|
@@ -8863,7 +8891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8863
8891
|
created_at: string;
|
|
8864
8892
|
updated_at: string;
|
|
8865
8893
|
name: string;
|
|
8866
|
-
provider: "auth0" | "
|
|
8894
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8867
8895
|
connection: string;
|
|
8868
8896
|
enabled: boolean;
|
|
8869
8897
|
credentials: {
|
|
@@ -8889,7 +8917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8889
8917
|
} & {
|
|
8890
8918
|
json: {
|
|
8891
8919
|
name: string;
|
|
8892
|
-
provider: "auth0" | "
|
|
8920
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8893
8921
|
connection: string;
|
|
8894
8922
|
credentials: {
|
|
8895
8923
|
domain: string;
|
|
@@ -8906,7 +8934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8906
8934
|
created_at: string;
|
|
8907
8935
|
updated_at: string;
|
|
8908
8936
|
name: string;
|
|
8909
|
-
provider: "auth0" | "
|
|
8937
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8910
8938
|
connection: string;
|
|
8911
8939
|
enabled: boolean;
|
|
8912
8940
|
credentials: {
|
|
@@ -8937,7 +8965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8937
8965
|
json: {
|
|
8938
8966
|
id?: string | undefined;
|
|
8939
8967
|
name?: string | undefined;
|
|
8940
|
-
provider?: "auth0" | "
|
|
8968
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8941
8969
|
connection?: string | undefined;
|
|
8942
8970
|
enabled?: boolean | undefined;
|
|
8943
8971
|
credentials?: {
|
|
@@ -8953,7 +8981,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8953
8981
|
created_at: string;
|
|
8954
8982
|
updated_at: string;
|
|
8955
8983
|
name: string;
|
|
8956
|
-
provider: "auth0" | "
|
|
8984
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8957
8985
|
connection: string;
|
|
8958
8986
|
enabled: boolean;
|
|
8959
8987
|
credentials: {
|
|
@@ -9171,7 +9199,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9171
9199
|
};
|
|
9172
9200
|
};
|
|
9173
9201
|
output: {
|
|
9174
|
-
type: "
|
|
9202
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9175
9203
|
date: string;
|
|
9176
9204
|
isMobile: boolean;
|
|
9177
9205
|
log_id: string;
|
|
@@ -9210,7 +9238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9210
9238
|
limit: number;
|
|
9211
9239
|
length: number;
|
|
9212
9240
|
logs: {
|
|
9213
|
-
type: "
|
|
9241
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9214
9242
|
date: string;
|
|
9215
9243
|
isMobile: boolean;
|
|
9216
9244
|
log_id: string;
|
|
@@ -9249,7 +9277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9249
9277
|
next?: string | undefined;
|
|
9250
9278
|
} | {
|
|
9251
9279
|
logs: {
|
|
9252
|
-
type: "
|
|
9280
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9253
9281
|
date: string;
|
|
9254
9282
|
isMobile: boolean;
|
|
9255
9283
|
log_id: string;
|
|
@@ -9303,7 +9331,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9303
9331
|
};
|
|
9304
9332
|
};
|
|
9305
9333
|
output: {
|
|
9306
|
-
type: "
|
|
9334
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9307
9335
|
date: string;
|
|
9308
9336
|
isMobile: boolean;
|
|
9309
9337
|
log_id: string;
|
|
@@ -9459,7 +9487,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9459
9487
|
audience?: string | undefined;
|
|
9460
9488
|
client_id?: string | undefined;
|
|
9461
9489
|
allow_any_organization?: string | undefined;
|
|
9462
|
-
subject_type?: "
|
|
9490
|
+
subject_type?: "client" | "user" | undefined;
|
|
9463
9491
|
};
|
|
9464
9492
|
} & {
|
|
9465
9493
|
header: {
|
|
@@ -9474,7 +9502,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9474
9502
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9475
9503
|
allow_any_organization?: boolean | undefined;
|
|
9476
9504
|
is_system?: boolean | undefined;
|
|
9477
|
-
subject_type?: "
|
|
9505
|
+
subject_type?: "client" | "user" | undefined;
|
|
9478
9506
|
authorization_details_types?: string[] | undefined;
|
|
9479
9507
|
created_at?: string | undefined;
|
|
9480
9508
|
updated_at?: string | undefined;
|
|
@@ -9490,7 +9518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9490
9518
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9491
9519
|
allow_any_organization?: boolean | undefined;
|
|
9492
9520
|
is_system?: boolean | undefined;
|
|
9493
|
-
subject_type?: "
|
|
9521
|
+
subject_type?: "client" | "user" | undefined;
|
|
9494
9522
|
authorization_details_types?: string[] | undefined;
|
|
9495
9523
|
created_at?: string | undefined;
|
|
9496
9524
|
updated_at?: string | undefined;
|
|
@@ -9506,7 +9534,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9506
9534
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9507
9535
|
allow_any_organization?: boolean | undefined;
|
|
9508
9536
|
is_system?: boolean | undefined;
|
|
9509
|
-
subject_type?: "
|
|
9537
|
+
subject_type?: "client" | "user" | undefined;
|
|
9510
9538
|
authorization_details_types?: string[] | undefined;
|
|
9511
9539
|
created_at?: string | undefined;
|
|
9512
9540
|
updated_at?: string | undefined;
|
|
@@ -9537,7 +9565,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9537
9565
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9538
9566
|
allow_any_organization?: boolean | undefined;
|
|
9539
9567
|
is_system?: boolean | undefined;
|
|
9540
|
-
subject_type?: "
|
|
9568
|
+
subject_type?: "client" | "user" | undefined;
|
|
9541
9569
|
authorization_details_types?: string[] | undefined;
|
|
9542
9570
|
created_at?: string | undefined;
|
|
9543
9571
|
updated_at?: string | undefined;
|
|
@@ -9582,7 +9610,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9582
9610
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9583
9611
|
allow_any_organization?: boolean | undefined;
|
|
9584
9612
|
is_system?: boolean | undefined;
|
|
9585
|
-
subject_type?: "
|
|
9613
|
+
subject_type?: "client" | "user" | undefined;
|
|
9586
9614
|
authorization_details_types?: string[] | undefined;
|
|
9587
9615
|
};
|
|
9588
9616
|
};
|
|
@@ -9594,7 +9622,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9594
9622
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9595
9623
|
allow_any_organization?: boolean | undefined;
|
|
9596
9624
|
is_system?: boolean | undefined;
|
|
9597
|
-
subject_type?: "
|
|
9625
|
+
subject_type?: "client" | "user" | undefined;
|
|
9598
9626
|
authorization_details_types?: string[] | undefined;
|
|
9599
9627
|
created_at?: string | undefined;
|
|
9600
9628
|
updated_at?: string | undefined;
|
|
@@ -9618,7 +9646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9618
9646
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9619
9647
|
allow_any_organization?: boolean | undefined;
|
|
9620
9648
|
is_system?: boolean | undefined;
|
|
9621
|
-
subject_type?: "
|
|
9649
|
+
subject_type?: "client" | "user" | undefined;
|
|
9622
9650
|
authorization_details_types?: string[] | undefined;
|
|
9623
9651
|
};
|
|
9624
9652
|
};
|
|
@@ -9630,7 +9658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9630
9658
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9631
9659
|
allow_any_organization?: boolean | undefined;
|
|
9632
9660
|
is_system?: boolean | undefined;
|
|
9633
|
-
subject_type?: "
|
|
9661
|
+
subject_type?: "client" | "user" | undefined;
|
|
9634
9662
|
authorization_details_types?: string[] | undefined;
|
|
9635
9663
|
created_at?: string | undefined;
|
|
9636
9664
|
updated_at?: string | undefined;
|
|
@@ -9714,7 +9742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9714
9742
|
addons?: {
|
|
9715
9743
|
[x: string]: any;
|
|
9716
9744
|
} | undefined;
|
|
9717
|
-
token_endpoint_auth_method?: "
|
|
9745
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9718
9746
|
client_metadata?: {
|
|
9719
9747
|
[x: string]: string;
|
|
9720
9748
|
} | undefined;
|
|
@@ -9816,7 +9844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9816
9844
|
addons?: {
|
|
9817
9845
|
[x: string]: any;
|
|
9818
9846
|
} | undefined;
|
|
9819
|
-
token_endpoint_auth_method?: "
|
|
9847
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9820
9848
|
client_metadata?: {
|
|
9821
9849
|
[x: string]: string;
|
|
9822
9850
|
} | undefined;
|
|
@@ -9918,7 +9946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9918
9946
|
addons?: {
|
|
9919
9947
|
[x: string]: any;
|
|
9920
9948
|
} | undefined;
|
|
9921
|
-
token_endpoint_auth_method?: "
|
|
9949
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9922
9950
|
client_metadata?: {
|
|
9923
9951
|
[x: string]: string;
|
|
9924
9952
|
} | undefined;
|
|
@@ -10035,7 +10063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10035
10063
|
addons?: {
|
|
10036
10064
|
[x: string]: any;
|
|
10037
10065
|
} | undefined;
|
|
10038
|
-
token_endpoint_auth_method?: "
|
|
10066
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10039
10067
|
client_metadata?: {
|
|
10040
10068
|
[x: string]: string;
|
|
10041
10069
|
} | undefined;
|
|
@@ -10153,7 +10181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10153
10181
|
custom_login_page_preview?: string | undefined;
|
|
10154
10182
|
form_template?: string | undefined;
|
|
10155
10183
|
addons?: Record<string, any> | undefined;
|
|
10156
|
-
token_endpoint_auth_method?: "
|
|
10184
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10157
10185
|
client_metadata?: Record<string, string> | undefined;
|
|
10158
10186
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10159
10187
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10239,7 +10267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10239
10267
|
addons?: {
|
|
10240
10268
|
[x: string]: any;
|
|
10241
10269
|
} | undefined;
|
|
10242
|
-
token_endpoint_auth_method?: "
|
|
10270
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10243
10271
|
client_metadata?: {
|
|
10244
10272
|
[x: string]: string;
|
|
10245
10273
|
} | undefined;
|
|
@@ -10336,7 +10364,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10336
10364
|
custom_login_page_preview?: string | undefined;
|
|
10337
10365
|
form_template?: string | undefined;
|
|
10338
10366
|
addons?: Record<string, any> | undefined;
|
|
10339
|
-
token_endpoint_auth_method?: "
|
|
10367
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10340
10368
|
client_metadata?: Record<string, string> | undefined;
|
|
10341
10369
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10342
10370
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10422,7 +10450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10422
10450
|
addons?: {
|
|
10423
10451
|
[x: string]: any;
|
|
10424
10452
|
} | undefined;
|
|
10425
|
-
token_endpoint_auth_method?: "
|
|
10453
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10426
10454
|
client_metadata?: {
|
|
10427
10455
|
[x: string]: string;
|
|
10428
10456
|
} | undefined;
|
|
@@ -11767,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11767
11795
|
};
|
|
11768
11796
|
};
|
|
11769
11797
|
output: {
|
|
11770
|
-
type: "
|
|
11798
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
11771
11799
|
date: string;
|
|
11772
11800
|
isMobile: boolean;
|
|
11773
11801
|
log_id: string;
|
|
@@ -11806,7 +11834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11806
11834
|
limit: number;
|
|
11807
11835
|
length: number;
|
|
11808
11836
|
logs: {
|
|
11809
|
-
type: "
|
|
11837
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
11810
11838
|
date: string;
|
|
11811
11839
|
isMobile: boolean;
|
|
11812
11840
|
log_id: string;
|
|
@@ -12125,7 +12153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12125
12153
|
};
|
|
12126
12154
|
} & {
|
|
12127
12155
|
json: {
|
|
12128
|
-
template: "
|
|
12156
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12129
12157
|
body: string;
|
|
12130
12158
|
from: string;
|
|
12131
12159
|
subject: string;
|
|
@@ -12146,7 +12174,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12146
12174
|
};
|
|
12147
12175
|
} & {
|
|
12148
12176
|
json: {
|
|
12149
|
-
template: "
|
|
12177
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12150
12178
|
body: string;
|
|
12151
12179
|
from: string;
|
|
12152
12180
|
subject: string;
|
|
@@ -12158,7 +12186,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12158
12186
|
};
|
|
12159
12187
|
};
|
|
12160
12188
|
output: {
|
|
12161
|
-
template: "
|
|
12189
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12162
12190
|
body: string;
|
|
12163
12191
|
from: string;
|
|
12164
12192
|
subject: string;
|
|
@@ -12181,7 +12209,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12209
|
};
|
|
12182
12210
|
};
|
|
12183
12211
|
output: {
|
|
12184
|
-
name: "
|
|
12212
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12185
12213
|
body: string;
|
|
12186
12214
|
subject: string;
|
|
12187
12215
|
}[];
|
|
@@ -12194,7 +12222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12194
12222
|
$get: {
|
|
12195
12223
|
input: {
|
|
12196
12224
|
param: {
|
|
12197
|
-
templateName: "
|
|
12225
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12198
12226
|
};
|
|
12199
12227
|
} & {
|
|
12200
12228
|
header: {
|
|
@@ -12207,7 +12235,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12207
12235
|
} | {
|
|
12208
12236
|
input: {
|
|
12209
12237
|
param: {
|
|
12210
|
-
templateName: "
|
|
12238
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12211
12239
|
};
|
|
12212
12240
|
} & {
|
|
12213
12241
|
header: {
|
|
@@ -12215,7 +12243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12215
12243
|
};
|
|
12216
12244
|
};
|
|
12217
12245
|
output: {
|
|
12218
|
-
template: "
|
|
12246
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12219
12247
|
body: string;
|
|
12220
12248
|
from: string;
|
|
12221
12249
|
subject: string;
|
|
@@ -12234,7 +12262,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12234
12262
|
$put: {
|
|
12235
12263
|
input: {
|
|
12236
12264
|
param: {
|
|
12237
|
-
templateName: "
|
|
12265
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12238
12266
|
};
|
|
12239
12267
|
} & {
|
|
12240
12268
|
header: {
|
|
@@ -12242,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12242
12270
|
};
|
|
12243
12271
|
} & {
|
|
12244
12272
|
json: {
|
|
12245
|
-
template: "
|
|
12273
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12246
12274
|
body: string;
|
|
12247
12275
|
subject: string;
|
|
12248
12276
|
syntax?: "liquid" | undefined;
|
|
@@ -12254,7 +12282,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12254
12282
|
};
|
|
12255
12283
|
};
|
|
12256
12284
|
output: {
|
|
12257
|
-
template: "
|
|
12285
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12258
12286
|
body: string;
|
|
12259
12287
|
from: string;
|
|
12260
12288
|
subject: string;
|
|
@@ -12273,7 +12301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12273
12301
|
$patch: {
|
|
12274
12302
|
input: {
|
|
12275
12303
|
param: {
|
|
12276
|
-
templateName: "
|
|
12304
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12277
12305
|
};
|
|
12278
12306
|
} & {
|
|
12279
12307
|
header: {
|
|
@@ -12281,7 +12309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12281
12309
|
};
|
|
12282
12310
|
} & {
|
|
12283
12311
|
json: {
|
|
12284
|
-
template?: "
|
|
12312
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12285
12313
|
body?: string | undefined;
|
|
12286
12314
|
from?: string | undefined;
|
|
12287
12315
|
subject?: string | undefined;
|
|
@@ -12298,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12298
12326
|
} | {
|
|
12299
12327
|
input: {
|
|
12300
12328
|
param: {
|
|
12301
|
-
templateName: "
|
|
12329
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12302
12330
|
};
|
|
12303
12331
|
} & {
|
|
12304
12332
|
header: {
|
|
@@ -12306,7 +12334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12306
12334
|
};
|
|
12307
12335
|
} & {
|
|
12308
12336
|
json: {
|
|
12309
|
-
template?: "
|
|
12337
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12310
12338
|
body?: string | undefined;
|
|
12311
12339
|
from?: string | undefined;
|
|
12312
12340
|
subject?: string | undefined;
|
|
@@ -12318,7 +12346,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12318
12346
|
};
|
|
12319
12347
|
};
|
|
12320
12348
|
output: {
|
|
12321
|
-
template: "
|
|
12349
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12322
12350
|
body: string;
|
|
12323
12351
|
from: string;
|
|
12324
12352
|
subject: string;
|
|
@@ -12337,7 +12365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12337
12365
|
$delete: {
|
|
12338
12366
|
input: {
|
|
12339
12367
|
param: {
|
|
12340
|
-
templateName: "
|
|
12368
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12341
12369
|
};
|
|
12342
12370
|
} & {
|
|
12343
12371
|
header: {
|
|
@@ -12350,7 +12378,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12350
12378
|
} | {
|
|
12351
12379
|
input: {
|
|
12352
12380
|
param: {
|
|
12353
|
-
templateName: "
|
|
12381
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12354
12382
|
};
|
|
12355
12383
|
} & {
|
|
12356
12384
|
header: {
|
|
@@ -12367,7 +12395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12367
12395
|
$post: {
|
|
12368
12396
|
input: {
|
|
12369
12397
|
param: {
|
|
12370
|
-
templateName: "
|
|
12398
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12371
12399
|
};
|
|
12372
12400
|
} & {
|
|
12373
12401
|
header: {
|
|
@@ -12650,7 +12678,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12650
12678
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12651
12679
|
custom_domain_id: string;
|
|
12652
12680
|
primary: boolean;
|
|
12653
|
-
status: "
|
|
12681
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12654
12682
|
verification_method?: "txt" | undefined;
|
|
12655
12683
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12656
12684
|
domain_metadata?: {
|
|
@@ -12691,7 +12719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12691
12719
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12692
12720
|
custom_domain_id: string;
|
|
12693
12721
|
primary: boolean;
|
|
12694
|
-
status: "
|
|
12722
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12695
12723
|
verification_method?: "txt" | undefined;
|
|
12696
12724
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12697
12725
|
domain_metadata?: {
|
|
@@ -12755,7 +12783,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12755
12783
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12756
12784
|
custom_domain_id: string;
|
|
12757
12785
|
primary: boolean;
|
|
12758
|
-
status: "
|
|
12786
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12759
12787
|
verification_method?: "txt" | undefined;
|
|
12760
12788
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12761
12789
|
domain_metadata?: {
|
|
@@ -12802,7 +12830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12802
12830
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12803
12831
|
custom_domain_id: string;
|
|
12804
12832
|
primary: boolean;
|
|
12805
|
-
status: "
|
|
12833
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12806
12834
|
verification_method?: "txt" | undefined;
|
|
12807
12835
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12808
12836
|
domain_metadata?: {
|
|
@@ -12848,7 +12876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12848
12876
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12849
12877
|
custom_domain_id: string;
|
|
12850
12878
|
primary: boolean;
|
|
12851
|
-
status: "
|
|
12879
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12852
12880
|
verification_method?: "txt" | undefined;
|
|
12853
12881
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12854
12882
|
domain_metadata?: {
|
|
@@ -12889,7 +12917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12889
12917
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12890
12918
|
custom_domain_id: string;
|
|
12891
12919
|
primary: boolean;
|
|
12892
|
-
status: "
|
|
12920
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12893
12921
|
verification_method?: "txt" | undefined;
|
|
12894
12922
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12895
12923
|
domain_metadata?: {
|
|
@@ -13319,7 +13347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13319
13347
|
} & {
|
|
13320
13348
|
json: {
|
|
13321
13349
|
body?: string | undefined;
|
|
13322
|
-
screen?: "
|
|
13350
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13323
13351
|
branding?: {
|
|
13324
13352
|
colors?: {
|
|
13325
13353
|
primary: string;
|
|
@@ -13488,7 +13516,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13488
13516
|
json: {
|
|
13489
13517
|
bindings: {
|
|
13490
13518
|
ref: {
|
|
13491
|
-
type?: "
|
|
13519
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13492
13520
|
value?: string | undefined;
|
|
13493
13521
|
id?: string | undefined;
|
|
13494
13522
|
name?: string | undefined;
|
|
@@ -13610,7 +13638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13610
13638
|
logs: {
|
|
13611
13639
|
action_name: string;
|
|
13612
13640
|
lines: {
|
|
13613
|
-
level: "
|
|
13641
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
13614
13642
|
message: string;
|
|
13615
13643
|
}[];
|
|
13616
13644
|
}[];
|
|
@@ -14279,7 +14307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14279
14307
|
args: import("hono/utils/types").JSONValue[];
|
|
14280
14308
|
}[];
|
|
14281
14309
|
logs: {
|
|
14282
|
-
level: "
|
|
14310
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
14283
14311
|
message: string;
|
|
14284
14312
|
}[];
|
|
14285
14313
|
error?: string | undefined;
|