authhero 9.0.0 → 9.1.1
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-f6babd26.entry.js → p-c179b5da.entry.js} +1 -1
- package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/authhero.cjs +211 -208
- package/dist/authhero.d.ts +232 -197
- package/dist/authhero.mjs +26152 -24944
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +6 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/service-token.d.ts +16 -5
- package/dist/types/helpers/users.d.ts +73 -1
- package/dist/types/hooks/post-user-login.d.ts +6 -0
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +224 -195
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +8 -8
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- 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/connections.d.ts +1 -1
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +207 -182
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +10 -2
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +1 -0
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthError.d.ts +1 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +6 -6
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "email" | "
|
|
99
|
+
type: "email" | "push" | "passkey" | "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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "email" | "
|
|
394
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "email" | "
|
|
402
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "email" | "
|
|
415
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "email" | "
|
|
427
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
invitee: {
|
|
1200
|
-
email?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
inviter: {
|
|
1203
1200
|
name?: string | undefined;
|
|
1204
1201
|
};
|
|
1205
|
-
|
|
1202
|
+
invitee: {
|
|
1203
|
+
email?: string | undefined;
|
|
1204
|
+
};
|
|
1206
1205
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1206
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
+
id?: string | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
|
-
send_invitation_email?: boolean | undefined;
|
|
1211
1210
|
ttl_sec?: number | undefined;
|
|
1211
|
+
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -2688,7 +2688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2688
2688
|
hint?: string | undefined;
|
|
2689
2689
|
messages?: {
|
|
2690
2690
|
text: string;
|
|
2691
|
-
type: "
|
|
2691
|
+
type: "success" | "error" | "info" | "warning";
|
|
2692
2692
|
id?: number | undefined;
|
|
2693
2693
|
}[] | undefined;
|
|
2694
2694
|
required?: boolean | undefined;
|
|
@@ -2706,7 +2706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2706
2706
|
hint?: string | undefined;
|
|
2707
2707
|
messages?: {
|
|
2708
2708
|
text: string;
|
|
2709
|
-
type: "
|
|
2709
|
+
type: "success" | "error" | "info" | "warning";
|
|
2710
2710
|
id?: number | undefined;
|
|
2711
2711
|
}[] | undefined;
|
|
2712
2712
|
required?: boolean | undefined;
|
|
@@ -2730,7 +2730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2730
2730
|
hint?: string | undefined;
|
|
2731
2731
|
messages?: {
|
|
2732
2732
|
text: string;
|
|
2733
|
-
type: "
|
|
2733
|
+
type: "success" | "error" | "info" | "warning";
|
|
2734
2734
|
id?: number | undefined;
|
|
2735
2735
|
}[] | undefined;
|
|
2736
2736
|
required?: boolean | undefined;
|
|
@@ -2754,7 +2754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2754
2754
|
hint?: string | undefined;
|
|
2755
2755
|
messages?: {
|
|
2756
2756
|
text: string;
|
|
2757
|
-
type: "
|
|
2757
|
+
type: "success" | "error" | "info" | "warning";
|
|
2758
2758
|
id?: number | undefined;
|
|
2759
2759
|
}[] | undefined;
|
|
2760
2760
|
required?: boolean | undefined;
|
|
@@ -2778,7 +2778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2778
2778
|
hint?: string | undefined;
|
|
2779
2779
|
messages?: {
|
|
2780
2780
|
text: string;
|
|
2781
|
-
type: "
|
|
2781
|
+
type: "success" | "error" | "info" | "warning";
|
|
2782
2782
|
id?: number | undefined;
|
|
2783
2783
|
}[] | undefined;
|
|
2784
2784
|
required?: boolean | undefined;
|
|
@@ -2807,7 +2807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2807
2807
|
hint?: string | undefined;
|
|
2808
2808
|
messages?: {
|
|
2809
2809
|
text: string;
|
|
2810
|
-
type: "
|
|
2810
|
+
type: "success" | "error" | "info" | "warning";
|
|
2811
2811
|
id?: number | undefined;
|
|
2812
2812
|
}[] | undefined;
|
|
2813
2813
|
required?: boolean | undefined;
|
|
@@ -2822,7 +2822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2822
2822
|
hint?: string | undefined;
|
|
2823
2823
|
messages?: {
|
|
2824
2824
|
text: string;
|
|
2825
|
-
type: "
|
|
2825
|
+
type: "success" | "error" | "info" | "warning";
|
|
2826
2826
|
id?: number | undefined;
|
|
2827
2827
|
}[] | undefined;
|
|
2828
2828
|
required?: boolean | undefined;
|
|
@@ -2843,7 +2843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2843
2843
|
hint?: string | undefined;
|
|
2844
2844
|
messages?: {
|
|
2845
2845
|
text: string;
|
|
2846
|
-
type: "
|
|
2846
|
+
type: "success" | "error" | "info" | "warning";
|
|
2847
2847
|
id?: number | undefined;
|
|
2848
2848
|
}[] | undefined;
|
|
2849
2849
|
required?: boolean | undefined;
|
|
@@ -2868,7 +2868,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2868
2868
|
hint?: string | undefined;
|
|
2869
2869
|
messages?: {
|
|
2870
2870
|
text: string;
|
|
2871
|
-
type: "
|
|
2871
|
+
type: "success" | "error" | "info" | "warning";
|
|
2872
2872
|
id?: number | undefined;
|
|
2873
2873
|
}[] | undefined;
|
|
2874
2874
|
required?: boolean | undefined;
|
|
@@ -2887,7 +2887,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2887
2887
|
hint?: string | undefined;
|
|
2888
2888
|
messages?: {
|
|
2889
2889
|
text: string;
|
|
2890
|
-
type: "
|
|
2890
|
+
type: "success" | "error" | "info" | "warning";
|
|
2891
2891
|
id?: number | undefined;
|
|
2892
2892
|
}[] | undefined;
|
|
2893
2893
|
required?: boolean | undefined;
|
|
@@ -2907,7 +2907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2907
2907
|
hint?: string | undefined;
|
|
2908
2908
|
messages?: {
|
|
2909
2909
|
text: string;
|
|
2910
|
-
type: "
|
|
2910
|
+
type: "success" | "error" | "info" | "warning";
|
|
2911
2911
|
id?: number | undefined;
|
|
2912
2912
|
}[] | undefined;
|
|
2913
2913
|
required?: boolean | undefined;
|
|
@@ -2926,7 +2926,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2926
2926
|
hint?: string | undefined;
|
|
2927
2927
|
messages?: {
|
|
2928
2928
|
text: string;
|
|
2929
|
-
type: "
|
|
2929
|
+
type: "success" | "error" | "info" | "warning";
|
|
2930
2930
|
id?: number | undefined;
|
|
2931
2931
|
}[] | undefined;
|
|
2932
2932
|
required?: boolean | undefined;
|
|
@@ -2948,7 +2948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2948
2948
|
hint?: string | undefined;
|
|
2949
2949
|
messages?: {
|
|
2950
2950
|
text: string;
|
|
2951
|
-
type: "
|
|
2951
|
+
type: "success" | "error" | "info" | "warning";
|
|
2952
2952
|
id?: number | undefined;
|
|
2953
2953
|
}[] | undefined;
|
|
2954
2954
|
required?: boolean | undefined;
|
|
@@ -2970,7 +2970,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2970
2970
|
hint?: string | undefined;
|
|
2971
2971
|
messages?: {
|
|
2972
2972
|
text: string;
|
|
2973
|
-
type: "
|
|
2973
|
+
type: "success" | "error" | "info" | "warning";
|
|
2974
2974
|
id?: number | undefined;
|
|
2975
2975
|
}[] | undefined;
|
|
2976
2976
|
required?: boolean | undefined;
|
|
@@ -2989,7 +2989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2989
2989
|
hint?: string | undefined;
|
|
2990
2990
|
messages?: {
|
|
2991
2991
|
text: string;
|
|
2992
|
-
type: "
|
|
2992
|
+
type: "success" | "error" | "info" | "warning";
|
|
2993
2993
|
id?: number | undefined;
|
|
2994
2994
|
}[] | undefined;
|
|
2995
2995
|
required?: boolean | undefined;
|
|
@@ -3002,6 +3002,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3002
3002
|
display_name?: string | undefined;
|
|
3003
3003
|
icon_url?: string | undefined;
|
|
3004
3004
|
href?: string | undefined;
|
|
3005
|
+
last_used?: boolean | undefined;
|
|
3006
|
+
last_used_label?: string | undefined;
|
|
3005
3007
|
}[] | undefined;
|
|
3006
3008
|
} | undefined;
|
|
3007
3009
|
} | {
|
|
@@ -3014,7 +3016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3014
3016
|
hint?: string | undefined;
|
|
3015
3017
|
messages?: {
|
|
3016
3018
|
text: string;
|
|
3017
|
-
type: "
|
|
3019
|
+
type: "success" | "error" | "info" | "warning";
|
|
3018
3020
|
id?: number | undefined;
|
|
3019
3021
|
}[] | undefined;
|
|
3020
3022
|
required?: boolean | undefined;
|
|
@@ -3035,7 +3037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3035
3037
|
hint?: string | undefined;
|
|
3036
3038
|
messages?: {
|
|
3037
3039
|
text: string;
|
|
3038
|
-
type: "
|
|
3040
|
+
type: "success" | "error" | "info" | "warning";
|
|
3039
3041
|
id?: number | undefined;
|
|
3040
3042
|
}[] | undefined;
|
|
3041
3043
|
required?: boolean | undefined;
|
|
@@ -3056,7 +3058,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3056
3058
|
hint?: string | undefined;
|
|
3057
3059
|
messages?: {
|
|
3058
3060
|
text: string;
|
|
3059
|
-
type: "
|
|
3061
|
+
type: "success" | "error" | "info" | "warning";
|
|
3060
3062
|
id?: number | undefined;
|
|
3061
3063
|
}[] | undefined;
|
|
3062
3064
|
required?: boolean | undefined;
|
|
@@ -3289,7 +3291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3289
3291
|
hint?: string | undefined;
|
|
3290
3292
|
messages?: {
|
|
3291
3293
|
text: string;
|
|
3292
|
-
type: "
|
|
3294
|
+
type: "success" | "error" | "info" | "warning";
|
|
3293
3295
|
id?: number | undefined;
|
|
3294
3296
|
}[] | undefined;
|
|
3295
3297
|
required?: boolean | undefined;
|
|
@@ -3307,7 +3309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3307
3309
|
hint?: string | undefined;
|
|
3308
3310
|
messages?: {
|
|
3309
3311
|
text: string;
|
|
3310
|
-
type: "
|
|
3312
|
+
type: "success" | "error" | "info" | "warning";
|
|
3311
3313
|
id?: number | undefined;
|
|
3312
3314
|
}[] | undefined;
|
|
3313
3315
|
required?: boolean | undefined;
|
|
@@ -3331,7 +3333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3331
3333
|
hint?: string | undefined;
|
|
3332
3334
|
messages?: {
|
|
3333
3335
|
text: string;
|
|
3334
|
-
type: "
|
|
3336
|
+
type: "success" | "error" | "info" | "warning";
|
|
3335
3337
|
id?: number | undefined;
|
|
3336
3338
|
}[] | undefined;
|
|
3337
3339
|
required?: boolean | undefined;
|
|
@@ -3355,7 +3357,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3355
3357
|
hint?: string | undefined;
|
|
3356
3358
|
messages?: {
|
|
3357
3359
|
text: string;
|
|
3358
|
-
type: "
|
|
3360
|
+
type: "success" | "error" | "info" | "warning";
|
|
3359
3361
|
id?: number | undefined;
|
|
3360
3362
|
}[] | undefined;
|
|
3361
3363
|
required?: boolean | undefined;
|
|
@@ -3379,7 +3381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3379
3381
|
hint?: string | undefined;
|
|
3380
3382
|
messages?: {
|
|
3381
3383
|
text: string;
|
|
3382
|
-
type: "
|
|
3384
|
+
type: "success" | "error" | "info" | "warning";
|
|
3383
3385
|
id?: number | undefined;
|
|
3384
3386
|
}[] | undefined;
|
|
3385
3387
|
required?: boolean | undefined;
|
|
@@ -3408,7 +3410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3408
3410
|
hint?: string | undefined;
|
|
3409
3411
|
messages?: {
|
|
3410
3412
|
text: string;
|
|
3411
|
-
type: "
|
|
3413
|
+
type: "success" | "error" | "info" | "warning";
|
|
3412
3414
|
id?: number | undefined;
|
|
3413
3415
|
}[] | undefined;
|
|
3414
3416
|
required?: boolean | undefined;
|
|
@@ -3423,7 +3425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3423
3425
|
hint?: string | undefined;
|
|
3424
3426
|
messages?: {
|
|
3425
3427
|
text: string;
|
|
3426
|
-
type: "
|
|
3428
|
+
type: "success" | "error" | "info" | "warning";
|
|
3427
3429
|
id?: number | undefined;
|
|
3428
3430
|
}[] | undefined;
|
|
3429
3431
|
required?: boolean | undefined;
|
|
@@ -3444,7 +3446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3444
3446
|
hint?: string | undefined;
|
|
3445
3447
|
messages?: {
|
|
3446
3448
|
text: string;
|
|
3447
|
-
type: "
|
|
3449
|
+
type: "success" | "error" | "info" | "warning";
|
|
3448
3450
|
id?: number | undefined;
|
|
3449
3451
|
}[] | undefined;
|
|
3450
3452
|
required?: boolean | undefined;
|
|
@@ -3469,7 +3471,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3469
3471
|
hint?: string | undefined;
|
|
3470
3472
|
messages?: {
|
|
3471
3473
|
text: string;
|
|
3472
|
-
type: "
|
|
3474
|
+
type: "success" | "error" | "info" | "warning";
|
|
3473
3475
|
id?: number | undefined;
|
|
3474
3476
|
}[] | undefined;
|
|
3475
3477
|
required?: boolean | undefined;
|
|
@@ -3488,7 +3490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3488
3490
|
hint?: string | undefined;
|
|
3489
3491
|
messages?: {
|
|
3490
3492
|
text: string;
|
|
3491
|
-
type: "
|
|
3493
|
+
type: "success" | "error" | "info" | "warning";
|
|
3492
3494
|
id?: number | undefined;
|
|
3493
3495
|
}[] | undefined;
|
|
3494
3496
|
required?: boolean | undefined;
|
|
@@ -3508,7 +3510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3508
3510
|
hint?: string | undefined;
|
|
3509
3511
|
messages?: {
|
|
3510
3512
|
text: string;
|
|
3511
|
-
type: "
|
|
3513
|
+
type: "success" | "error" | "info" | "warning";
|
|
3512
3514
|
id?: number | undefined;
|
|
3513
3515
|
}[] | undefined;
|
|
3514
3516
|
required?: boolean | undefined;
|
|
@@ -3527,7 +3529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3527
3529
|
hint?: string | undefined;
|
|
3528
3530
|
messages?: {
|
|
3529
3531
|
text: string;
|
|
3530
|
-
type: "
|
|
3532
|
+
type: "success" | "error" | "info" | "warning";
|
|
3531
3533
|
id?: number | undefined;
|
|
3532
3534
|
}[] | undefined;
|
|
3533
3535
|
required?: boolean | undefined;
|
|
@@ -3549,7 +3551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3549
3551
|
hint?: string | undefined;
|
|
3550
3552
|
messages?: {
|
|
3551
3553
|
text: string;
|
|
3552
|
-
type: "
|
|
3554
|
+
type: "success" | "error" | "info" | "warning";
|
|
3553
3555
|
id?: number | undefined;
|
|
3554
3556
|
}[] | undefined;
|
|
3555
3557
|
required?: boolean | undefined;
|
|
@@ -3571,7 +3573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3571
3573
|
hint?: string | undefined;
|
|
3572
3574
|
messages?: {
|
|
3573
3575
|
text: string;
|
|
3574
|
-
type: "
|
|
3576
|
+
type: "success" | "error" | "info" | "warning";
|
|
3575
3577
|
id?: number | undefined;
|
|
3576
3578
|
}[] | undefined;
|
|
3577
3579
|
required?: boolean | undefined;
|
|
@@ -3590,7 +3592,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3590
3592
|
hint?: string | undefined;
|
|
3591
3593
|
messages?: {
|
|
3592
3594
|
text: string;
|
|
3593
|
-
type: "
|
|
3595
|
+
type: "success" | "error" | "info" | "warning";
|
|
3594
3596
|
id?: number | undefined;
|
|
3595
3597
|
}[] | undefined;
|
|
3596
3598
|
required?: boolean | undefined;
|
|
@@ -3603,6 +3605,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3603
3605
|
display_name?: string | undefined;
|
|
3604
3606
|
icon_url?: string | undefined;
|
|
3605
3607
|
href?: string | undefined;
|
|
3608
|
+
last_used?: boolean | undefined;
|
|
3609
|
+
last_used_label?: string | undefined;
|
|
3606
3610
|
}[] | undefined;
|
|
3607
3611
|
} | undefined;
|
|
3608
3612
|
} | {
|
|
@@ -3615,7 +3619,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3615
3619
|
hint?: string | undefined;
|
|
3616
3620
|
messages?: {
|
|
3617
3621
|
text: string;
|
|
3618
|
-
type: "
|
|
3622
|
+
type: "success" | "error" | "info" | "warning";
|
|
3619
3623
|
id?: number | undefined;
|
|
3620
3624
|
}[] | undefined;
|
|
3621
3625
|
required?: boolean | undefined;
|
|
@@ -3636,7 +3640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3636
3640
|
hint?: string | undefined;
|
|
3637
3641
|
messages?: {
|
|
3638
3642
|
text: string;
|
|
3639
|
-
type: "
|
|
3643
|
+
type: "success" | "error" | "info" | "warning";
|
|
3640
3644
|
id?: number | undefined;
|
|
3641
3645
|
}[] | undefined;
|
|
3642
3646
|
required?: boolean | undefined;
|
|
@@ -3657,7 +3661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3657
3661
|
hint?: string | undefined;
|
|
3658
3662
|
messages?: {
|
|
3659
3663
|
text: string;
|
|
3660
|
-
type: "
|
|
3664
|
+
type: "success" | "error" | "info" | "warning";
|
|
3661
3665
|
id?: number | undefined;
|
|
3662
3666
|
}[] | undefined;
|
|
3663
3667
|
required?: boolean | undefined;
|
|
@@ -3906,7 +3910,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3906
3910
|
hint?: string | undefined;
|
|
3907
3911
|
messages?: {
|
|
3908
3912
|
text: string;
|
|
3909
|
-
type: "
|
|
3913
|
+
type: "success" | "error" | "info" | "warning";
|
|
3910
3914
|
id?: number | undefined;
|
|
3911
3915
|
}[] | undefined;
|
|
3912
3916
|
required?: boolean | undefined;
|
|
@@ -3924,7 +3928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3924
3928
|
hint?: string | undefined;
|
|
3925
3929
|
messages?: {
|
|
3926
3930
|
text: string;
|
|
3927
|
-
type: "
|
|
3931
|
+
type: "success" | "error" | "info" | "warning";
|
|
3928
3932
|
id?: number | undefined;
|
|
3929
3933
|
}[] | undefined;
|
|
3930
3934
|
required?: boolean | undefined;
|
|
@@ -3948,7 +3952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3948
3952
|
hint?: string | undefined;
|
|
3949
3953
|
messages?: {
|
|
3950
3954
|
text: string;
|
|
3951
|
-
type: "
|
|
3955
|
+
type: "success" | "error" | "info" | "warning";
|
|
3952
3956
|
id?: number | undefined;
|
|
3953
3957
|
}[] | undefined;
|
|
3954
3958
|
required?: boolean | undefined;
|
|
@@ -3972,7 +3976,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3972
3976
|
hint?: string | undefined;
|
|
3973
3977
|
messages?: {
|
|
3974
3978
|
text: string;
|
|
3975
|
-
type: "
|
|
3979
|
+
type: "success" | "error" | "info" | "warning";
|
|
3976
3980
|
id?: number | undefined;
|
|
3977
3981
|
}[] | undefined;
|
|
3978
3982
|
required?: boolean | undefined;
|
|
@@ -3996,7 +4000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3996
4000
|
hint?: string | undefined;
|
|
3997
4001
|
messages?: {
|
|
3998
4002
|
text: string;
|
|
3999
|
-
type: "
|
|
4003
|
+
type: "success" | "error" | "info" | "warning";
|
|
4000
4004
|
id?: number | undefined;
|
|
4001
4005
|
}[] | undefined;
|
|
4002
4006
|
required?: boolean | undefined;
|
|
@@ -4025,7 +4029,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4025
4029
|
hint?: string | undefined;
|
|
4026
4030
|
messages?: {
|
|
4027
4031
|
text: string;
|
|
4028
|
-
type: "
|
|
4032
|
+
type: "success" | "error" | "info" | "warning";
|
|
4029
4033
|
id?: number | undefined;
|
|
4030
4034
|
}[] | undefined;
|
|
4031
4035
|
required?: boolean | undefined;
|
|
@@ -4040,7 +4044,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4040
4044
|
hint?: string | undefined;
|
|
4041
4045
|
messages?: {
|
|
4042
4046
|
text: string;
|
|
4043
|
-
type: "
|
|
4047
|
+
type: "success" | "error" | "info" | "warning";
|
|
4044
4048
|
id?: number | undefined;
|
|
4045
4049
|
}[] | undefined;
|
|
4046
4050
|
required?: boolean | undefined;
|
|
@@ -4061,7 +4065,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4061
4065
|
hint?: string | undefined;
|
|
4062
4066
|
messages?: {
|
|
4063
4067
|
text: string;
|
|
4064
|
-
type: "
|
|
4068
|
+
type: "success" | "error" | "info" | "warning";
|
|
4065
4069
|
id?: number | undefined;
|
|
4066
4070
|
}[] | undefined;
|
|
4067
4071
|
required?: boolean | undefined;
|
|
@@ -4086,7 +4090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4086
4090
|
hint?: string | undefined;
|
|
4087
4091
|
messages?: {
|
|
4088
4092
|
text: string;
|
|
4089
|
-
type: "
|
|
4093
|
+
type: "success" | "error" | "info" | "warning";
|
|
4090
4094
|
id?: number | undefined;
|
|
4091
4095
|
}[] | undefined;
|
|
4092
4096
|
required?: boolean | undefined;
|
|
@@ -4105,7 +4109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4105
4109
|
hint?: string | undefined;
|
|
4106
4110
|
messages?: {
|
|
4107
4111
|
text: string;
|
|
4108
|
-
type: "
|
|
4112
|
+
type: "success" | "error" | "info" | "warning";
|
|
4109
4113
|
id?: number | undefined;
|
|
4110
4114
|
}[] | undefined;
|
|
4111
4115
|
required?: boolean | undefined;
|
|
@@ -4125,7 +4129,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4125
4129
|
hint?: string | undefined;
|
|
4126
4130
|
messages?: {
|
|
4127
4131
|
text: string;
|
|
4128
|
-
type: "
|
|
4132
|
+
type: "success" | "error" | "info" | "warning";
|
|
4129
4133
|
id?: number | undefined;
|
|
4130
4134
|
}[] | undefined;
|
|
4131
4135
|
required?: boolean | undefined;
|
|
@@ -4144,7 +4148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4144
4148
|
hint?: string | undefined;
|
|
4145
4149
|
messages?: {
|
|
4146
4150
|
text: string;
|
|
4147
|
-
type: "
|
|
4151
|
+
type: "success" | "error" | "info" | "warning";
|
|
4148
4152
|
id?: number | undefined;
|
|
4149
4153
|
}[] | undefined;
|
|
4150
4154
|
required?: boolean | undefined;
|
|
@@ -4166,7 +4170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4166
4170
|
hint?: string | undefined;
|
|
4167
4171
|
messages?: {
|
|
4168
4172
|
text: string;
|
|
4169
|
-
type: "
|
|
4173
|
+
type: "success" | "error" | "info" | "warning";
|
|
4170
4174
|
id?: number | undefined;
|
|
4171
4175
|
}[] | undefined;
|
|
4172
4176
|
required?: boolean | undefined;
|
|
@@ -4188,7 +4192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4188
4192
|
hint?: string | undefined;
|
|
4189
4193
|
messages?: {
|
|
4190
4194
|
text: string;
|
|
4191
|
-
type: "
|
|
4195
|
+
type: "success" | "error" | "info" | "warning";
|
|
4192
4196
|
id?: number | undefined;
|
|
4193
4197
|
}[] | undefined;
|
|
4194
4198
|
required?: boolean | undefined;
|
|
@@ -4207,7 +4211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4207
4211
|
hint?: string | undefined;
|
|
4208
4212
|
messages?: {
|
|
4209
4213
|
text: string;
|
|
4210
|
-
type: "
|
|
4214
|
+
type: "success" | "error" | "info" | "warning";
|
|
4211
4215
|
id?: number | undefined;
|
|
4212
4216
|
}[] | undefined;
|
|
4213
4217
|
required?: boolean | undefined;
|
|
@@ -4220,6 +4224,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4220
4224
|
display_name?: string | undefined;
|
|
4221
4225
|
icon_url?: string | undefined;
|
|
4222
4226
|
href?: string | undefined;
|
|
4227
|
+
last_used?: boolean | undefined;
|
|
4228
|
+
last_used_label?: string | undefined;
|
|
4223
4229
|
}[] | undefined;
|
|
4224
4230
|
} | undefined;
|
|
4225
4231
|
} | {
|
|
@@ -4232,7 +4238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4232
4238
|
hint?: string | undefined;
|
|
4233
4239
|
messages?: {
|
|
4234
4240
|
text: string;
|
|
4235
|
-
type: "
|
|
4241
|
+
type: "success" | "error" | "info" | "warning";
|
|
4236
4242
|
id?: number | undefined;
|
|
4237
4243
|
}[] | undefined;
|
|
4238
4244
|
required?: boolean | undefined;
|
|
@@ -4253,7 +4259,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4253
4259
|
hint?: string | undefined;
|
|
4254
4260
|
messages?: {
|
|
4255
4261
|
text: string;
|
|
4256
|
-
type: "
|
|
4262
|
+
type: "success" | "error" | "info" | "warning";
|
|
4257
4263
|
id?: number | undefined;
|
|
4258
4264
|
}[] | undefined;
|
|
4259
4265
|
required?: boolean | undefined;
|
|
@@ -4274,7 +4280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4274
4280
|
hint?: string | undefined;
|
|
4275
4281
|
messages?: {
|
|
4276
4282
|
text: string;
|
|
4277
|
-
type: "
|
|
4283
|
+
type: "success" | "error" | "info" | "warning";
|
|
4278
4284
|
id?: number | undefined;
|
|
4279
4285
|
}[] | undefined;
|
|
4280
4286
|
required?: boolean | undefined;
|
|
@@ -4528,7 +4534,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4528
4534
|
hint?: string | undefined;
|
|
4529
4535
|
messages?: {
|
|
4530
4536
|
text: string;
|
|
4531
|
-
type: "
|
|
4537
|
+
type: "success" | "error" | "info" | "warning";
|
|
4532
4538
|
id?: number | undefined;
|
|
4533
4539
|
}[] | undefined;
|
|
4534
4540
|
required?: boolean | undefined;
|
|
@@ -4546,7 +4552,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4546
4552
|
hint?: string | undefined;
|
|
4547
4553
|
messages?: {
|
|
4548
4554
|
text: string;
|
|
4549
|
-
type: "
|
|
4555
|
+
type: "success" | "error" | "info" | "warning";
|
|
4550
4556
|
id?: number | undefined;
|
|
4551
4557
|
}[] | undefined;
|
|
4552
4558
|
required?: boolean | undefined;
|
|
@@ -4570,7 +4576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4570
4576
|
hint?: string | undefined;
|
|
4571
4577
|
messages?: {
|
|
4572
4578
|
text: string;
|
|
4573
|
-
type: "
|
|
4579
|
+
type: "success" | "error" | "info" | "warning";
|
|
4574
4580
|
id?: number | undefined;
|
|
4575
4581
|
}[] | undefined;
|
|
4576
4582
|
required?: boolean | undefined;
|
|
@@ -4594,7 +4600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4594
4600
|
hint?: string | undefined;
|
|
4595
4601
|
messages?: {
|
|
4596
4602
|
text: string;
|
|
4597
|
-
type: "
|
|
4603
|
+
type: "success" | "error" | "info" | "warning";
|
|
4598
4604
|
id?: number | undefined;
|
|
4599
4605
|
}[] | undefined;
|
|
4600
4606
|
required?: boolean | undefined;
|
|
@@ -4618,7 +4624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4618
4624
|
hint?: string | undefined;
|
|
4619
4625
|
messages?: {
|
|
4620
4626
|
text: string;
|
|
4621
|
-
type: "
|
|
4627
|
+
type: "success" | "error" | "info" | "warning";
|
|
4622
4628
|
id?: number | undefined;
|
|
4623
4629
|
}[] | undefined;
|
|
4624
4630
|
required?: boolean | undefined;
|
|
@@ -4643,7 +4649,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4643
4649
|
hint?: string | undefined;
|
|
4644
4650
|
messages?: {
|
|
4645
4651
|
text: string;
|
|
4646
|
-
type: "
|
|
4652
|
+
type: "success" | "error" | "info" | "warning";
|
|
4647
4653
|
id?: number | undefined;
|
|
4648
4654
|
}[] | undefined;
|
|
4649
4655
|
required?: boolean | undefined;
|
|
@@ -4658,7 +4664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4658
4664
|
hint?: string | undefined;
|
|
4659
4665
|
messages?: {
|
|
4660
4666
|
text: string;
|
|
4661
|
-
type: "
|
|
4667
|
+
type: "success" | "error" | "info" | "warning";
|
|
4662
4668
|
id?: number | undefined;
|
|
4663
4669
|
}[] | undefined;
|
|
4664
4670
|
required?: boolean | undefined;
|
|
@@ -4679,7 +4685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4679
4685
|
hint?: string | undefined;
|
|
4680
4686
|
messages?: {
|
|
4681
4687
|
text: string;
|
|
4682
|
-
type: "
|
|
4688
|
+
type: "success" | "error" | "info" | "warning";
|
|
4683
4689
|
id?: number | undefined;
|
|
4684
4690
|
}[] | undefined;
|
|
4685
4691
|
required?: boolean | undefined;
|
|
@@ -4704,7 +4710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4704
4710
|
hint?: string | undefined;
|
|
4705
4711
|
messages?: {
|
|
4706
4712
|
text: string;
|
|
4707
|
-
type: "
|
|
4713
|
+
type: "success" | "error" | "info" | "warning";
|
|
4708
4714
|
id?: number | undefined;
|
|
4709
4715
|
}[] | undefined;
|
|
4710
4716
|
required?: boolean | undefined;
|
|
@@ -4723,7 +4729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4723
4729
|
hint?: string | undefined;
|
|
4724
4730
|
messages?: {
|
|
4725
4731
|
text: string;
|
|
4726
|
-
type: "
|
|
4732
|
+
type: "success" | "error" | "info" | "warning";
|
|
4727
4733
|
id?: number | undefined;
|
|
4728
4734
|
}[] | undefined;
|
|
4729
4735
|
required?: boolean | undefined;
|
|
@@ -4743,7 +4749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4743
4749
|
hint?: string | undefined;
|
|
4744
4750
|
messages?: {
|
|
4745
4751
|
text: string;
|
|
4746
|
-
type: "
|
|
4752
|
+
type: "success" | "error" | "info" | "warning";
|
|
4747
4753
|
id?: number | undefined;
|
|
4748
4754
|
}[] | undefined;
|
|
4749
4755
|
required?: boolean | undefined;
|
|
@@ -4762,7 +4768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4762
4768
|
hint?: string | undefined;
|
|
4763
4769
|
messages?: {
|
|
4764
4770
|
text: string;
|
|
4765
|
-
type: "
|
|
4771
|
+
type: "success" | "error" | "info" | "warning";
|
|
4766
4772
|
id?: number | undefined;
|
|
4767
4773
|
}[] | undefined;
|
|
4768
4774
|
required?: boolean | undefined;
|
|
@@ -4784,7 +4790,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4784
4790
|
hint?: string | undefined;
|
|
4785
4791
|
messages?: {
|
|
4786
4792
|
text: string;
|
|
4787
|
-
type: "
|
|
4793
|
+
type: "success" | "error" | "info" | "warning";
|
|
4788
4794
|
id?: number | undefined;
|
|
4789
4795
|
}[] | undefined;
|
|
4790
4796
|
required?: boolean | undefined;
|
|
@@ -4806,7 +4812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4806
4812
|
hint?: string | undefined;
|
|
4807
4813
|
messages?: {
|
|
4808
4814
|
text: string;
|
|
4809
|
-
type: "
|
|
4815
|
+
type: "success" | "error" | "info" | "warning";
|
|
4810
4816
|
id?: number | undefined;
|
|
4811
4817
|
}[] | undefined;
|
|
4812
4818
|
required?: boolean | undefined;
|
|
@@ -4825,7 +4831,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4825
4831
|
hint?: string | undefined;
|
|
4826
4832
|
messages?: {
|
|
4827
4833
|
text: string;
|
|
4828
|
-
type: "
|
|
4834
|
+
type: "success" | "error" | "info" | "warning";
|
|
4829
4835
|
id?: number | undefined;
|
|
4830
4836
|
}[] | undefined;
|
|
4831
4837
|
required?: boolean | undefined;
|
|
@@ -4838,6 +4844,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4838
4844
|
display_name?: string | undefined;
|
|
4839
4845
|
icon_url?: string | undefined;
|
|
4840
4846
|
href?: string | undefined;
|
|
4847
|
+
last_used?: boolean | undefined;
|
|
4848
|
+
last_used_label?: string | undefined;
|
|
4841
4849
|
}[] | undefined;
|
|
4842
4850
|
} | undefined;
|
|
4843
4851
|
} | {
|
|
@@ -4850,7 +4858,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4850
4858
|
hint?: string | undefined;
|
|
4851
4859
|
messages?: {
|
|
4852
4860
|
text: string;
|
|
4853
|
-
type: "
|
|
4861
|
+
type: "success" | "error" | "info" | "warning";
|
|
4854
4862
|
id?: number | undefined;
|
|
4855
4863
|
}[] | undefined;
|
|
4856
4864
|
required?: boolean | undefined;
|
|
@@ -4871,7 +4879,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4871
4879
|
hint?: string | undefined;
|
|
4872
4880
|
messages?: {
|
|
4873
4881
|
text: string;
|
|
4874
|
-
type: "
|
|
4882
|
+
type: "success" | "error" | "info" | "warning";
|
|
4875
4883
|
id?: number | undefined;
|
|
4876
4884
|
}[] | undefined;
|
|
4877
4885
|
required?: boolean | undefined;
|
|
@@ -4892,7 +4900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4892
4900
|
hint?: string | undefined;
|
|
4893
4901
|
messages?: {
|
|
4894
4902
|
text: string;
|
|
4895
|
-
type: "
|
|
4903
|
+
type: "success" | "error" | "info" | "warning";
|
|
4896
4904
|
id?: number | undefined;
|
|
4897
4905
|
}[] | undefined;
|
|
4898
4906
|
required?: boolean | undefined;
|
|
@@ -5123,7 +5131,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5123
5131
|
hint?: string | undefined;
|
|
5124
5132
|
messages?: {
|
|
5125
5133
|
text: string;
|
|
5126
|
-
type: "
|
|
5134
|
+
type: "success" | "error" | "info" | "warning";
|
|
5127
5135
|
id?: number | undefined;
|
|
5128
5136
|
}[] | undefined;
|
|
5129
5137
|
required?: boolean | undefined;
|
|
@@ -5141,7 +5149,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5141
5149
|
hint?: string | undefined;
|
|
5142
5150
|
messages?: {
|
|
5143
5151
|
text: string;
|
|
5144
|
-
type: "
|
|
5152
|
+
type: "success" | "error" | "info" | "warning";
|
|
5145
5153
|
id?: number | undefined;
|
|
5146
5154
|
}[] | undefined;
|
|
5147
5155
|
required?: boolean | undefined;
|
|
@@ -5165,7 +5173,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5165
5173
|
hint?: string | undefined;
|
|
5166
5174
|
messages?: {
|
|
5167
5175
|
text: string;
|
|
5168
|
-
type: "
|
|
5176
|
+
type: "success" | "error" | "info" | "warning";
|
|
5169
5177
|
id?: number | undefined;
|
|
5170
5178
|
}[] | undefined;
|
|
5171
5179
|
required?: boolean | undefined;
|
|
@@ -5189,7 +5197,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5189
5197
|
hint?: string | undefined;
|
|
5190
5198
|
messages?: {
|
|
5191
5199
|
text: string;
|
|
5192
|
-
type: "
|
|
5200
|
+
type: "success" | "error" | "info" | "warning";
|
|
5193
5201
|
id?: number | undefined;
|
|
5194
5202
|
}[] | undefined;
|
|
5195
5203
|
required?: boolean | undefined;
|
|
@@ -5213,7 +5221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5213
5221
|
hint?: string | undefined;
|
|
5214
5222
|
messages?: {
|
|
5215
5223
|
text: string;
|
|
5216
|
-
type: "
|
|
5224
|
+
type: "success" | "error" | "info" | "warning";
|
|
5217
5225
|
id?: number | undefined;
|
|
5218
5226
|
}[] | undefined;
|
|
5219
5227
|
required?: boolean | undefined;
|
|
@@ -5242,7 +5250,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5242
5250
|
hint?: string | undefined;
|
|
5243
5251
|
messages?: {
|
|
5244
5252
|
text: string;
|
|
5245
|
-
type: "
|
|
5253
|
+
type: "success" | "error" | "info" | "warning";
|
|
5246
5254
|
id?: number | undefined;
|
|
5247
5255
|
}[] | undefined;
|
|
5248
5256
|
required?: boolean | undefined;
|
|
@@ -5257,7 +5265,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5257
5265
|
hint?: string | undefined;
|
|
5258
5266
|
messages?: {
|
|
5259
5267
|
text: string;
|
|
5260
|
-
type: "
|
|
5268
|
+
type: "success" | "error" | "info" | "warning";
|
|
5261
5269
|
id?: number | undefined;
|
|
5262
5270
|
}[] | undefined;
|
|
5263
5271
|
required?: boolean | undefined;
|
|
@@ -5278,7 +5286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5278
5286
|
hint?: string | undefined;
|
|
5279
5287
|
messages?: {
|
|
5280
5288
|
text: string;
|
|
5281
|
-
type: "
|
|
5289
|
+
type: "success" | "error" | "info" | "warning";
|
|
5282
5290
|
id?: number | undefined;
|
|
5283
5291
|
}[] | undefined;
|
|
5284
5292
|
required?: boolean | undefined;
|
|
@@ -5303,7 +5311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5303
5311
|
hint?: string | undefined;
|
|
5304
5312
|
messages?: {
|
|
5305
5313
|
text: string;
|
|
5306
|
-
type: "
|
|
5314
|
+
type: "success" | "error" | "info" | "warning";
|
|
5307
5315
|
id?: number | undefined;
|
|
5308
5316
|
}[] | undefined;
|
|
5309
5317
|
required?: boolean | undefined;
|
|
@@ -5322,7 +5330,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5322
5330
|
hint?: string | undefined;
|
|
5323
5331
|
messages?: {
|
|
5324
5332
|
text: string;
|
|
5325
|
-
type: "
|
|
5333
|
+
type: "success" | "error" | "info" | "warning";
|
|
5326
5334
|
id?: number | undefined;
|
|
5327
5335
|
}[] | undefined;
|
|
5328
5336
|
required?: boolean | undefined;
|
|
@@ -5342,7 +5350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5342
5350
|
hint?: string | undefined;
|
|
5343
5351
|
messages?: {
|
|
5344
5352
|
text: string;
|
|
5345
|
-
type: "
|
|
5353
|
+
type: "success" | "error" | "info" | "warning";
|
|
5346
5354
|
id?: number | undefined;
|
|
5347
5355
|
}[] | undefined;
|
|
5348
5356
|
required?: boolean | undefined;
|
|
@@ -5361,7 +5369,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5361
5369
|
hint?: string | undefined;
|
|
5362
5370
|
messages?: {
|
|
5363
5371
|
text: string;
|
|
5364
|
-
type: "
|
|
5372
|
+
type: "success" | "error" | "info" | "warning";
|
|
5365
5373
|
id?: number | undefined;
|
|
5366
5374
|
}[] | undefined;
|
|
5367
5375
|
required?: boolean | undefined;
|
|
@@ -5383,7 +5391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5383
5391
|
hint?: string | undefined;
|
|
5384
5392
|
messages?: {
|
|
5385
5393
|
text: string;
|
|
5386
|
-
type: "
|
|
5394
|
+
type: "success" | "error" | "info" | "warning";
|
|
5387
5395
|
id?: number | undefined;
|
|
5388
5396
|
}[] | undefined;
|
|
5389
5397
|
required?: boolean | undefined;
|
|
@@ -5405,7 +5413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5405
5413
|
hint?: string | undefined;
|
|
5406
5414
|
messages?: {
|
|
5407
5415
|
text: string;
|
|
5408
|
-
type: "
|
|
5416
|
+
type: "success" | "error" | "info" | "warning";
|
|
5409
5417
|
id?: number | undefined;
|
|
5410
5418
|
}[] | undefined;
|
|
5411
5419
|
required?: boolean | undefined;
|
|
@@ -5424,7 +5432,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5424
5432
|
hint?: string | undefined;
|
|
5425
5433
|
messages?: {
|
|
5426
5434
|
text: string;
|
|
5427
|
-
type: "
|
|
5435
|
+
type: "success" | "error" | "info" | "warning";
|
|
5428
5436
|
id?: number | undefined;
|
|
5429
5437
|
}[] | undefined;
|
|
5430
5438
|
required?: boolean | undefined;
|
|
@@ -5437,6 +5445,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5437
5445
|
display_name?: string | undefined;
|
|
5438
5446
|
icon_url?: string | undefined;
|
|
5439
5447
|
href?: string | undefined;
|
|
5448
|
+
last_used?: boolean | undefined;
|
|
5449
|
+
last_used_label?: string | undefined;
|
|
5440
5450
|
}[] | undefined;
|
|
5441
5451
|
} | undefined;
|
|
5442
5452
|
} | {
|
|
@@ -5449,7 +5459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5449
5459
|
hint?: string | undefined;
|
|
5450
5460
|
messages?: {
|
|
5451
5461
|
text: string;
|
|
5452
|
-
type: "
|
|
5462
|
+
type: "success" | "error" | "info" | "warning";
|
|
5453
5463
|
id?: number | undefined;
|
|
5454
5464
|
}[] | undefined;
|
|
5455
5465
|
required?: boolean | undefined;
|
|
@@ -5470,7 +5480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5470
5480
|
hint?: string | undefined;
|
|
5471
5481
|
messages?: {
|
|
5472
5482
|
text: string;
|
|
5473
|
-
type: "
|
|
5483
|
+
type: "success" | "error" | "info" | "warning";
|
|
5474
5484
|
id?: number | undefined;
|
|
5475
5485
|
}[] | undefined;
|
|
5476
5486
|
required?: boolean | undefined;
|
|
@@ -5491,7 +5501,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5491
5501
|
hint?: string | undefined;
|
|
5492
5502
|
messages?: {
|
|
5493
5503
|
text: string;
|
|
5494
|
-
type: "
|
|
5504
|
+
type: "success" | "error" | "info" | "warning";
|
|
5495
5505
|
id?: number | undefined;
|
|
5496
5506
|
}[] | undefined;
|
|
5497
5507
|
required?: boolean | undefined;
|
|
@@ -5724,7 +5734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5724
5734
|
hint?: string | undefined;
|
|
5725
5735
|
messages?: {
|
|
5726
5736
|
text: string;
|
|
5727
|
-
type: "
|
|
5737
|
+
type: "success" | "error" | "info" | "warning";
|
|
5728
5738
|
id?: number | undefined;
|
|
5729
5739
|
}[] | undefined;
|
|
5730
5740
|
required?: boolean | undefined;
|
|
@@ -5742,7 +5752,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5742
5752
|
hint?: string | undefined;
|
|
5743
5753
|
messages?: {
|
|
5744
5754
|
text: string;
|
|
5745
|
-
type: "
|
|
5755
|
+
type: "success" | "error" | "info" | "warning";
|
|
5746
5756
|
id?: number | undefined;
|
|
5747
5757
|
}[] | undefined;
|
|
5748
5758
|
required?: boolean | undefined;
|
|
@@ -5766,7 +5776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5766
5776
|
hint?: string | undefined;
|
|
5767
5777
|
messages?: {
|
|
5768
5778
|
text: string;
|
|
5769
|
-
type: "
|
|
5779
|
+
type: "success" | "error" | "info" | "warning";
|
|
5770
5780
|
id?: number | undefined;
|
|
5771
5781
|
}[] | undefined;
|
|
5772
5782
|
required?: boolean | undefined;
|
|
@@ -5790,7 +5800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5790
5800
|
hint?: string | undefined;
|
|
5791
5801
|
messages?: {
|
|
5792
5802
|
text: string;
|
|
5793
|
-
type: "
|
|
5803
|
+
type: "success" | "error" | "info" | "warning";
|
|
5794
5804
|
id?: number | undefined;
|
|
5795
5805
|
}[] | undefined;
|
|
5796
5806
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5824,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5814
5824
|
hint?: string | undefined;
|
|
5815
5825
|
messages?: {
|
|
5816
5826
|
text: string;
|
|
5817
|
-
type: "
|
|
5827
|
+
type: "success" | "error" | "info" | "warning";
|
|
5818
5828
|
id?: number | undefined;
|
|
5819
5829
|
}[] | undefined;
|
|
5820
5830
|
required?: boolean | undefined;
|
|
@@ -5839,7 +5849,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5839
5849
|
hint?: string | undefined;
|
|
5840
5850
|
messages?: {
|
|
5841
5851
|
text: string;
|
|
5842
|
-
type: "
|
|
5852
|
+
type: "success" | "error" | "info" | "warning";
|
|
5843
5853
|
id?: number | undefined;
|
|
5844
5854
|
}[] | undefined;
|
|
5845
5855
|
required?: boolean | undefined;
|
|
@@ -5854,7 +5864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5854
5864
|
hint?: string | undefined;
|
|
5855
5865
|
messages?: {
|
|
5856
5866
|
text: string;
|
|
5857
|
-
type: "
|
|
5867
|
+
type: "success" | "error" | "info" | "warning";
|
|
5858
5868
|
id?: number | undefined;
|
|
5859
5869
|
}[] | undefined;
|
|
5860
5870
|
required?: boolean | undefined;
|
|
@@ -5875,7 +5885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5875
5885
|
hint?: string | undefined;
|
|
5876
5886
|
messages?: {
|
|
5877
5887
|
text: string;
|
|
5878
|
-
type: "
|
|
5888
|
+
type: "success" | "error" | "info" | "warning";
|
|
5879
5889
|
id?: number | undefined;
|
|
5880
5890
|
}[] | undefined;
|
|
5881
5891
|
required?: boolean | undefined;
|
|
@@ -5900,7 +5910,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5900
5910
|
hint?: string | undefined;
|
|
5901
5911
|
messages?: {
|
|
5902
5912
|
text: string;
|
|
5903
|
-
type: "
|
|
5913
|
+
type: "success" | "error" | "info" | "warning";
|
|
5904
5914
|
id?: number | undefined;
|
|
5905
5915
|
}[] | undefined;
|
|
5906
5916
|
required?: boolean | undefined;
|
|
@@ -5919,7 +5929,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5919
5929
|
hint?: string | undefined;
|
|
5920
5930
|
messages?: {
|
|
5921
5931
|
text: string;
|
|
5922
|
-
type: "
|
|
5932
|
+
type: "success" | "error" | "info" | "warning";
|
|
5923
5933
|
id?: number | undefined;
|
|
5924
5934
|
}[] | undefined;
|
|
5925
5935
|
required?: boolean | undefined;
|
|
@@ -5939,7 +5949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5939
5949
|
hint?: string | undefined;
|
|
5940
5950
|
messages?: {
|
|
5941
5951
|
text: string;
|
|
5942
|
-
type: "
|
|
5952
|
+
type: "success" | "error" | "info" | "warning";
|
|
5943
5953
|
id?: number | undefined;
|
|
5944
5954
|
}[] | undefined;
|
|
5945
5955
|
required?: boolean | undefined;
|
|
@@ -5958,7 +5968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5958
5968
|
hint?: string | undefined;
|
|
5959
5969
|
messages?: {
|
|
5960
5970
|
text: string;
|
|
5961
|
-
type: "
|
|
5971
|
+
type: "success" | "error" | "info" | "warning";
|
|
5962
5972
|
id?: number | undefined;
|
|
5963
5973
|
}[] | undefined;
|
|
5964
5974
|
required?: boolean | undefined;
|
|
@@ -5980,7 +5990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5980
5990
|
hint?: string | undefined;
|
|
5981
5991
|
messages?: {
|
|
5982
5992
|
text: string;
|
|
5983
|
-
type: "
|
|
5993
|
+
type: "success" | "error" | "info" | "warning";
|
|
5984
5994
|
id?: number | undefined;
|
|
5985
5995
|
}[] | undefined;
|
|
5986
5996
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6002
6012
|
hint?: string | undefined;
|
|
6003
6013
|
messages?: {
|
|
6004
6014
|
text: string;
|
|
6005
|
-
type: "
|
|
6015
|
+
type: "success" | "error" | "info" | "warning";
|
|
6006
6016
|
id?: number | undefined;
|
|
6007
6017
|
}[] | undefined;
|
|
6008
6018
|
required?: boolean | undefined;
|
|
@@ -6021,7 +6031,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6021
6031
|
hint?: string | undefined;
|
|
6022
6032
|
messages?: {
|
|
6023
6033
|
text: string;
|
|
6024
|
-
type: "
|
|
6034
|
+
type: "success" | "error" | "info" | "warning";
|
|
6025
6035
|
id?: number | undefined;
|
|
6026
6036
|
}[] | undefined;
|
|
6027
6037
|
required?: boolean | undefined;
|
|
@@ -6034,6 +6044,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6034
6044
|
display_name?: string | undefined;
|
|
6035
6045
|
icon_url?: string | undefined;
|
|
6036
6046
|
href?: string | undefined;
|
|
6047
|
+
last_used?: boolean | undefined;
|
|
6048
|
+
last_used_label?: string | undefined;
|
|
6037
6049
|
}[] | undefined;
|
|
6038
6050
|
} | undefined;
|
|
6039
6051
|
} | {
|
|
@@ -6046,7 +6058,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6046
6058
|
hint?: string | undefined;
|
|
6047
6059
|
messages?: {
|
|
6048
6060
|
text: string;
|
|
6049
|
-
type: "
|
|
6061
|
+
type: "success" | "error" | "info" | "warning";
|
|
6050
6062
|
id?: number | undefined;
|
|
6051
6063
|
}[] | undefined;
|
|
6052
6064
|
required?: boolean | undefined;
|
|
@@ -6067,7 +6079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6067
6079
|
hint?: string | undefined;
|
|
6068
6080
|
messages?: {
|
|
6069
6081
|
text: string;
|
|
6070
|
-
type: "
|
|
6082
|
+
type: "success" | "error" | "info" | "warning";
|
|
6071
6083
|
id?: number | undefined;
|
|
6072
6084
|
}[] | undefined;
|
|
6073
6085
|
required?: boolean | undefined;
|
|
@@ -6088,7 +6100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6088
6100
|
hint?: string | undefined;
|
|
6089
6101
|
messages?: {
|
|
6090
6102
|
text: string;
|
|
6091
|
-
type: "
|
|
6103
|
+
type: "success" | "error" | "info" | "warning";
|
|
6092
6104
|
id?: number | undefined;
|
|
6093
6105
|
}[] | undefined;
|
|
6094
6106
|
required?: boolean | undefined;
|
|
@@ -6319,7 +6331,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6319
6331
|
hint?: string | undefined;
|
|
6320
6332
|
messages?: {
|
|
6321
6333
|
text: string;
|
|
6322
|
-
type: "
|
|
6334
|
+
type: "success" | "error" | "info" | "warning";
|
|
6323
6335
|
id?: number | undefined;
|
|
6324
6336
|
}[] | undefined;
|
|
6325
6337
|
required?: boolean | undefined;
|
|
@@ -6337,7 +6349,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6337
6349
|
hint?: string | undefined;
|
|
6338
6350
|
messages?: {
|
|
6339
6351
|
text: string;
|
|
6340
|
-
type: "
|
|
6352
|
+
type: "success" | "error" | "info" | "warning";
|
|
6341
6353
|
id?: number | undefined;
|
|
6342
6354
|
}[] | undefined;
|
|
6343
6355
|
required?: boolean | undefined;
|
|
@@ -6361,7 +6373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6361
6373
|
hint?: string | undefined;
|
|
6362
6374
|
messages?: {
|
|
6363
6375
|
text: string;
|
|
6364
|
-
type: "
|
|
6376
|
+
type: "success" | "error" | "info" | "warning";
|
|
6365
6377
|
id?: number | undefined;
|
|
6366
6378
|
}[] | undefined;
|
|
6367
6379
|
required?: boolean | undefined;
|
|
@@ -6385,7 +6397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6385
6397
|
hint?: string | undefined;
|
|
6386
6398
|
messages?: {
|
|
6387
6399
|
text: string;
|
|
6388
|
-
type: "
|
|
6400
|
+
type: "success" | "error" | "info" | "warning";
|
|
6389
6401
|
id?: number | undefined;
|
|
6390
6402
|
}[] | undefined;
|
|
6391
6403
|
required?: boolean | undefined;
|
|
@@ -6409,7 +6421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6409
6421
|
hint?: string | undefined;
|
|
6410
6422
|
messages?: {
|
|
6411
6423
|
text: string;
|
|
6412
|
-
type: "
|
|
6424
|
+
type: "success" | "error" | "info" | "warning";
|
|
6413
6425
|
id?: number | undefined;
|
|
6414
6426
|
}[] | undefined;
|
|
6415
6427
|
required?: boolean | undefined;
|
|
@@ -6438,7 +6450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6438
6450
|
hint?: string | undefined;
|
|
6439
6451
|
messages?: {
|
|
6440
6452
|
text: string;
|
|
6441
|
-
type: "
|
|
6453
|
+
type: "success" | "error" | "info" | "warning";
|
|
6442
6454
|
id?: number | undefined;
|
|
6443
6455
|
}[] | undefined;
|
|
6444
6456
|
required?: boolean | undefined;
|
|
@@ -6453,7 +6465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6453
6465
|
hint?: string | undefined;
|
|
6454
6466
|
messages?: {
|
|
6455
6467
|
text: string;
|
|
6456
|
-
type: "
|
|
6468
|
+
type: "success" | "error" | "info" | "warning";
|
|
6457
6469
|
id?: number | undefined;
|
|
6458
6470
|
}[] | undefined;
|
|
6459
6471
|
required?: boolean | undefined;
|
|
@@ -6474,7 +6486,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6474
6486
|
hint?: string | undefined;
|
|
6475
6487
|
messages?: {
|
|
6476
6488
|
text: string;
|
|
6477
|
-
type: "
|
|
6489
|
+
type: "success" | "error" | "info" | "warning";
|
|
6478
6490
|
id?: number | undefined;
|
|
6479
6491
|
}[] | undefined;
|
|
6480
6492
|
required?: boolean | undefined;
|
|
@@ -6499,7 +6511,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6499
6511
|
hint?: string | undefined;
|
|
6500
6512
|
messages?: {
|
|
6501
6513
|
text: string;
|
|
6502
|
-
type: "
|
|
6514
|
+
type: "success" | "error" | "info" | "warning";
|
|
6503
6515
|
id?: number | undefined;
|
|
6504
6516
|
}[] | undefined;
|
|
6505
6517
|
required?: boolean | undefined;
|
|
@@ -6518,7 +6530,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6518
6530
|
hint?: string | undefined;
|
|
6519
6531
|
messages?: {
|
|
6520
6532
|
text: string;
|
|
6521
|
-
type: "
|
|
6533
|
+
type: "success" | "error" | "info" | "warning";
|
|
6522
6534
|
id?: number | undefined;
|
|
6523
6535
|
}[] | undefined;
|
|
6524
6536
|
required?: boolean | undefined;
|
|
@@ -6538,7 +6550,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6538
6550
|
hint?: string | undefined;
|
|
6539
6551
|
messages?: {
|
|
6540
6552
|
text: string;
|
|
6541
|
-
type: "
|
|
6553
|
+
type: "success" | "error" | "info" | "warning";
|
|
6542
6554
|
id?: number | undefined;
|
|
6543
6555
|
}[] | undefined;
|
|
6544
6556
|
required?: boolean | undefined;
|
|
@@ -6557,7 +6569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6557
6569
|
hint?: string | undefined;
|
|
6558
6570
|
messages?: {
|
|
6559
6571
|
text: string;
|
|
6560
|
-
type: "
|
|
6572
|
+
type: "success" | "error" | "info" | "warning";
|
|
6561
6573
|
id?: number | undefined;
|
|
6562
6574
|
}[] | undefined;
|
|
6563
6575
|
required?: boolean | undefined;
|
|
@@ -6579,7 +6591,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6579
6591
|
hint?: string | undefined;
|
|
6580
6592
|
messages?: {
|
|
6581
6593
|
text: string;
|
|
6582
|
-
type: "
|
|
6594
|
+
type: "success" | "error" | "info" | "warning";
|
|
6583
6595
|
id?: number | undefined;
|
|
6584
6596
|
}[] | undefined;
|
|
6585
6597
|
required?: boolean | undefined;
|
|
@@ -6601,7 +6613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6613
|
hint?: string | undefined;
|
|
6602
6614
|
messages?: {
|
|
6603
6615
|
text: string;
|
|
6604
|
-
type: "
|
|
6616
|
+
type: "success" | "error" | "info" | "warning";
|
|
6605
6617
|
id?: number | undefined;
|
|
6606
6618
|
}[] | undefined;
|
|
6607
6619
|
required?: boolean | undefined;
|
|
@@ -6620,7 +6632,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6620
6632
|
hint?: string | undefined;
|
|
6621
6633
|
messages?: {
|
|
6622
6634
|
text: string;
|
|
6623
|
-
type: "
|
|
6635
|
+
type: "success" | "error" | "info" | "warning";
|
|
6624
6636
|
id?: number | undefined;
|
|
6625
6637
|
}[] | undefined;
|
|
6626
6638
|
required?: boolean | undefined;
|
|
@@ -6633,6 +6645,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6633
6645
|
display_name?: string | undefined;
|
|
6634
6646
|
icon_url?: string | undefined;
|
|
6635
6647
|
href?: string | undefined;
|
|
6648
|
+
last_used?: boolean | undefined;
|
|
6649
|
+
last_used_label?: string | undefined;
|
|
6636
6650
|
}[] | undefined;
|
|
6637
6651
|
} | undefined;
|
|
6638
6652
|
} | {
|
|
@@ -6645,7 +6659,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6645
6659
|
hint?: string | undefined;
|
|
6646
6660
|
messages?: {
|
|
6647
6661
|
text: string;
|
|
6648
|
-
type: "
|
|
6662
|
+
type: "success" | "error" | "info" | "warning";
|
|
6649
6663
|
id?: number | undefined;
|
|
6650
6664
|
}[] | undefined;
|
|
6651
6665
|
required?: boolean | undefined;
|
|
@@ -6666,7 +6680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6666
6680
|
hint?: string | undefined;
|
|
6667
6681
|
messages?: {
|
|
6668
6682
|
text: string;
|
|
6669
|
-
type: "
|
|
6683
|
+
type: "success" | "error" | "info" | "warning";
|
|
6670
6684
|
id?: number | undefined;
|
|
6671
6685
|
}[] | undefined;
|
|
6672
6686
|
required?: boolean | undefined;
|
|
@@ -6687,7 +6701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6687
6701
|
hint?: string | undefined;
|
|
6688
6702
|
messages?: {
|
|
6689
6703
|
text: string;
|
|
6690
|
-
type: "
|
|
6704
|
+
type: "success" | "error" | "info" | "warning";
|
|
6691
6705
|
id?: number | undefined;
|
|
6692
6706
|
}[] | undefined;
|
|
6693
6707
|
required?: boolean | undefined;
|
|
@@ -6882,6 +6896,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6882
6896
|
universal_login_experience: "new" | "classic";
|
|
6883
6897
|
identifier_first: boolean;
|
|
6884
6898
|
password_first: boolean;
|
|
6899
|
+
show_last_used_connection: boolean;
|
|
6885
6900
|
webauthn_platform_first_factor: boolean;
|
|
6886
6901
|
};
|
|
6887
6902
|
outputFormat: "json";
|
|
@@ -6900,6 +6915,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6900
6915
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
6901
6916
|
identifier_first?: boolean | undefined;
|
|
6902
6917
|
password_first?: boolean | undefined;
|
|
6918
|
+
show_last_used_connection?: boolean | undefined;
|
|
6903
6919
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
6904
6920
|
};
|
|
6905
6921
|
};
|
|
@@ -6917,7 +6933,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6917
6933
|
};
|
|
6918
6934
|
};
|
|
6919
6935
|
output: {
|
|
6920
|
-
prompt: "
|
|
6936
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6921
6937
|
language: string;
|
|
6922
6938
|
}[];
|
|
6923
6939
|
outputFormat: "json";
|
|
@@ -6955,7 +6971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6955
6971
|
$get: {
|
|
6956
6972
|
input: {
|
|
6957
6973
|
param: {
|
|
6958
|
-
prompt: "
|
|
6974
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6959
6975
|
language: string;
|
|
6960
6976
|
};
|
|
6961
6977
|
} & {
|
|
@@ -6977,7 +6993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6977
6993
|
$put: {
|
|
6978
6994
|
input: {
|
|
6979
6995
|
param: {
|
|
6980
|
-
prompt: "
|
|
6996
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6981
6997
|
language: string;
|
|
6982
6998
|
};
|
|
6983
6999
|
} & {
|
|
@@ -7001,7 +7017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7001
7017
|
$delete: {
|
|
7002
7018
|
input: {
|
|
7003
7019
|
param: {
|
|
7004
|
-
prompt: "
|
|
7020
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7005
7021
|
language: string;
|
|
7006
7022
|
};
|
|
7007
7023
|
} & {
|
|
@@ -7864,7 +7880,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7864
7880
|
};
|
|
7865
7881
|
} | {
|
|
7866
7882
|
mode: "inline";
|
|
7867
|
-
status: "
|
|
7883
|
+
status: "success" | "error";
|
|
7868
7884
|
connection_id: string;
|
|
7869
7885
|
connection_name: string;
|
|
7870
7886
|
strategy: string;
|
|
@@ -8504,7 +8520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8504
8520
|
log_type: string;
|
|
8505
8521
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8506
8522
|
actor: {
|
|
8507
|
-
type: "client_credentials" | "user" | "
|
|
8523
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
8508
8524
|
id?: string | undefined;
|
|
8509
8525
|
email?: string | undefined;
|
|
8510
8526
|
org_id?: string | undefined;
|
|
@@ -8815,7 +8831,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8815
8831
|
created_at: string;
|
|
8816
8832
|
updated_at: string;
|
|
8817
8833
|
name: string;
|
|
8818
|
-
provider: "auth0" | "
|
|
8834
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8819
8835
|
connection: string;
|
|
8820
8836
|
enabled: boolean;
|
|
8821
8837
|
credentials: {
|
|
@@ -8847,7 +8863,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8847
8863
|
created_at: string;
|
|
8848
8864
|
updated_at: string;
|
|
8849
8865
|
name: string;
|
|
8850
|
-
provider: "auth0" | "
|
|
8866
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8851
8867
|
connection: string;
|
|
8852
8868
|
enabled: boolean;
|
|
8853
8869
|
credentials: {
|
|
@@ -8873,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8873
8889
|
} & {
|
|
8874
8890
|
json: {
|
|
8875
8891
|
name: string;
|
|
8876
|
-
provider: "auth0" | "
|
|
8892
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8877
8893
|
connection: string;
|
|
8878
8894
|
credentials: {
|
|
8879
8895
|
domain: string;
|
|
@@ -8890,7 +8906,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8890
8906
|
created_at: string;
|
|
8891
8907
|
updated_at: string;
|
|
8892
8908
|
name: string;
|
|
8893
|
-
provider: "auth0" | "
|
|
8909
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8894
8910
|
connection: string;
|
|
8895
8911
|
enabled: boolean;
|
|
8896
8912
|
credentials: {
|
|
@@ -8921,7 +8937,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8921
8937
|
json: {
|
|
8922
8938
|
id?: string | undefined;
|
|
8923
8939
|
name?: string | undefined;
|
|
8924
|
-
provider?: "auth0" | "
|
|
8940
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8925
8941
|
connection?: string | undefined;
|
|
8926
8942
|
enabled?: boolean | undefined;
|
|
8927
8943
|
credentials?: {
|
|
@@ -8937,7 +8953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8937
8953
|
created_at: string;
|
|
8938
8954
|
updated_at: string;
|
|
8939
8955
|
name: string;
|
|
8940
|
-
provider: "auth0" | "
|
|
8956
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8941
8957
|
connection: string;
|
|
8942
8958
|
enabled: boolean;
|
|
8943
8959
|
credentials: {
|
|
@@ -9155,7 +9171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9155
9171
|
};
|
|
9156
9172
|
};
|
|
9157
9173
|
output: {
|
|
9158
|
-
type: "
|
|
9174
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9159
9175
|
date: string;
|
|
9160
9176
|
isMobile: boolean;
|
|
9161
9177
|
log_id: string;
|
|
@@ -9194,7 +9210,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9194
9210
|
limit: number;
|
|
9195
9211
|
length: number;
|
|
9196
9212
|
logs: {
|
|
9197
|
-
type: "
|
|
9213
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9198
9214
|
date: string;
|
|
9199
9215
|
isMobile: boolean;
|
|
9200
9216
|
log_id: string;
|
|
@@ -9233,7 +9249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9233
9249
|
next?: string | undefined;
|
|
9234
9250
|
} | {
|
|
9235
9251
|
logs: {
|
|
9236
|
-
type: "
|
|
9252
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9237
9253
|
date: string;
|
|
9238
9254
|
isMobile: boolean;
|
|
9239
9255
|
log_id: string;
|
|
@@ -9287,7 +9303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9287
9303
|
};
|
|
9288
9304
|
};
|
|
9289
9305
|
output: {
|
|
9290
|
-
type: "
|
|
9306
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9291
9307
|
date: string;
|
|
9292
9308
|
isMobile: boolean;
|
|
9293
9309
|
log_id: string;
|
|
@@ -10812,6 +10828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10812
10828
|
verify_email?: boolean | undefined;
|
|
10813
10829
|
last_ip?: string | undefined;
|
|
10814
10830
|
last_login?: string | undefined;
|
|
10831
|
+
blocked?: boolean | undefined;
|
|
10815
10832
|
registration_completed_at?: string | undefined;
|
|
10816
10833
|
email?: string | undefined;
|
|
10817
10834
|
identities?: {
|
|
@@ -10997,6 +11014,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10997
11014
|
verify_email?: boolean | undefined;
|
|
10998
11015
|
last_ip?: string | undefined;
|
|
10999
11016
|
last_login?: string | undefined;
|
|
11017
|
+
blocked?: boolean | undefined;
|
|
11000
11018
|
identities?: {
|
|
11001
11019
|
connection: string;
|
|
11002
11020
|
user_id: string;
|
|
@@ -11067,6 +11085,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11067
11085
|
verify_email?: boolean | undefined;
|
|
11068
11086
|
last_ip?: string | undefined;
|
|
11069
11087
|
last_login?: string | undefined;
|
|
11088
|
+
blocked?: boolean | undefined;
|
|
11070
11089
|
identities?: {
|
|
11071
11090
|
connection: string;
|
|
11072
11091
|
user_id: string;
|
|
@@ -11137,6 +11156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11137
11156
|
verify_email?: boolean | undefined;
|
|
11138
11157
|
last_ip?: string | undefined;
|
|
11139
11158
|
last_login?: string | undefined;
|
|
11159
|
+
blocked?: boolean | undefined;
|
|
11140
11160
|
identities?: {
|
|
11141
11161
|
connection: string;
|
|
11142
11162
|
user_id: string;
|
|
@@ -11222,6 +11242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11222
11242
|
verify_email?: boolean | undefined;
|
|
11223
11243
|
last_ip?: string | undefined;
|
|
11224
11244
|
last_login?: string | undefined;
|
|
11245
|
+
blocked?: boolean | undefined;
|
|
11225
11246
|
identities?: {
|
|
11226
11247
|
connection: string;
|
|
11227
11248
|
user_id: string;
|
|
@@ -11315,6 +11336,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11315
11336
|
user_id?: string | undefined;
|
|
11316
11337
|
provider?: string | undefined;
|
|
11317
11338
|
is_social?: boolean | undefined;
|
|
11339
|
+
blocked?: boolean | undefined;
|
|
11318
11340
|
registration_completed_at?: string | undefined;
|
|
11319
11341
|
password?: string | undefined;
|
|
11320
11342
|
};
|
|
@@ -11360,6 +11382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11360
11382
|
verify_email?: boolean | undefined;
|
|
11361
11383
|
last_ip?: string | undefined;
|
|
11362
11384
|
last_login?: string | undefined;
|
|
11385
|
+
blocked?: boolean | undefined;
|
|
11363
11386
|
identities?: {
|
|
11364
11387
|
connection: string;
|
|
11365
11388
|
user_id: string;
|
|
@@ -11436,6 +11459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11436
11459
|
provider?: string | undefined;
|
|
11437
11460
|
connection?: string | undefined;
|
|
11438
11461
|
is_social?: boolean | undefined;
|
|
11462
|
+
blocked?: boolean | undefined;
|
|
11439
11463
|
registration_completed_at?: string | undefined;
|
|
11440
11464
|
verify_email?: boolean | undefined;
|
|
11441
11465
|
password?: string | undefined;
|
|
@@ -11553,6 +11577,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11553
11577
|
verify_email?: boolean | undefined;
|
|
11554
11578
|
last_ip?: string | undefined;
|
|
11555
11579
|
last_login?: string | undefined;
|
|
11580
|
+
blocked?: boolean | undefined;
|
|
11556
11581
|
identities?: {
|
|
11557
11582
|
connection: string;
|
|
11558
11583
|
user_id: string;
|
|
@@ -11742,7 +11767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11742
11767
|
};
|
|
11743
11768
|
};
|
|
11744
11769
|
output: {
|
|
11745
|
-
type: "
|
|
11770
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11746
11771
|
date: string;
|
|
11747
11772
|
isMobile: boolean;
|
|
11748
11773
|
log_id: string;
|
|
@@ -11781,7 +11806,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11781
11806
|
limit: number;
|
|
11782
11807
|
length: number;
|
|
11783
11808
|
logs: {
|
|
11784
|
-
type: "
|
|
11809
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11785
11810
|
date: string;
|
|
11786
11811
|
isMobile: boolean;
|
|
11787
11812
|
log_id: string;
|
|
@@ -12100,7 +12125,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12100
12125
|
};
|
|
12101
12126
|
} & {
|
|
12102
12127
|
json: {
|
|
12103
|
-
template: "
|
|
12128
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12104
12129
|
body: string;
|
|
12105
12130
|
from: string;
|
|
12106
12131
|
subject: string;
|
|
@@ -12121,7 +12146,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12121
12146
|
};
|
|
12122
12147
|
} & {
|
|
12123
12148
|
json: {
|
|
12124
|
-
template: "
|
|
12149
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12125
12150
|
body: string;
|
|
12126
12151
|
from: string;
|
|
12127
12152
|
subject: string;
|
|
@@ -12133,7 +12158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12133
12158
|
};
|
|
12134
12159
|
};
|
|
12135
12160
|
output: {
|
|
12136
|
-
template: "
|
|
12161
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12137
12162
|
body: string;
|
|
12138
12163
|
from: string;
|
|
12139
12164
|
subject: string;
|
|
@@ -12156,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12156
12181
|
};
|
|
12157
12182
|
};
|
|
12158
12183
|
output: {
|
|
12159
|
-
name: "
|
|
12184
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12160
12185
|
body: string;
|
|
12161
12186
|
subject: string;
|
|
12162
12187
|
}[];
|
|
@@ -12169,7 +12194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12169
12194
|
$get: {
|
|
12170
12195
|
input: {
|
|
12171
12196
|
param: {
|
|
12172
|
-
templateName: "
|
|
12197
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12173
12198
|
};
|
|
12174
12199
|
} & {
|
|
12175
12200
|
header: {
|
|
@@ -12182,7 +12207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12182
12207
|
} | {
|
|
12183
12208
|
input: {
|
|
12184
12209
|
param: {
|
|
12185
|
-
templateName: "
|
|
12210
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12186
12211
|
};
|
|
12187
12212
|
} & {
|
|
12188
12213
|
header: {
|
|
@@ -12190,7 +12215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12190
12215
|
};
|
|
12191
12216
|
};
|
|
12192
12217
|
output: {
|
|
12193
|
-
template: "
|
|
12218
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12194
12219
|
body: string;
|
|
12195
12220
|
from: string;
|
|
12196
12221
|
subject: string;
|
|
@@ -12209,7 +12234,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12209
12234
|
$put: {
|
|
12210
12235
|
input: {
|
|
12211
12236
|
param: {
|
|
12212
|
-
templateName: "
|
|
12237
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12213
12238
|
};
|
|
12214
12239
|
} & {
|
|
12215
12240
|
header: {
|
|
@@ -12217,7 +12242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12217
12242
|
};
|
|
12218
12243
|
} & {
|
|
12219
12244
|
json: {
|
|
12220
|
-
template: "
|
|
12245
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12221
12246
|
body: string;
|
|
12222
12247
|
subject: string;
|
|
12223
12248
|
syntax?: "liquid" | undefined;
|
|
@@ -12229,7 +12254,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12229
12254
|
};
|
|
12230
12255
|
};
|
|
12231
12256
|
output: {
|
|
12232
|
-
template: "
|
|
12257
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12233
12258
|
body: string;
|
|
12234
12259
|
from: string;
|
|
12235
12260
|
subject: string;
|
|
@@ -12248,7 +12273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12248
12273
|
$patch: {
|
|
12249
12274
|
input: {
|
|
12250
12275
|
param: {
|
|
12251
|
-
templateName: "
|
|
12276
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12252
12277
|
};
|
|
12253
12278
|
} & {
|
|
12254
12279
|
header: {
|
|
@@ -12256,7 +12281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12256
12281
|
};
|
|
12257
12282
|
} & {
|
|
12258
12283
|
json: {
|
|
12259
|
-
template?: "
|
|
12284
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12260
12285
|
body?: string | undefined;
|
|
12261
12286
|
from?: string | undefined;
|
|
12262
12287
|
subject?: string | undefined;
|
|
@@ -12273,7 +12298,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12273
12298
|
} | {
|
|
12274
12299
|
input: {
|
|
12275
12300
|
param: {
|
|
12276
|
-
templateName: "
|
|
12301
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12277
12302
|
};
|
|
12278
12303
|
} & {
|
|
12279
12304
|
header: {
|
|
@@ -12281,7 +12306,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12281
12306
|
};
|
|
12282
12307
|
} & {
|
|
12283
12308
|
json: {
|
|
12284
|
-
template?: "
|
|
12309
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12285
12310
|
body?: string | undefined;
|
|
12286
12311
|
from?: string | undefined;
|
|
12287
12312
|
subject?: string | undefined;
|
|
@@ -12293,7 +12318,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12293
12318
|
};
|
|
12294
12319
|
};
|
|
12295
12320
|
output: {
|
|
12296
|
-
template: "
|
|
12321
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12297
12322
|
body: string;
|
|
12298
12323
|
from: string;
|
|
12299
12324
|
subject: string;
|
|
@@ -12312,7 +12337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12312
12337
|
$delete: {
|
|
12313
12338
|
input: {
|
|
12314
12339
|
param: {
|
|
12315
|
-
templateName: "
|
|
12340
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12316
12341
|
};
|
|
12317
12342
|
} & {
|
|
12318
12343
|
header: {
|
|
@@ -12325,7 +12350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12325
12350
|
} | {
|
|
12326
12351
|
input: {
|
|
12327
12352
|
param: {
|
|
12328
|
-
templateName: "
|
|
12353
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12329
12354
|
};
|
|
12330
12355
|
} & {
|
|
12331
12356
|
header: {
|
|
@@ -12342,7 +12367,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12342
12367
|
$post: {
|
|
12343
12368
|
input: {
|
|
12344
12369
|
param: {
|
|
12345
|
-
templateName: "
|
|
12370
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12346
12371
|
};
|
|
12347
12372
|
} & {
|
|
12348
12373
|
header: {
|
|
@@ -13294,7 +13319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13294
13319
|
} & {
|
|
13295
13320
|
json: {
|
|
13296
13321
|
body?: string | undefined;
|
|
13297
|
-
screen?: "
|
|
13322
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
13298
13323
|
branding?: {
|
|
13299
13324
|
colors?: {
|
|
13300
13325
|
primary: string;
|
|
@@ -13463,7 +13488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13463
13488
|
json: {
|
|
13464
13489
|
bindings: {
|
|
13465
13490
|
ref: {
|
|
13466
|
-
type?: "
|
|
13491
|
+
type?: "action_name" | "action_id" | undefined;
|
|
13467
13492
|
value?: string | undefined;
|
|
13468
13493
|
id?: string | undefined;
|
|
13469
13494
|
name?: string | undefined;
|
|
@@ -13585,7 +13610,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13585
13610
|
logs: {
|
|
13586
13611
|
action_name: string;
|
|
13587
13612
|
lines: {
|
|
13588
|
-
level: "
|
|
13613
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13589
13614
|
message: string;
|
|
13590
13615
|
}[];
|
|
13591
13616
|
}[];
|
|
@@ -14254,7 +14279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14254
14279
|
args: import("hono/utils/types").JSONValue[];
|
|
14255
14280
|
}[];
|
|
14256
14281
|
logs: {
|
|
14257
|
-
level: "
|
|
14282
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14258
14283
|
message: string;
|
|
14259
14284
|
}[];
|
|
14260
14285
|
error?: string | undefined;
|