authhero 8.17.4 → 8.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +112 -112
- package/dist/authhero.d.ts +414 -269
- package/dist/authhero.mjs +11131 -10900
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/helpers/audit-target-types.d.ts +6 -0
- package/dist/types/helpers/default-destinations.d.ts +14 -4
- package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
- package/dist/types/helpers/password-connection.d.ts +16 -0
- package/dist/types/helpers/provision-tenant-clients.d.ts +65 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
- package/dist/types/hooks/codehooks.d.ts +78 -9
- package/dist/types/index.d.ts +268 -263
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +9 -9
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +236 -234
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +6 -6
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/users.d.ts +4 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -4
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +5 -5
|
@@ -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: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1169,11 +1169,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1169
1169
|
invitee: {
|
|
1170
1170
|
email?: string | undefined;
|
|
1171
1171
|
};
|
|
1172
|
+
roles?: string[] | undefined;
|
|
1172
1173
|
id?: string | undefined;
|
|
1173
1174
|
app_metadata?: Record<string, any> | undefined;
|
|
1174
1175
|
user_metadata?: Record<string, any> | undefined;
|
|
1175
1176
|
connection_id?: string | undefined;
|
|
1176
|
-
roles?: string[] | undefined;
|
|
1177
1177
|
ttl_sec?: number | undefined;
|
|
1178
1178
|
send_invitation_email?: boolean | undefined;
|
|
1179
1179
|
};
|
|
@@ -1357,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1357
1357
|
};
|
|
1358
1358
|
} & {
|
|
1359
1359
|
json: {
|
|
1360
|
-
show_as_button?: boolean | undefined;
|
|
1361
1360
|
assign_membership_on_login?: boolean | undefined;
|
|
1361
|
+
show_as_button?: boolean | undefined;
|
|
1362
1362
|
is_signup_enabled?: boolean | undefined;
|
|
1363
1363
|
};
|
|
1364
1364
|
};
|
|
@@ -2600,7 +2600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2600
2600
|
hint?: string | undefined;
|
|
2601
2601
|
messages?: {
|
|
2602
2602
|
text: string;
|
|
2603
|
-
type: "
|
|
2603
|
+
type: "success" | "error" | "info" | "warning";
|
|
2604
2604
|
id?: number | undefined;
|
|
2605
2605
|
}[] | undefined;
|
|
2606
2606
|
required?: boolean | undefined;
|
|
@@ -2618,7 +2618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2618
2618
|
hint?: string | undefined;
|
|
2619
2619
|
messages?: {
|
|
2620
2620
|
text: string;
|
|
2621
|
-
type: "
|
|
2621
|
+
type: "success" | "error" | "info" | "warning";
|
|
2622
2622
|
id?: number | undefined;
|
|
2623
2623
|
}[] | undefined;
|
|
2624
2624
|
required?: boolean | undefined;
|
|
@@ -2642,7 +2642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2642
2642
|
hint?: string | undefined;
|
|
2643
2643
|
messages?: {
|
|
2644
2644
|
text: string;
|
|
2645
|
-
type: "
|
|
2645
|
+
type: "success" | "error" | "info" | "warning";
|
|
2646
2646
|
id?: number | undefined;
|
|
2647
2647
|
}[] | undefined;
|
|
2648
2648
|
required?: boolean | undefined;
|
|
@@ -2666,7 +2666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2666
2666
|
hint?: string | undefined;
|
|
2667
2667
|
messages?: {
|
|
2668
2668
|
text: string;
|
|
2669
|
-
type: "
|
|
2669
|
+
type: "success" | "error" | "info" | "warning";
|
|
2670
2670
|
id?: number | undefined;
|
|
2671
2671
|
}[] | undefined;
|
|
2672
2672
|
required?: boolean | undefined;
|
|
@@ -2690,7 +2690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2690
2690
|
hint?: string | undefined;
|
|
2691
2691
|
messages?: {
|
|
2692
2692
|
text: string;
|
|
2693
|
-
type: "
|
|
2693
|
+
type: "success" | "error" | "info" | "warning";
|
|
2694
2694
|
id?: number | undefined;
|
|
2695
2695
|
}[] | undefined;
|
|
2696
2696
|
required?: boolean | undefined;
|
|
@@ -2719,7 +2719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2719
2719
|
hint?: string | undefined;
|
|
2720
2720
|
messages?: {
|
|
2721
2721
|
text: string;
|
|
2722
|
-
type: "
|
|
2722
|
+
type: "success" | "error" | "info" | "warning";
|
|
2723
2723
|
id?: number | undefined;
|
|
2724
2724
|
}[] | undefined;
|
|
2725
2725
|
required?: boolean | undefined;
|
|
@@ -2734,7 +2734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2734
2734
|
hint?: string | undefined;
|
|
2735
2735
|
messages?: {
|
|
2736
2736
|
text: string;
|
|
2737
|
-
type: "
|
|
2737
|
+
type: "success" | "error" | "info" | "warning";
|
|
2738
2738
|
id?: number | undefined;
|
|
2739
2739
|
}[] | undefined;
|
|
2740
2740
|
required?: boolean | undefined;
|
|
@@ -2755,7 +2755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2755
2755
|
hint?: string | undefined;
|
|
2756
2756
|
messages?: {
|
|
2757
2757
|
text: string;
|
|
2758
|
-
type: "
|
|
2758
|
+
type: "success" | "error" | "info" | "warning";
|
|
2759
2759
|
id?: number | undefined;
|
|
2760
2760
|
}[] | undefined;
|
|
2761
2761
|
required?: boolean | undefined;
|
|
@@ -2780,7 +2780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2780
2780
|
hint?: string | undefined;
|
|
2781
2781
|
messages?: {
|
|
2782
2782
|
text: string;
|
|
2783
|
-
type: "
|
|
2783
|
+
type: "success" | "error" | "info" | "warning";
|
|
2784
2784
|
id?: number | undefined;
|
|
2785
2785
|
}[] | undefined;
|
|
2786
2786
|
required?: boolean | undefined;
|
|
@@ -2799,7 +2799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2799
2799
|
hint?: string | undefined;
|
|
2800
2800
|
messages?: {
|
|
2801
2801
|
text: string;
|
|
2802
|
-
type: "
|
|
2802
|
+
type: "success" | "error" | "info" | "warning";
|
|
2803
2803
|
id?: number | undefined;
|
|
2804
2804
|
}[] | undefined;
|
|
2805
2805
|
required?: boolean | undefined;
|
|
@@ -2819,7 +2819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2819
2819
|
hint?: string | undefined;
|
|
2820
2820
|
messages?: {
|
|
2821
2821
|
text: string;
|
|
2822
|
-
type: "
|
|
2822
|
+
type: "success" | "error" | "info" | "warning";
|
|
2823
2823
|
id?: number | undefined;
|
|
2824
2824
|
}[] | undefined;
|
|
2825
2825
|
required?: boolean | undefined;
|
|
@@ -2838,7 +2838,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2838
2838
|
hint?: string | undefined;
|
|
2839
2839
|
messages?: {
|
|
2840
2840
|
text: string;
|
|
2841
|
-
type: "
|
|
2841
|
+
type: "success" | "error" | "info" | "warning";
|
|
2842
2842
|
id?: number | undefined;
|
|
2843
2843
|
}[] | undefined;
|
|
2844
2844
|
required?: boolean | undefined;
|
|
@@ -2860,7 +2860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2860
2860
|
hint?: string | undefined;
|
|
2861
2861
|
messages?: {
|
|
2862
2862
|
text: string;
|
|
2863
|
-
type: "
|
|
2863
|
+
type: "success" | "error" | "info" | "warning";
|
|
2864
2864
|
id?: number | undefined;
|
|
2865
2865
|
}[] | undefined;
|
|
2866
2866
|
required?: boolean | undefined;
|
|
@@ -2882,7 +2882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2882
2882
|
hint?: string | undefined;
|
|
2883
2883
|
messages?: {
|
|
2884
2884
|
text: string;
|
|
2885
|
-
type: "
|
|
2885
|
+
type: "success" | "error" | "info" | "warning";
|
|
2886
2886
|
id?: number | undefined;
|
|
2887
2887
|
}[] | undefined;
|
|
2888
2888
|
required?: boolean | undefined;
|
|
@@ -2901,7 +2901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2901
2901
|
hint?: string | undefined;
|
|
2902
2902
|
messages?: {
|
|
2903
2903
|
text: string;
|
|
2904
|
-
type: "
|
|
2904
|
+
type: "success" | "error" | "info" | "warning";
|
|
2905
2905
|
id?: number | undefined;
|
|
2906
2906
|
}[] | undefined;
|
|
2907
2907
|
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;
|
|
@@ -2947,7 +2947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2947
2947
|
hint?: string | undefined;
|
|
2948
2948
|
messages?: {
|
|
2949
2949
|
text: string;
|
|
2950
|
-
type: "
|
|
2950
|
+
type: "success" | "error" | "info" | "warning";
|
|
2951
2951
|
id?: number | undefined;
|
|
2952
2952
|
}[] | undefined;
|
|
2953
2953
|
required?: boolean | undefined;
|
|
@@ -2968,7 +2968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2968
2968
|
hint?: string | undefined;
|
|
2969
2969
|
messages?: {
|
|
2970
2970
|
text: string;
|
|
2971
|
-
type: "
|
|
2971
|
+
type: "success" | "error" | "info" | "warning";
|
|
2972
2972
|
id?: number | undefined;
|
|
2973
2973
|
}[] | undefined;
|
|
2974
2974
|
required?: boolean | undefined;
|
|
@@ -3201,7 +3201,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3201
3201
|
hint?: string | undefined;
|
|
3202
3202
|
messages?: {
|
|
3203
3203
|
text: string;
|
|
3204
|
-
type: "
|
|
3204
|
+
type: "success" | "error" | "info" | "warning";
|
|
3205
3205
|
id?: number | undefined;
|
|
3206
3206
|
}[] | undefined;
|
|
3207
3207
|
required?: boolean | undefined;
|
|
@@ -3219,7 +3219,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3219
3219
|
hint?: string | undefined;
|
|
3220
3220
|
messages?: {
|
|
3221
3221
|
text: string;
|
|
3222
|
-
type: "
|
|
3222
|
+
type: "success" | "error" | "info" | "warning";
|
|
3223
3223
|
id?: number | undefined;
|
|
3224
3224
|
}[] | undefined;
|
|
3225
3225
|
required?: boolean | undefined;
|
|
@@ -3243,7 +3243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3243
3243
|
hint?: string | undefined;
|
|
3244
3244
|
messages?: {
|
|
3245
3245
|
text: string;
|
|
3246
|
-
type: "
|
|
3246
|
+
type: "success" | "error" | "info" | "warning";
|
|
3247
3247
|
id?: number | undefined;
|
|
3248
3248
|
}[] | undefined;
|
|
3249
3249
|
required?: boolean | undefined;
|
|
@@ -3267,7 +3267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3267
3267
|
hint?: string | undefined;
|
|
3268
3268
|
messages?: {
|
|
3269
3269
|
text: string;
|
|
3270
|
-
type: "
|
|
3270
|
+
type: "success" | "error" | "info" | "warning";
|
|
3271
3271
|
id?: number | undefined;
|
|
3272
3272
|
}[] | undefined;
|
|
3273
3273
|
required?: boolean | undefined;
|
|
@@ -3291,7 +3291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3291
3291
|
hint?: string | undefined;
|
|
3292
3292
|
messages?: {
|
|
3293
3293
|
text: string;
|
|
3294
|
-
type: "
|
|
3294
|
+
type: "success" | "error" | "info" | "warning";
|
|
3295
3295
|
id?: number | undefined;
|
|
3296
3296
|
}[] | undefined;
|
|
3297
3297
|
required?: boolean | undefined;
|
|
@@ -3320,7 +3320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3320
3320
|
hint?: string | undefined;
|
|
3321
3321
|
messages?: {
|
|
3322
3322
|
text: string;
|
|
3323
|
-
type: "
|
|
3323
|
+
type: "success" | "error" | "info" | "warning";
|
|
3324
3324
|
id?: number | undefined;
|
|
3325
3325
|
}[] | undefined;
|
|
3326
3326
|
required?: boolean | undefined;
|
|
@@ -3335,7 +3335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3335
3335
|
hint?: string | undefined;
|
|
3336
3336
|
messages?: {
|
|
3337
3337
|
text: string;
|
|
3338
|
-
type: "
|
|
3338
|
+
type: "success" | "error" | "info" | "warning";
|
|
3339
3339
|
id?: number | undefined;
|
|
3340
3340
|
}[] | undefined;
|
|
3341
3341
|
required?: boolean | undefined;
|
|
@@ -3356,7 +3356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3356
3356
|
hint?: string | undefined;
|
|
3357
3357
|
messages?: {
|
|
3358
3358
|
text: string;
|
|
3359
|
-
type: "
|
|
3359
|
+
type: "success" | "error" | "info" | "warning";
|
|
3360
3360
|
id?: number | undefined;
|
|
3361
3361
|
}[] | undefined;
|
|
3362
3362
|
required?: boolean | undefined;
|
|
@@ -3381,7 +3381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3381
3381
|
hint?: string | undefined;
|
|
3382
3382
|
messages?: {
|
|
3383
3383
|
text: string;
|
|
3384
|
-
type: "
|
|
3384
|
+
type: "success" | "error" | "info" | "warning";
|
|
3385
3385
|
id?: number | undefined;
|
|
3386
3386
|
}[] | undefined;
|
|
3387
3387
|
required?: boolean | undefined;
|
|
@@ -3400,7 +3400,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3400
3400
|
hint?: string | undefined;
|
|
3401
3401
|
messages?: {
|
|
3402
3402
|
text: string;
|
|
3403
|
-
type: "
|
|
3403
|
+
type: "success" | "error" | "info" | "warning";
|
|
3404
3404
|
id?: number | undefined;
|
|
3405
3405
|
}[] | undefined;
|
|
3406
3406
|
required?: boolean | undefined;
|
|
@@ -3420,7 +3420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3420
3420
|
hint?: string | undefined;
|
|
3421
3421
|
messages?: {
|
|
3422
3422
|
text: string;
|
|
3423
|
-
type: "
|
|
3423
|
+
type: "success" | "error" | "info" | "warning";
|
|
3424
3424
|
id?: number | undefined;
|
|
3425
3425
|
}[] | undefined;
|
|
3426
3426
|
required?: boolean | undefined;
|
|
@@ -3439,7 +3439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3439
3439
|
hint?: string | undefined;
|
|
3440
3440
|
messages?: {
|
|
3441
3441
|
text: string;
|
|
3442
|
-
type: "
|
|
3442
|
+
type: "success" | "error" | "info" | "warning";
|
|
3443
3443
|
id?: number | undefined;
|
|
3444
3444
|
}[] | undefined;
|
|
3445
3445
|
required?: boolean | undefined;
|
|
@@ -3461,7 +3461,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3461
3461
|
hint?: string | undefined;
|
|
3462
3462
|
messages?: {
|
|
3463
3463
|
text: string;
|
|
3464
|
-
type: "
|
|
3464
|
+
type: "success" | "error" | "info" | "warning";
|
|
3465
3465
|
id?: number | undefined;
|
|
3466
3466
|
}[] | undefined;
|
|
3467
3467
|
required?: boolean | undefined;
|
|
@@ -3483,7 +3483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3483
3483
|
hint?: string | undefined;
|
|
3484
3484
|
messages?: {
|
|
3485
3485
|
text: string;
|
|
3486
|
-
type: "
|
|
3486
|
+
type: "success" | "error" | "info" | "warning";
|
|
3487
3487
|
id?: number | undefined;
|
|
3488
3488
|
}[] | undefined;
|
|
3489
3489
|
required?: boolean | undefined;
|
|
@@ -3502,7 +3502,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3502
3502
|
hint?: string | undefined;
|
|
3503
3503
|
messages?: {
|
|
3504
3504
|
text: string;
|
|
3505
|
-
type: "
|
|
3505
|
+
type: "success" | "error" | "info" | "warning";
|
|
3506
3506
|
id?: number | undefined;
|
|
3507
3507
|
}[] | undefined;
|
|
3508
3508
|
required?: boolean | undefined;
|
|
@@ -3527,7 +3527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3527
3527
|
hint?: string | undefined;
|
|
3528
3528
|
messages?: {
|
|
3529
3529
|
text: string;
|
|
3530
|
-
type: "
|
|
3530
|
+
type: "success" | "error" | "info" | "warning";
|
|
3531
3531
|
id?: number | undefined;
|
|
3532
3532
|
}[] | undefined;
|
|
3533
3533
|
required?: boolean | undefined;
|
|
@@ -3548,7 +3548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3548
3548
|
hint?: string | undefined;
|
|
3549
3549
|
messages?: {
|
|
3550
3550
|
text: string;
|
|
3551
|
-
type: "
|
|
3551
|
+
type: "success" | "error" | "info" | "warning";
|
|
3552
3552
|
id?: number | undefined;
|
|
3553
3553
|
}[] | undefined;
|
|
3554
3554
|
required?: boolean | undefined;
|
|
@@ -3569,7 +3569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3569
3569
|
hint?: string | undefined;
|
|
3570
3570
|
messages?: {
|
|
3571
3571
|
text: string;
|
|
3572
|
-
type: "
|
|
3572
|
+
type: "success" | "error" | "info" | "warning";
|
|
3573
3573
|
id?: number | undefined;
|
|
3574
3574
|
}[] | undefined;
|
|
3575
3575
|
required?: boolean | undefined;
|
|
@@ -3817,7 +3817,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3817
3817
|
hint?: string | undefined;
|
|
3818
3818
|
messages?: {
|
|
3819
3819
|
text: string;
|
|
3820
|
-
type: "
|
|
3820
|
+
type: "success" | "error" | "info" | "warning";
|
|
3821
3821
|
id?: number | undefined;
|
|
3822
3822
|
}[] | undefined;
|
|
3823
3823
|
required?: boolean | undefined;
|
|
@@ -3835,7 +3835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3835
3835
|
hint?: string | undefined;
|
|
3836
3836
|
messages?: {
|
|
3837
3837
|
text: string;
|
|
3838
|
-
type: "
|
|
3838
|
+
type: "success" | "error" | "info" | "warning";
|
|
3839
3839
|
id?: number | undefined;
|
|
3840
3840
|
}[] | undefined;
|
|
3841
3841
|
required?: boolean | undefined;
|
|
@@ -3859,7 +3859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3859
3859
|
hint?: string | undefined;
|
|
3860
3860
|
messages?: {
|
|
3861
3861
|
text: string;
|
|
3862
|
-
type: "
|
|
3862
|
+
type: "success" | "error" | "info" | "warning";
|
|
3863
3863
|
id?: number | undefined;
|
|
3864
3864
|
}[] | undefined;
|
|
3865
3865
|
required?: boolean | undefined;
|
|
@@ -3883,7 +3883,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3883
3883
|
hint?: string | undefined;
|
|
3884
3884
|
messages?: {
|
|
3885
3885
|
text: string;
|
|
3886
|
-
type: "
|
|
3886
|
+
type: "success" | "error" | "info" | "warning";
|
|
3887
3887
|
id?: number | undefined;
|
|
3888
3888
|
}[] | undefined;
|
|
3889
3889
|
required?: boolean | undefined;
|
|
@@ -3907,7 +3907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3907
3907
|
hint?: string | undefined;
|
|
3908
3908
|
messages?: {
|
|
3909
3909
|
text: string;
|
|
3910
|
-
type: "
|
|
3910
|
+
type: "success" | "error" | "info" | "warning";
|
|
3911
3911
|
id?: number | undefined;
|
|
3912
3912
|
}[] | undefined;
|
|
3913
3913
|
required?: boolean | undefined;
|
|
@@ -3936,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3936
3936
|
hint?: string | undefined;
|
|
3937
3937
|
messages?: {
|
|
3938
3938
|
text: string;
|
|
3939
|
-
type: "
|
|
3939
|
+
type: "success" | "error" | "info" | "warning";
|
|
3940
3940
|
id?: number | undefined;
|
|
3941
3941
|
}[] | undefined;
|
|
3942
3942
|
required?: boolean | undefined;
|
|
@@ -3951,7 +3951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3951
3951
|
hint?: string | undefined;
|
|
3952
3952
|
messages?: {
|
|
3953
3953
|
text: string;
|
|
3954
|
-
type: "
|
|
3954
|
+
type: "success" | "error" | "info" | "warning";
|
|
3955
3955
|
id?: number | undefined;
|
|
3956
3956
|
}[] | undefined;
|
|
3957
3957
|
required?: boolean | undefined;
|
|
@@ -3972,7 +3972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3972
3972
|
hint?: string | undefined;
|
|
3973
3973
|
messages?: {
|
|
3974
3974
|
text: string;
|
|
3975
|
-
type: "
|
|
3975
|
+
type: "success" | "error" | "info" | "warning";
|
|
3976
3976
|
id?: number | undefined;
|
|
3977
3977
|
}[] | undefined;
|
|
3978
3978
|
required?: boolean | undefined;
|
|
@@ -3997,7 +3997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3997
3997
|
hint?: string | undefined;
|
|
3998
3998
|
messages?: {
|
|
3999
3999
|
text: string;
|
|
4000
|
-
type: "
|
|
4000
|
+
type: "success" | "error" | "info" | "warning";
|
|
4001
4001
|
id?: number | undefined;
|
|
4002
4002
|
}[] | undefined;
|
|
4003
4003
|
required?: boolean | undefined;
|
|
@@ -4016,7 +4016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4016
4016
|
hint?: string | undefined;
|
|
4017
4017
|
messages?: {
|
|
4018
4018
|
text: string;
|
|
4019
|
-
type: "
|
|
4019
|
+
type: "success" | "error" | "info" | "warning";
|
|
4020
4020
|
id?: number | undefined;
|
|
4021
4021
|
}[] | undefined;
|
|
4022
4022
|
required?: boolean | undefined;
|
|
@@ -4036,7 +4036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4036
4036
|
hint?: string | undefined;
|
|
4037
4037
|
messages?: {
|
|
4038
4038
|
text: string;
|
|
4039
|
-
type: "
|
|
4039
|
+
type: "success" | "error" | "info" | "warning";
|
|
4040
4040
|
id?: number | undefined;
|
|
4041
4041
|
}[] | undefined;
|
|
4042
4042
|
required?: boolean | undefined;
|
|
@@ -4055,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4055
4055
|
hint?: string | undefined;
|
|
4056
4056
|
messages?: {
|
|
4057
4057
|
text: string;
|
|
4058
|
-
type: "
|
|
4058
|
+
type: "success" | "error" | "info" | "warning";
|
|
4059
4059
|
id?: number | undefined;
|
|
4060
4060
|
}[] | undefined;
|
|
4061
4061
|
required?: boolean | undefined;
|
|
@@ -4077,7 +4077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4077
4077
|
hint?: string | undefined;
|
|
4078
4078
|
messages?: {
|
|
4079
4079
|
text: string;
|
|
4080
|
-
type: "
|
|
4080
|
+
type: "success" | "error" | "info" | "warning";
|
|
4081
4081
|
id?: number | undefined;
|
|
4082
4082
|
}[] | undefined;
|
|
4083
4083
|
required?: boolean | undefined;
|
|
@@ -4099,7 +4099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4099
4099
|
hint?: string | undefined;
|
|
4100
4100
|
messages?: {
|
|
4101
4101
|
text: string;
|
|
4102
|
-
type: "
|
|
4102
|
+
type: "success" | "error" | "info" | "warning";
|
|
4103
4103
|
id?: number | undefined;
|
|
4104
4104
|
}[] | undefined;
|
|
4105
4105
|
required?: boolean | undefined;
|
|
@@ -4118,7 +4118,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4118
4118
|
hint?: string | undefined;
|
|
4119
4119
|
messages?: {
|
|
4120
4120
|
text: string;
|
|
4121
|
-
type: "
|
|
4121
|
+
type: "success" | "error" | "info" | "warning";
|
|
4122
4122
|
id?: number | undefined;
|
|
4123
4123
|
}[] | undefined;
|
|
4124
4124
|
required?: boolean | undefined;
|
|
@@ -4143,7 +4143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4143
4143
|
hint?: string | undefined;
|
|
4144
4144
|
messages?: {
|
|
4145
4145
|
text: string;
|
|
4146
|
-
type: "
|
|
4146
|
+
type: "success" | "error" | "info" | "warning";
|
|
4147
4147
|
id?: number | undefined;
|
|
4148
4148
|
}[] | undefined;
|
|
4149
4149
|
required?: boolean | undefined;
|
|
@@ -4164,7 +4164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4164
4164
|
hint?: string | undefined;
|
|
4165
4165
|
messages?: {
|
|
4166
4166
|
text: string;
|
|
4167
|
-
type: "
|
|
4167
|
+
type: "success" | "error" | "info" | "warning";
|
|
4168
4168
|
id?: number | undefined;
|
|
4169
4169
|
}[] | undefined;
|
|
4170
4170
|
required?: boolean | undefined;
|
|
@@ -4185,7 +4185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4185
4185
|
hint?: string | undefined;
|
|
4186
4186
|
messages?: {
|
|
4187
4187
|
text: string;
|
|
4188
|
-
type: "
|
|
4188
|
+
type: "success" | "error" | "info" | "warning";
|
|
4189
4189
|
id?: number | undefined;
|
|
4190
4190
|
}[] | undefined;
|
|
4191
4191
|
required?: boolean | undefined;
|
|
@@ -4439,7 +4439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4439
4439
|
hint?: string | undefined;
|
|
4440
4440
|
messages?: {
|
|
4441
4441
|
text: string;
|
|
4442
|
-
type: "
|
|
4442
|
+
type: "success" | "error" | "info" | "warning";
|
|
4443
4443
|
id?: number | undefined;
|
|
4444
4444
|
}[] | undefined;
|
|
4445
4445
|
required?: boolean | undefined;
|
|
@@ -4457,7 +4457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4457
4457
|
hint?: string | undefined;
|
|
4458
4458
|
messages?: {
|
|
4459
4459
|
text: string;
|
|
4460
|
-
type: "
|
|
4460
|
+
type: "success" | "error" | "info" | "warning";
|
|
4461
4461
|
id?: number | undefined;
|
|
4462
4462
|
}[] | undefined;
|
|
4463
4463
|
required?: boolean | undefined;
|
|
@@ -4481,7 +4481,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4481
4481
|
hint?: string | undefined;
|
|
4482
4482
|
messages?: {
|
|
4483
4483
|
text: string;
|
|
4484
|
-
type: "
|
|
4484
|
+
type: "success" | "error" | "info" | "warning";
|
|
4485
4485
|
id?: number | undefined;
|
|
4486
4486
|
}[] | undefined;
|
|
4487
4487
|
required?: boolean | undefined;
|
|
@@ -4505,7 +4505,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4505
4505
|
hint?: string | undefined;
|
|
4506
4506
|
messages?: {
|
|
4507
4507
|
text: string;
|
|
4508
|
-
type: "
|
|
4508
|
+
type: "success" | "error" | "info" | "warning";
|
|
4509
4509
|
id?: number | undefined;
|
|
4510
4510
|
}[] | undefined;
|
|
4511
4511
|
required?: boolean | undefined;
|
|
@@ -4529,7 +4529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4529
4529
|
hint?: string | undefined;
|
|
4530
4530
|
messages?: {
|
|
4531
4531
|
text: string;
|
|
4532
|
-
type: "
|
|
4532
|
+
type: "success" | "error" | "info" | "warning";
|
|
4533
4533
|
id?: number | undefined;
|
|
4534
4534
|
}[] | undefined;
|
|
4535
4535
|
required?: boolean | undefined;
|
|
@@ -4554,7 +4554,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4554
4554
|
hint?: string | undefined;
|
|
4555
4555
|
messages?: {
|
|
4556
4556
|
text: string;
|
|
4557
|
-
type: "
|
|
4557
|
+
type: "success" | "error" | "info" | "warning";
|
|
4558
4558
|
id?: number | undefined;
|
|
4559
4559
|
}[] | undefined;
|
|
4560
4560
|
required?: boolean | undefined;
|
|
@@ -4569,7 +4569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4569
4569
|
hint?: string | undefined;
|
|
4570
4570
|
messages?: {
|
|
4571
4571
|
text: string;
|
|
4572
|
-
type: "
|
|
4572
|
+
type: "success" | "error" | "info" | "warning";
|
|
4573
4573
|
id?: number | undefined;
|
|
4574
4574
|
}[] | undefined;
|
|
4575
4575
|
required?: boolean | undefined;
|
|
@@ -4590,7 +4590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4590
4590
|
hint?: string | undefined;
|
|
4591
4591
|
messages?: {
|
|
4592
4592
|
text: string;
|
|
4593
|
-
type: "
|
|
4593
|
+
type: "success" | "error" | "info" | "warning";
|
|
4594
4594
|
id?: number | undefined;
|
|
4595
4595
|
}[] | undefined;
|
|
4596
4596
|
required?: boolean | undefined;
|
|
@@ -4615,7 +4615,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4615
4615
|
hint?: string | undefined;
|
|
4616
4616
|
messages?: {
|
|
4617
4617
|
text: string;
|
|
4618
|
-
type: "
|
|
4618
|
+
type: "success" | "error" | "info" | "warning";
|
|
4619
4619
|
id?: number | undefined;
|
|
4620
4620
|
}[] | undefined;
|
|
4621
4621
|
required?: boolean | undefined;
|
|
@@ -4634,7 +4634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4634
4634
|
hint?: string | undefined;
|
|
4635
4635
|
messages?: {
|
|
4636
4636
|
text: string;
|
|
4637
|
-
type: "
|
|
4637
|
+
type: "success" | "error" | "info" | "warning";
|
|
4638
4638
|
id?: number | undefined;
|
|
4639
4639
|
}[] | undefined;
|
|
4640
4640
|
required?: boolean | undefined;
|
|
@@ -4654,7 +4654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4654
4654
|
hint?: string | undefined;
|
|
4655
4655
|
messages?: {
|
|
4656
4656
|
text: string;
|
|
4657
|
-
type: "
|
|
4657
|
+
type: "success" | "error" | "info" | "warning";
|
|
4658
4658
|
id?: number | undefined;
|
|
4659
4659
|
}[] | undefined;
|
|
4660
4660
|
required?: boolean | undefined;
|
|
@@ -4673,7 +4673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4673
4673
|
hint?: string | undefined;
|
|
4674
4674
|
messages?: {
|
|
4675
4675
|
text: string;
|
|
4676
|
-
type: "
|
|
4676
|
+
type: "success" | "error" | "info" | "warning";
|
|
4677
4677
|
id?: number | undefined;
|
|
4678
4678
|
}[] | undefined;
|
|
4679
4679
|
required?: boolean | undefined;
|
|
@@ -4695,7 +4695,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4695
4695
|
hint?: string | undefined;
|
|
4696
4696
|
messages?: {
|
|
4697
4697
|
text: string;
|
|
4698
|
-
type: "
|
|
4698
|
+
type: "success" | "error" | "info" | "warning";
|
|
4699
4699
|
id?: number | undefined;
|
|
4700
4700
|
}[] | undefined;
|
|
4701
4701
|
required?: boolean | undefined;
|
|
@@ -4717,7 +4717,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4717
4717
|
hint?: string | undefined;
|
|
4718
4718
|
messages?: {
|
|
4719
4719
|
text: string;
|
|
4720
|
-
type: "
|
|
4720
|
+
type: "success" | "error" | "info" | "warning";
|
|
4721
4721
|
id?: number | undefined;
|
|
4722
4722
|
}[] | undefined;
|
|
4723
4723
|
required?: boolean | undefined;
|
|
@@ -4736,7 +4736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4736
4736
|
hint?: string | undefined;
|
|
4737
4737
|
messages?: {
|
|
4738
4738
|
text: string;
|
|
4739
|
-
type: "
|
|
4739
|
+
type: "success" | "error" | "info" | "warning";
|
|
4740
4740
|
id?: number | undefined;
|
|
4741
4741
|
}[] | undefined;
|
|
4742
4742
|
required?: boolean | undefined;
|
|
@@ -4761,7 +4761,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4761
4761
|
hint?: string | undefined;
|
|
4762
4762
|
messages?: {
|
|
4763
4763
|
text: string;
|
|
4764
|
-
type: "
|
|
4764
|
+
type: "success" | "error" | "info" | "warning";
|
|
4765
4765
|
id?: number | undefined;
|
|
4766
4766
|
}[] | undefined;
|
|
4767
4767
|
required?: boolean | undefined;
|
|
@@ -4782,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4782
4782
|
hint?: string | undefined;
|
|
4783
4783
|
messages?: {
|
|
4784
4784
|
text: string;
|
|
4785
|
-
type: "
|
|
4785
|
+
type: "success" | "error" | "info" | "warning";
|
|
4786
4786
|
id?: number | undefined;
|
|
4787
4787
|
}[] | undefined;
|
|
4788
4788
|
required?: boolean | undefined;
|
|
@@ -4803,7 +4803,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4803
4803
|
hint?: string | undefined;
|
|
4804
4804
|
messages?: {
|
|
4805
4805
|
text: string;
|
|
4806
|
-
type: "
|
|
4806
|
+
type: "success" | "error" | "info" | "warning";
|
|
4807
4807
|
id?: number | undefined;
|
|
4808
4808
|
}[] | undefined;
|
|
4809
4809
|
required?: boolean | undefined;
|
|
@@ -5034,7 +5034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5034
5034
|
hint?: string | undefined;
|
|
5035
5035
|
messages?: {
|
|
5036
5036
|
text: string;
|
|
5037
|
-
type: "
|
|
5037
|
+
type: "success" | "error" | "info" | "warning";
|
|
5038
5038
|
id?: number | undefined;
|
|
5039
5039
|
}[] | undefined;
|
|
5040
5040
|
required?: boolean | undefined;
|
|
@@ -5052,7 +5052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5052
5052
|
hint?: string | undefined;
|
|
5053
5053
|
messages?: {
|
|
5054
5054
|
text: string;
|
|
5055
|
-
type: "
|
|
5055
|
+
type: "success" | "error" | "info" | "warning";
|
|
5056
5056
|
id?: number | undefined;
|
|
5057
5057
|
}[] | undefined;
|
|
5058
5058
|
required?: boolean | undefined;
|
|
@@ -5076,7 +5076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5076
5076
|
hint?: string | undefined;
|
|
5077
5077
|
messages?: {
|
|
5078
5078
|
text: string;
|
|
5079
|
-
type: "
|
|
5079
|
+
type: "success" | "error" | "info" | "warning";
|
|
5080
5080
|
id?: number | undefined;
|
|
5081
5081
|
}[] | undefined;
|
|
5082
5082
|
required?: boolean | undefined;
|
|
@@ -5100,7 +5100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5100
5100
|
hint?: string | undefined;
|
|
5101
5101
|
messages?: {
|
|
5102
5102
|
text: string;
|
|
5103
|
-
type: "
|
|
5103
|
+
type: "success" | "error" | "info" | "warning";
|
|
5104
5104
|
id?: number | undefined;
|
|
5105
5105
|
}[] | undefined;
|
|
5106
5106
|
required?: boolean | undefined;
|
|
@@ -5124,7 +5124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5124
5124
|
hint?: string | undefined;
|
|
5125
5125
|
messages?: {
|
|
5126
5126
|
text: string;
|
|
5127
|
-
type: "
|
|
5127
|
+
type: "success" | "error" | "info" | "warning";
|
|
5128
5128
|
id?: number | undefined;
|
|
5129
5129
|
}[] | undefined;
|
|
5130
5130
|
required?: boolean | undefined;
|
|
@@ -5153,7 +5153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5153
5153
|
hint?: string | undefined;
|
|
5154
5154
|
messages?: {
|
|
5155
5155
|
text: string;
|
|
5156
|
-
type: "
|
|
5156
|
+
type: "success" | "error" | "info" | "warning";
|
|
5157
5157
|
id?: number | undefined;
|
|
5158
5158
|
}[] | undefined;
|
|
5159
5159
|
required?: boolean | undefined;
|
|
@@ -5168,7 +5168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5168
5168
|
hint?: string | undefined;
|
|
5169
5169
|
messages?: {
|
|
5170
5170
|
text: string;
|
|
5171
|
-
type: "
|
|
5171
|
+
type: "success" | "error" | "info" | "warning";
|
|
5172
5172
|
id?: number | undefined;
|
|
5173
5173
|
}[] | undefined;
|
|
5174
5174
|
required?: boolean | undefined;
|
|
@@ -5189,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5189
5189
|
hint?: string | undefined;
|
|
5190
5190
|
messages?: {
|
|
5191
5191
|
text: string;
|
|
5192
|
-
type: "
|
|
5192
|
+
type: "success" | "error" | "info" | "warning";
|
|
5193
5193
|
id?: number | undefined;
|
|
5194
5194
|
}[] | undefined;
|
|
5195
5195
|
required?: boolean | undefined;
|
|
@@ -5214,7 +5214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5214
5214
|
hint?: string | undefined;
|
|
5215
5215
|
messages?: {
|
|
5216
5216
|
text: string;
|
|
5217
|
-
type: "
|
|
5217
|
+
type: "success" | "error" | "info" | "warning";
|
|
5218
5218
|
id?: number | undefined;
|
|
5219
5219
|
}[] | undefined;
|
|
5220
5220
|
required?: boolean | undefined;
|
|
@@ -5233,7 +5233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5233
5233
|
hint?: string | undefined;
|
|
5234
5234
|
messages?: {
|
|
5235
5235
|
text: string;
|
|
5236
|
-
type: "
|
|
5236
|
+
type: "success" | "error" | "info" | "warning";
|
|
5237
5237
|
id?: number | undefined;
|
|
5238
5238
|
}[] | undefined;
|
|
5239
5239
|
required?: boolean | undefined;
|
|
@@ -5253,7 +5253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5253
5253
|
hint?: string | undefined;
|
|
5254
5254
|
messages?: {
|
|
5255
5255
|
text: string;
|
|
5256
|
-
type: "
|
|
5256
|
+
type: "success" | "error" | "info" | "warning";
|
|
5257
5257
|
id?: number | undefined;
|
|
5258
5258
|
}[] | undefined;
|
|
5259
5259
|
required?: boolean | undefined;
|
|
@@ -5272,7 +5272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5272
5272
|
hint?: string | undefined;
|
|
5273
5273
|
messages?: {
|
|
5274
5274
|
text: string;
|
|
5275
|
-
type: "
|
|
5275
|
+
type: "success" | "error" | "info" | "warning";
|
|
5276
5276
|
id?: number | undefined;
|
|
5277
5277
|
}[] | undefined;
|
|
5278
5278
|
required?: boolean | undefined;
|
|
@@ -5294,7 +5294,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5294
5294
|
hint?: string | undefined;
|
|
5295
5295
|
messages?: {
|
|
5296
5296
|
text: string;
|
|
5297
|
-
type: "
|
|
5297
|
+
type: "success" | "error" | "info" | "warning";
|
|
5298
5298
|
id?: number | undefined;
|
|
5299
5299
|
}[] | undefined;
|
|
5300
5300
|
required?: boolean | undefined;
|
|
@@ -5316,7 +5316,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5316
5316
|
hint?: string | undefined;
|
|
5317
5317
|
messages?: {
|
|
5318
5318
|
text: string;
|
|
5319
|
-
type: "
|
|
5319
|
+
type: "success" | "error" | "info" | "warning";
|
|
5320
5320
|
id?: number | undefined;
|
|
5321
5321
|
}[] | undefined;
|
|
5322
5322
|
required?: boolean | undefined;
|
|
@@ -5335,7 +5335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5335
5335
|
hint?: string | undefined;
|
|
5336
5336
|
messages?: {
|
|
5337
5337
|
text: string;
|
|
5338
|
-
type: "
|
|
5338
|
+
type: "success" | "error" | "info" | "warning";
|
|
5339
5339
|
id?: number | undefined;
|
|
5340
5340
|
}[] | undefined;
|
|
5341
5341
|
required?: boolean | undefined;
|
|
@@ -5360,7 +5360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5360
5360
|
hint?: string | undefined;
|
|
5361
5361
|
messages?: {
|
|
5362
5362
|
text: string;
|
|
5363
|
-
type: "
|
|
5363
|
+
type: "success" | "error" | "info" | "warning";
|
|
5364
5364
|
id?: number | undefined;
|
|
5365
5365
|
}[] | undefined;
|
|
5366
5366
|
required?: boolean | undefined;
|
|
@@ -5381,7 +5381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5381
5381
|
hint?: string | undefined;
|
|
5382
5382
|
messages?: {
|
|
5383
5383
|
text: string;
|
|
5384
|
-
type: "
|
|
5384
|
+
type: "success" | "error" | "info" | "warning";
|
|
5385
5385
|
id?: number | undefined;
|
|
5386
5386
|
}[] | undefined;
|
|
5387
5387
|
required?: boolean | undefined;
|
|
@@ -5402,7 +5402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5402
5402
|
hint?: string | undefined;
|
|
5403
5403
|
messages?: {
|
|
5404
5404
|
text: string;
|
|
5405
|
-
type: "
|
|
5405
|
+
type: "success" | "error" | "info" | "warning";
|
|
5406
5406
|
id?: number | undefined;
|
|
5407
5407
|
}[] | undefined;
|
|
5408
5408
|
required?: boolean | undefined;
|
|
@@ -5635,7 +5635,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5635
5635
|
hint?: string | undefined;
|
|
5636
5636
|
messages?: {
|
|
5637
5637
|
text: string;
|
|
5638
|
-
type: "
|
|
5638
|
+
type: "success" | "error" | "info" | "warning";
|
|
5639
5639
|
id?: number | undefined;
|
|
5640
5640
|
}[] | undefined;
|
|
5641
5641
|
required?: boolean | undefined;
|
|
@@ -5653,7 +5653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5653
5653
|
hint?: string | undefined;
|
|
5654
5654
|
messages?: {
|
|
5655
5655
|
text: string;
|
|
5656
|
-
type: "
|
|
5656
|
+
type: "success" | "error" | "info" | "warning";
|
|
5657
5657
|
id?: number | undefined;
|
|
5658
5658
|
}[] | undefined;
|
|
5659
5659
|
required?: boolean | undefined;
|
|
@@ -5677,7 +5677,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5677
5677
|
hint?: string | undefined;
|
|
5678
5678
|
messages?: {
|
|
5679
5679
|
text: string;
|
|
5680
|
-
type: "
|
|
5680
|
+
type: "success" | "error" | "info" | "warning";
|
|
5681
5681
|
id?: number | undefined;
|
|
5682
5682
|
}[] | undefined;
|
|
5683
5683
|
required?: boolean | undefined;
|
|
@@ -5701,7 +5701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5701
5701
|
hint?: string | undefined;
|
|
5702
5702
|
messages?: {
|
|
5703
5703
|
text: string;
|
|
5704
|
-
type: "
|
|
5704
|
+
type: "success" | "error" | "info" | "warning";
|
|
5705
5705
|
id?: number | undefined;
|
|
5706
5706
|
}[] | undefined;
|
|
5707
5707
|
required?: boolean | undefined;
|
|
@@ -5725,7 +5725,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5725
5725
|
hint?: string | undefined;
|
|
5726
5726
|
messages?: {
|
|
5727
5727
|
text: string;
|
|
5728
|
-
type: "
|
|
5728
|
+
type: "success" | "error" | "info" | "warning";
|
|
5729
5729
|
id?: number | undefined;
|
|
5730
5730
|
}[] | undefined;
|
|
5731
5731
|
required?: boolean | undefined;
|
|
@@ -5750,7 +5750,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5750
5750
|
hint?: string | undefined;
|
|
5751
5751
|
messages?: {
|
|
5752
5752
|
text: string;
|
|
5753
|
-
type: "
|
|
5753
|
+
type: "success" | "error" | "info" | "warning";
|
|
5754
5754
|
id?: number | undefined;
|
|
5755
5755
|
}[] | undefined;
|
|
5756
5756
|
required?: boolean | undefined;
|
|
@@ -5765,7 +5765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5765
5765
|
hint?: string | undefined;
|
|
5766
5766
|
messages?: {
|
|
5767
5767
|
text: string;
|
|
5768
|
-
type: "
|
|
5768
|
+
type: "success" | "error" | "info" | "warning";
|
|
5769
5769
|
id?: number | undefined;
|
|
5770
5770
|
}[] | undefined;
|
|
5771
5771
|
required?: boolean | undefined;
|
|
@@ -5786,7 +5786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5786
5786
|
hint?: string | undefined;
|
|
5787
5787
|
messages?: {
|
|
5788
5788
|
text: string;
|
|
5789
|
-
type: "
|
|
5789
|
+
type: "success" | "error" | "info" | "warning";
|
|
5790
5790
|
id?: number | undefined;
|
|
5791
5791
|
}[] | undefined;
|
|
5792
5792
|
required?: boolean | undefined;
|
|
@@ -5811,7 +5811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5811
5811
|
hint?: string | undefined;
|
|
5812
5812
|
messages?: {
|
|
5813
5813
|
text: string;
|
|
5814
|
-
type: "
|
|
5814
|
+
type: "success" | "error" | "info" | "warning";
|
|
5815
5815
|
id?: number | undefined;
|
|
5816
5816
|
}[] | undefined;
|
|
5817
5817
|
required?: boolean | undefined;
|
|
@@ -5830,7 +5830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5830
5830
|
hint?: string | undefined;
|
|
5831
5831
|
messages?: {
|
|
5832
5832
|
text: string;
|
|
5833
|
-
type: "
|
|
5833
|
+
type: "success" | "error" | "info" | "warning";
|
|
5834
5834
|
id?: number | undefined;
|
|
5835
5835
|
}[] | undefined;
|
|
5836
5836
|
required?: boolean | undefined;
|
|
@@ -5850,7 +5850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5850
5850
|
hint?: string | undefined;
|
|
5851
5851
|
messages?: {
|
|
5852
5852
|
text: string;
|
|
5853
|
-
type: "
|
|
5853
|
+
type: "success" | "error" | "info" | "warning";
|
|
5854
5854
|
id?: number | undefined;
|
|
5855
5855
|
}[] | undefined;
|
|
5856
5856
|
required?: boolean | undefined;
|
|
@@ -5869,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5869
5869
|
hint?: string | undefined;
|
|
5870
5870
|
messages?: {
|
|
5871
5871
|
text: string;
|
|
5872
|
-
type: "
|
|
5872
|
+
type: "success" | "error" | "info" | "warning";
|
|
5873
5873
|
id?: number | undefined;
|
|
5874
5874
|
}[] | undefined;
|
|
5875
5875
|
required?: boolean | undefined;
|
|
@@ -5891,7 +5891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5891
5891
|
hint?: string | undefined;
|
|
5892
5892
|
messages?: {
|
|
5893
5893
|
text: string;
|
|
5894
|
-
type: "
|
|
5894
|
+
type: "success" | "error" | "info" | "warning";
|
|
5895
5895
|
id?: number | undefined;
|
|
5896
5896
|
}[] | undefined;
|
|
5897
5897
|
required?: boolean | undefined;
|
|
@@ -5913,7 +5913,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5913
5913
|
hint?: string | undefined;
|
|
5914
5914
|
messages?: {
|
|
5915
5915
|
text: string;
|
|
5916
|
-
type: "
|
|
5916
|
+
type: "success" | "error" | "info" | "warning";
|
|
5917
5917
|
id?: number | undefined;
|
|
5918
5918
|
}[] | undefined;
|
|
5919
5919
|
required?: boolean | undefined;
|
|
@@ -5932,7 +5932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5932
5932
|
hint?: string | undefined;
|
|
5933
5933
|
messages?: {
|
|
5934
5934
|
text: string;
|
|
5935
|
-
type: "
|
|
5935
|
+
type: "success" | "error" | "info" | "warning";
|
|
5936
5936
|
id?: number | undefined;
|
|
5937
5937
|
}[] | undefined;
|
|
5938
5938
|
required?: boolean | undefined;
|
|
@@ -5957,7 +5957,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5957
5957
|
hint?: string | undefined;
|
|
5958
5958
|
messages?: {
|
|
5959
5959
|
text: string;
|
|
5960
|
-
type: "
|
|
5960
|
+
type: "success" | "error" | "info" | "warning";
|
|
5961
5961
|
id?: number | undefined;
|
|
5962
5962
|
}[] | undefined;
|
|
5963
5963
|
required?: boolean | undefined;
|
|
@@ -5978,7 +5978,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5978
5978
|
hint?: string | undefined;
|
|
5979
5979
|
messages?: {
|
|
5980
5980
|
text: string;
|
|
5981
|
-
type: "
|
|
5981
|
+
type: "success" | "error" | "info" | "warning";
|
|
5982
5982
|
id?: number | undefined;
|
|
5983
5983
|
}[] | undefined;
|
|
5984
5984
|
required?: boolean | undefined;
|
|
@@ -5999,7 +5999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5999
5999
|
hint?: string | undefined;
|
|
6000
6000
|
messages?: {
|
|
6001
6001
|
text: string;
|
|
6002
|
-
type: "
|
|
6002
|
+
type: "success" | "error" | "info" | "warning";
|
|
6003
6003
|
id?: number | undefined;
|
|
6004
6004
|
}[] | undefined;
|
|
6005
6005
|
required?: boolean | undefined;
|
|
@@ -6230,7 +6230,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6230
6230
|
hint?: string | undefined;
|
|
6231
6231
|
messages?: {
|
|
6232
6232
|
text: string;
|
|
6233
|
-
type: "
|
|
6233
|
+
type: "success" | "error" | "info" | "warning";
|
|
6234
6234
|
id?: number | undefined;
|
|
6235
6235
|
}[] | undefined;
|
|
6236
6236
|
required?: boolean | undefined;
|
|
@@ -6248,7 +6248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6248
6248
|
hint?: string | undefined;
|
|
6249
6249
|
messages?: {
|
|
6250
6250
|
text: string;
|
|
6251
|
-
type: "
|
|
6251
|
+
type: "success" | "error" | "info" | "warning";
|
|
6252
6252
|
id?: number | undefined;
|
|
6253
6253
|
}[] | undefined;
|
|
6254
6254
|
required?: boolean | undefined;
|
|
@@ -6272,7 +6272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6272
6272
|
hint?: string | undefined;
|
|
6273
6273
|
messages?: {
|
|
6274
6274
|
text: string;
|
|
6275
|
-
type: "
|
|
6275
|
+
type: "success" | "error" | "info" | "warning";
|
|
6276
6276
|
id?: number | undefined;
|
|
6277
6277
|
}[] | undefined;
|
|
6278
6278
|
required?: boolean | undefined;
|
|
@@ -6296,7 +6296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6296
6296
|
hint?: string | undefined;
|
|
6297
6297
|
messages?: {
|
|
6298
6298
|
text: string;
|
|
6299
|
-
type: "
|
|
6299
|
+
type: "success" | "error" | "info" | "warning";
|
|
6300
6300
|
id?: number | undefined;
|
|
6301
6301
|
}[] | undefined;
|
|
6302
6302
|
required?: boolean | undefined;
|
|
@@ -6320,7 +6320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6320
6320
|
hint?: string | undefined;
|
|
6321
6321
|
messages?: {
|
|
6322
6322
|
text: string;
|
|
6323
|
-
type: "
|
|
6323
|
+
type: "success" | "error" | "info" | "warning";
|
|
6324
6324
|
id?: number | undefined;
|
|
6325
6325
|
}[] | undefined;
|
|
6326
6326
|
required?: boolean | undefined;
|
|
@@ -6349,7 +6349,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6349
6349
|
hint?: string | undefined;
|
|
6350
6350
|
messages?: {
|
|
6351
6351
|
text: string;
|
|
6352
|
-
type: "
|
|
6352
|
+
type: "success" | "error" | "info" | "warning";
|
|
6353
6353
|
id?: number | undefined;
|
|
6354
6354
|
}[] | undefined;
|
|
6355
6355
|
required?: boolean | undefined;
|
|
@@ -6364,7 +6364,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6364
6364
|
hint?: string | undefined;
|
|
6365
6365
|
messages?: {
|
|
6366
6366
|
text: string;
|
|
6367
|
-
type: "
|
|
6367
|
+
type: "success" | "error" | "info" | "warning";
|
|
6368
6368
|
id?: number | undefined;
|
|
6369
6369
|
}[] | undefined;
|
|
6370
6370
|
required?: boolean | undefined;
|
|
@@ -6385,7 +6385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6385
6385
|
hint?: string | undefined;
|
|
6386
6386
|
messages?: {
|
|
6387
6387
|
text: string;
|
|
6388
|
-
type: "
|
|
6388
|
+
type: "success" | "error" | "info" | "warning";
|
|
6389
6389
|
id?: number | undefined;
|
|
6390
6390
|
}[] | undefined;
|
|
6391
6391
|
required?: boolean | undefined;
|
|
@@ -6410,7 +6410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6410
6410
|
hint?: string | undefined;
|
|
6411
6411
|
messages?: {
|
|
6412
6412
|
text: string;
|
|
6413
|
-
type: "
|
|
6413
|
+
type: "success" | "error" | "info" | "warning";
|
|
6414
6414
|
id?: number | undefined;
|
|
6415
6415
|
}[] | undefined;
|
|
6416
6416
|
required?: boolean | undefined;
|
|
@@ -6429,7 +6429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6429
6429
|
hint?: string | undefined;
|
|
6430
6430
|
messages?: {
|
|
6431
6431
|
text: string;
|
|
6432
|
-
type: "
|
|
6432
|
+
type: "success" | "error" | "info" | "warning";
|
|
6433
6433
|
id?: number | undefined;
|
|
6434
6434
|
}[] | undefined;
|
|
6435
6435
|
required?: boolean | undefined;
|
|
@@ -6449,7 +6449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6449
6449
|
hint?: string | undefined;
|
|
6450
6450
|
messages?: {
|
|
6451
6451
|
text: string;
|
|
6452
|
-
type: "
|
|
6452
|
+
type: "success" | "error" | "info" | "warning";
|
|
6453
6453
|
id?: number | undefined;
|
|
6454
6454
|
}[] | undefined;
|
|
6455
6455
|
required?: boolean | undefined;
|
|
@@ -6468,7 +6468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6468
6468
|
hint?: string | undefined;
|
|
6469
6469
|
messages?: {
|
|
6470
6470
|
text: string;
|
|
6471
|
-
type: "
|
|
6471
|
+
type: "success" | "error" | "info" | "warning";
|
|
6472
6472
|
id?: number | undefined;
|
|
6473
6473
|
}[] | undefined;
|
|
6474
6474
|
required?: boolean | undefined;
|
|
@@ -6490,7 +6490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6490
6490
|
hint?: string | undefined;
|
|
6491
6491
|
messages?: {
|
|
6492
6492
|
text: string;
|
|
6493
|
-
type: "
|
|
6493
|
+
type: "success" | "error" | "info" | "warning";
|
|
6494
6494
|
id?: number | undefined;
|
|
6495
6495
|
}[] | undefined;
|
|
6496
6496
|
required?: boolean | undefined;
|
|
@@ -6512,7 +6512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6512
6512
|
hint?: string | undefined;
|
|
6513
6513
|
messages?: {
|
|
6514
6514
|
text: string;
|
|
6515
|
-
type: "
|
|
6515
|
+
type: "success" | "error" | "info" | "warning";
|
|
6516
6516
|
id?: number | undefined;
|
|
6517
6517
|
}[] | undefined;
|
|
6518
6518
|
required?: boolean | undefined;
|
|
@@ -6531,7 +6531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6531
6531
|
hint?: string | undefined;
|
|
6532
6532
|
messages?: {
|
|
6533
6533
|
text: string;
|
|
6534
|
-
type: "
|
|
6534
|
+
type: "success" | "error" | "info" | "warning";
|
|
6535
6535
|
id?: number | undefined;
|
|
6536
6536
|
}[] | undefined;
|
|
6537
6537
|
required?: boolean | undefined;
|
|
@@ -6556,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6556
6556
|
hint?: string | undefined;
|
|
6557
6557
|
messages?: {
|
|
6558
6558
|
text: string;
|
|
6559
|
-
type: "
|
|
6559
|
+
type: "success" | "error" | "info" | "warning";
|
|
6560
6560
|
id?: number | undefined;
|
|
6561
6561
|
}[] | undefined;
|
|
6562
6562
|
required?: boolean | undefined;
|
|
@@ -6577,7 +6577,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6577
6577
|
hint?: string | undefined;
|
|
6578
6578
|
messages?: {
|
|
6579
6579
|
text: string;
|
|
6580
|
-
type: "
|
|
6580
|
+
type: "success" | "error" | "info" | "warning";
|
|
6581
6581
|
id?: number | undefined;
|
|
6582
6582
|
}[] | undefined;
|
|
6583
6583
|
required?: boolean | undefined;
|
|
@@ -6598,7 +6598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6598
6598
|
hint?: string | undefined;
|
|
6599
6599
|
messages?: {
|
|
6600
6600
|
text: string;
|
|
6601
|
-
type: "
|
|
6601
|
+
type: "success" | "error" | "info" | "warning";
|
|
6602
6602
|
id?: number | undefined;
|
|
6603
6603
|
}[] | undefined;
|
|
6604
6604
|
required?: boolean | undefined;
|
|
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6828
|
};
|
|
6829
6829
|
};
|
|
6830
6830
|
output: {
|
|
6831
|
-
prompt: "
|
|
6831
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
6832
6832
|
language: string;
|
|
6833
6833
|
}[];
|
|
6834
6834
|
outputFormat: "json";
|
|
@@ -6866,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6866
|
$get: {
|
|
6867
6867
|
input: {
|
|
6868
6868
|
param: {
|
|
6869
|
-
prompt: "
|
|
6869
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
6870
6870
|
language: string;
|
|
6871
6871
|
};
|
|
6872
6872
|
} & {
|
|
@@ -6888,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6888
|
$put: {
|
|
6889
6889
|
input: {
|
|
6890
6890
|
param: {
|
|
6891
|
-
prompt: "
|
|
6891
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
6892
6892
|
language: string;
|
|
6893
6893
|
};
|
|
6894
6894
|
} & {
|
|
@@ -6912,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6912
|
$delete: {
|
|
6913
6913
|
input: {
|
|
6914
6914
|
param: {
|
|
6915
|
-
prompt: "
|
|
6915
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
6916
6916
|
language: string;
|
|
6917
6917
|
};
|
|
6918
6918
|
} & {
|
|
@@ -7051,7 +7051,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7051
7051
|
} | undefined;
|
|
7052
7052
|
} | undefined;
|
|
7053
7053
|
passkey_options?: {
|
|
7054
|
-
challenge_ui?: "
|
|
7054
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7055
7055
|
local_enrollment_enabled?: boolean | undefined;
|
|
7056
7056
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7057
7057
|
} | undefined;
|
|
@@ -7185,7 +7185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7185
7185
|
} | undefined;
|
|
7186
7186
|
} | undefined;
|
|
7187
7187
|
passkey_options?: {
|
|
7188
|
-
challenge_ui?: "
|
|
7188
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7189
7189
|
local_enrollment_enabled?: boolean | undefined;
|
|
7190
7190
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7191
7191
|
} | undefined;
|
|
@@ -7334,7 +7334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7334
7334
|
} | undefined;
|
|
7335
7335
|
} | undefined;
|
|
7336
7336
|
passkey_options?: {
|
|
7337
|
-
challenge_ui?: "
|
|
7337
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7338
7338
|
local_enrollment_enabled?: boolean | undefined;
|
|
7339
7339
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7340
7340
|
} | undefined;
|
|
@@ -7513,7 +7513,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7513
7513
|
} | undefined;
|
|
7514
7514
|
} | undefined;
|
|
7515
7515
|
passkey_options?: {
|
|
7516
|
-
challenge_ui?: "
|
|
7516
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7517
7517
|
local_enrollment_enabled?: boolean | undefined;
|
|
7518
7518
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7519
7519
|
} | undefined;
|
|
@@ -7671,7 +7671,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7671
7671
|
} | undefined;
|
|
7672
7672
|
} | undefined;
|
|
7673
7673
|
passkey_options?: {
|
|
7674
|
-
challenge_ui?: "
|
|
7674
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7675
7675
|
local_enrollment_enabled?: boolean | undefined;
|
|
7676
7676
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7677
7677
|
} | undefined;
|
|
@@ -7774,7 +7774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7774
7774
|
};
|
|
7775
7775
|
} | {
|
|
7776
7776
|
mode: "inline";
|
|
7777
|
-
status: "
|
|
7777
|
+
status: "success" | "error";
|
|
7778
7778
|
connection_id: string;
|
|
7779
7779
|
connection_name: string;
|
|
7780
7780
|
strategy: string;
|
|
@@ -7810,7 +7810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7810
7810
|
tenant_id: string;
|
|
7811
7811
|
created_at: string;
|
|
7812
7812
|
updated_at: string;
|
|
7813
|
-
deploymentStatus: "
|
|
7813
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7814
7814
|
secrets?: {
|
|
7815
7815
|
[x: string]: string;
|
|
7816
7816
|
} | undefined;
|
|
@@ -7900,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7900
7900
|
tenant_id: string;
|
|
7901
7901
|
created_at: string;
|
|
7902
7902
|
updated_at: string;
|
|
7903
|
-
deploymentStatus: "
|
|
7903
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7904
7904
|
secrets?: {
|
|
7905
7905
|
[x: string]: string;
|
|
7906
7906
|
} | undefined;
|
|
@@ -7948,7 +7948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7948
7948
|
};
|
|
7949
7949
|
};
|
|
7950
7950
|
output: ({
|
|
7951
|
-
trigger_id: "
|
|
7951
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7952
7952
|
enabled: boolean;
|
|
7953
7953
|
synchronous: boolean;
|
|
7954
7954
|
created_at: string;
|
|
@@ -7960,7 +7960,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7960
7960
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7961
7961
|
} | undefined;
|
|
7962
7962
|
} | {
|
|
7963
|
-
trigger_id: "
|
|
7963
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7964
7964
|
enabled: boolean;
|
|
7965
7965
|
synchronous: boolean;
|
|
7966
7966
|
created_at: string;
|
|
@@ -7972,7 +7972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7972
7972
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7973
7973
|
} | undefined;
|
|
7974
7974
|
} | {
|
|
7975
|
-
trigger_id: "post-user-
|
|
7975
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7976
7976
|
enabled: boolean;
|
|
7977
7977
|
synchronous: boolean;
|
|
7978
7978
|
created_at: string;
|
|
@@ -7984,7 +7984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7984
7984
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7985
7985
|
} | undefined;
|
|
7986
7986
|
} | {
|
|
7987
|
-
trigger_id: "
|
|
7987
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
7988
7988
|
enabled: boolean;
|
|
7989
7989
|
synchronous: boolean;
|
|
7990
7990
|
created_at: string;
|
|
@@ -8000,7 +8000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8000
8000
|
limit: number;
|
|
8001
8001
|
length: number;
|
|
8002
8002
|
hooks: ({
|
|
8003
|
-
trigger_id: "
|
|
8003
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8004
8004
|
enabled: boolean;
|
|
8005
8005
|
synchronous: boolean;
|
|
8006
8006
|
created_at: string;
|
|
@@ -8012,7 +8012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8012
8012
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8013
8013
|
} | undefined;
|
|
8014
8014
|
} | {
|
|
8015
|
-
trigger_id: "
|
|
8015
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8016
8016
|
enabled: boolean;
|
|
8017
8017
|
synchronous: boolean;
|
|
8018
8018
|
created_at: string;
|
|
@@ -8024,7 +8024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8024
8024
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8025
8025
|
} | undefined;
|
|
8026
8026
|
} | {
|
|
8027
|
-
trigger_id: "post-user-
|
|
8027
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8028
8028
|
enabled: boolean;
|
|
8029
8029
|
synchronous: boolean;
|
|
8030
8030
|
created_at: string;
|
|
@@ -8036,7 +8036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8036
8036
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8037
8037
|
} | undefined;
|
|
8038
8038
|
} | {
|
|
8039
|
-
trigger_id: "
|
|
8039
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
8040
8040
|
enabled: boolean;
|
|
8041
8041
|
synchronous: boolean;
|
|
8042
8042
|
created_at: string;
|
|
@@ -8063,7 +8063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8063
8063
|
};
|
|
8064
8064
|
} & {
|
|
8065
8065
|
json: {
|
|
8066
|
-
trigger_id: "
|
|
8066
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8067
8067
|
url: string;
|
|
8068
8068
|
enabled?: boolean | undefined;
|
|
8069
8069
|
synchronous?: boolean | undefined;
|
|
@@ -8071,7 +8071,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8071
8071
|
hook_id?: string | undefined;
|
|
8072
8072
|
metadata?: Record<string, unknown> | undefined;
|
|
8073
8073
|
} | {
|
|
8074
|
-
trigger_id: "
|
|
8074
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8075
8075
|
form_id: string;
|
|
8076
8076
|
enabled?: boolean | undefined;
|
|
8077
8077
|
synchronous?: boolean | undefined;
|
|
@@ -8079,7 +8079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8079
8079
|
hook_id?: string | undefined;
|
|
8080
8080
|
metadata?: Record<string, unknown> | undefined;
|
|
8081
8081
|
} | {
|
|
8082
|
-
trigger_id: "post-user-
|
|
8082
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8083
8083
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
8084
8084
|
enabled?: boolean | undefined;
|
|
8085
8085
|
synchronous?: boolean | undefined;
|
|
@@ -8087,7 +8087,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8087
8087
|
hook_id?: string | undefined;
|
|
8088
8088
|
metadata?: Record<string, unknown> | undefined;
|
|
8089
8089
|
} | {
|
|
8090
|
-
trigger_id: "
|
|
8090
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
8091
8091
|
code_id: string;
|
|
8092
8092
|
enabled?: boolean | undefined;
|
|
8093
8093
|
synchronous?: boolean | undefined;
|
|
@@ -8097,7 +8097,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8097
8097
|
};
|
|
8098
8098
|
};
|
|
8099
8099
|
output: {
|
|
8100
|
-
trigger_id: "
|
|
8100
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8101
8101
|
enabled: boolean;
|
|
8102
8102
|
synchronous: boolean;
|
|
8103
8103
|
created_at: string;
|
|
@@ -8109,7 +8109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8109
8109
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8110
8110
|
} | undefined;
|
|
8111
8111
|
} | {
|
|
8112
|
-
trigger_id: "
|
|
8112
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8113
8113
|
enabled: boolean;
|
|
8114
8114
|
synchronous: boolean;
|
|
8115
8115
|
created_at: string;
|
|
@@ -8121,7 +8121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8121
8121
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8122
8122
|
} | undefined;
|
|
8123
8123
|
} | {
|
|
8124
|
-
trigger_id: "post-user-
|
|
8124
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8125
8125
|
enabled: boolean;
|
|
8126
8126
|
synchronous: boolean;
|
|
8127
8127
|
created_at: string;
|
|
@@ -8133,7 +8133,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8133
8133
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8134
8134
|
} | undefined;
|
|
8135
8135
|
} | {
|
|
8136
|
-
trigger_id: "
|
|
8136
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
8137
8137
|
enabled: boolean;
|
|
8138
8138
|
synchronous: boolean;
|
|
8139
8139
|
created_at: string;
|
|
@@ -8179,7 +8179,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8179
8179
|
json: unknown;
|
|
8180
8180
|
};
|
|
8181
8181
|
output: {
|
|
8182
|
-
trigger_id: "
|
|
8182
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8183
8183
|
enabled: boolean;
|
|
8184
8184
|
synchronous: boolean;
|
|
8185
8185
|
created_at: string;
|
|
@@ -8191,7 +8191,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8191
8191
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8192
8192
|
} | undefined;
|
|
8193
8193
|
} | {
|
|
8194
|
-
trigger_id: "
|
|
8194
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8195
8195
|
enabled: boolean;
|
|
8196
8196
|
synchronous: boolean;
|
|
8197
8197
|
created_at: string;
|
|
@@ -8203,7 +8203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8203
8203
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8204
8204
|
} | undefined;
|
|
8205
8205
|
} | {
|
|
8206
|
-
trigger_id: "post-user-
|
|
8206
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8207
8207
|
enabled: boolean;
|
|
8208
8208
|
synchronous: boolean;
|
|
8209
8209
|
created_at: string;
|
|
@@ -8215,7 +8215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8215
8215
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8216
8216
|
} | undefined;
|
|
8217
8217
|
} | {
|
|
8218
|
-
trigger_id: "
|
|
8218
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
8219
8219
|
enabled: boolean;
|
|
8220
8220
|
synchronous: boolean;
|
|
8221
8221
|
created_at: string;
|
|
@@ -8257,7 +8257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8257
8257
|
};
|
|
8258
8258
|
};
|
|
8259
8259
|
output: {
|
|
8260
|
-
trigger_id: "
|
|
8260
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8261
8261
|
enabled: boolean;
|
|
8262
8262
|
synchronous: boolean;
|
|
8263
8263
|
created_at: string;
|
|
@@ -8269,7 +8269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8269
8269
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8270
8270
|
} | undefined;
|
|
8271
8271
|
} | {
|
|
8272
|
-
trigger_id: "
|
|
8272
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8273
8273
|
enabled: boolean;
|
|
8274
8274
|
synchronous: boolean;
|
|
8275
8275
|
created_at: string;
|
|
@@ -8281,7 +8281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8281
8281
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8282
8282
|
} | undefined;
|
|
8283
8283
|
} | {
|
|
8284
|
-
trigger_id: "post-user-
|
|
8284
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8285
8285
|
enabled: boolean;
|
|
8286
8286
|
synchronous: boolean;
|
|
8287
8287
|
created_at: string;
|
|
@@ -8293,7 +8293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8293
8293
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8294
8294
|
} | undefined;
|
|
8295
8295
|
} | {
|
|
8296
|
-
trigger_id: "
|
|
8296
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
8297
8297
|
enabled: boolean;
|
|
8298
8298
|
synchronous: boolean;
|
|
8299
8299
|
created_at: string;
|
|
@@ -8411,9 +8411,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8411
8411
|
tenant_id: string;
|
|
8412
8412
|
event_type: string;
|
|
8413
8413
|
log_type: string;
|
|
8414
|
-
category: "
|
|
8414
|
+
category: "api" | "user_action" | "admin_action" | "system";
|
|
8415
8415
|
actor: {
|
|
8416
|
-
type: "user" | "
|
|
8416
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8417
8417
|
id?: string | undefined;
|
|
8418
8418
|
email?: string | undefined;
|
|
8419
8419
|
org_id?: string | undefined;
|
|
@@ -8723,7 +8723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8723
8723
|
created_at: string;
|
|
8724
8724
|
updated_at: string;
|
|
8725
8725
|
name: string;
|
|
8726
|
-
provider: "auth0" | "
|
|
8726
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8727
8727
|
connection: string;
|
|
8728
8728
|
enabled: boolean;
|
|
8729
8729
|
credentials: {
|
|
@@ -8755,7 +8755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8755
8755
|
created_at: string;
|
|
8756
8756
|
updated_at: string;
|
|
8757
8757
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8758
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8759
8759
|
connection: string;
|
|
8760
8760
|
enabled: boolean;
|
|
8761
8761
|
credentials: {
|
|
@@ -8781,7 +8781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8781
8781
|
} & {
|
|
8782
8782
|
json: {
|
|
8783
8783
|
name: string;
|
|
8784
|
-
provider: "auth0" | "
|
|
8784
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8785
8785
|
connection: string;
|
|
8786
8786
|
credentials: {
|
|
8787
8787
|
domain: string;
|
|
@@ -8798,7 +8798,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8798
8798
|
created_at: string;
|
|
8799
8799
|
updated_at: string;
|
|
8800
8800
|
name: string;
|
|
8801
|
-
provider: "auth0" | "
|
|
8801
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8802
8802
|
connection: string;
|
|
8803
8803
|
enabled: boolean;
|
|
8804
8804
|
credentials: {
|
|
@@ -8829,7 +8829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8829
8829
|
json: {
|
|
8830
8830
|
id?: string | undefined;
|
|
8831
8831
|
name?: string | undefined;
|
|
8832
|
-
provider?: "auth0" | "
|
|
8832
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8833
8833
|
connection?: string | undefined;
|
|
8834
8834
|
enabled?: boolean | undefined;
|
|
8835
8835
|
credentials?: {
|
|
@@ -8845,7 +8845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8845
8845
|
created_at: string;
|
|
8846
8846
|
updated_at: string;
|
|
8847
8847
|
name: string;
|
|
8848
|
-
provider: "auth0" | "
|
|
8848
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8849
8849
|
connection: string;
|
|
8850
8850
|
enabled: boolean;
|
|
8851
8851
|
credentials: {
|
|
@@ -8893,7 +8893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8893
8893
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8894
8894
|
};
|
|
8895
8895
|
id: string;
|
|
8896
|
-
status: "
|
|
8896
|
+
status: "suspended" | "active" | "paused";
|
|
8897
8897
|
filters?: {
|
|
8898
8898
|
type: string;
|
|
8899
8899
|
name: string;
|
|
@@ -8925,7 +8925,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8925
8925
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8926
8926
|
};
|
|
8927
8927
|
id: string;
|
|
8928
|
-
status: "
|
|
8928
|
+
status: "suspended" | "active" | "paused";
|
|
8929
8929
|
filters?: {
|
|
8930
8930
|
type: string;
|
|
8931
8931
|
name: string;
|
|
@@ -8950,7 +8950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8950
8950
|
name: string;
|
|
8951
8951
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8952
8952
|
sink: Record<string, unknown>;
|
|
8953
|
-
status?: "
|
|
8953
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8954
8954
|
filters?: {
|
|
8955
8955
|
type: string;
|
|
8956
8956
|
name: string;
|
|
@@ -8965,7 +8965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8965
8965
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8966
8966
|
};
|
|
8967
8967
|
id: string;
|
|
8968
|
-
status: "
|
|
8968
|
+
status: "suspended" | "active" | "paused";
|
|
8969
8969
|
filters?: {
|
|
8970
8970
|
type: string;
|
|
8971
8971
|
name: string;
|
|
@@ -9000,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9000
|
}[] | undefined;
|
|
9001
9001
|
isPriority?: boolean | undefined;
|
|
9002
9002
|
id?: string | undefined;
|
|
9003
|
-
status?: "
|
|
9003
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9004
9004
|
created_at?: string | undefined;
|
|
9005
9005
|
updated_at?: string | undefined;
|
|
9006
9006
|
};
|
|
@@ -9012,7 +9012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9012
9012
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9013
9013
|
};
|
|
9014
9014
|
id: string;
|
|
9015
|
-
status: "
|
|
9015
|
+
status: "suspended" | "active" | "paused";
|
|
9016
9016
|
filters?: {
|
|
9017
9017
|
type: string;
|
|
9018
9018
|
name: string;
|
|
@@ -9063,7 +9063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9063
|
};
|
|
9064
9064
|
};
|
|
9065
9065
|
output: {
|
|
9066
|
-
type: "
|
|
9066
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9067
9067
|
date: string;
|
|
9068
9068
|
isMobile: boolean;
|
|
9069
9069
|
log_id: string;
|
|
@@ -9102,7 +9102,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9102
|
limit: number;
|
|
9103
9103
|
length: number;
|
|
9104
9104
|
logs: {
|
|
9105
|
-
type: "
|
|
9105
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9106
9106
|
date: string;
|
|
9107
9107
|
isMobile: boolean;
|
|
9108
9108
|
log_id: string;
|
|
@@ -9156,7 +9156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9156
|
};
|
|
9157
9157
|
};
|
|
9158
9158
|
output: {
|
|
9159
|
-
type: "
|
|
9159
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9160
9160
|
date: string;
|
|
9161
9161
|
isMobile: boolean;
|
|
9162
9162
|
log_id: string;
|
|
@@ -9311,7 +9311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9311
9311
|
audience?: string | undefined;
|
|
9312
9312
|
client_id?: string | undefined;
|
|
9313
9313
|
allow_any_organization?: string | undefined;
|
|
9314
|
-
subject_type?: "
|
|
9314
|
+
subject_type?: "client" | "user" | undefined;
|
|
9315
9315
|
};
|
|
9316
9316
|
} & {
|
|
9317
9317
|
header: {
|
|
@@ -9326,7 +9326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9326
9326
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9327
9327
|
allow_any_organization?: boolean | undefined;
|
|
9328
9328
|
is_system?: boolean | undefined;
|
|
9329
|
-
subject_type?: "
|
|
9329
|
+
subject_type?: "client" | "user" | undefined;
|
|
9330
9330
|
authorization_details_types?: string[] | undefined;
|
|
9331
9331
|
created_at?: string | undefined;
|
|
9332
9332
|
updated_at?: string | undefined;
|
|
@@ -9342,7 +9342,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9342
9342
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9343
9343
|
allow_any_organization?: boolean | undefined;
|
|
9344
9344
|
is_system?: boolean | undefined;
|
|
9345
|
-
subject_type?: "
|
|
9345
|
+
subject_type?: "client" | "user" | undefined;
|
|
9346
9346
|
authorization_details_types?: string[] | undefined;
|
|
9347
9347
|
created_at?: string | undefined;
|
|
9348
9348
|
updated_at?: string | undefined;
|
|
@@ -9373,7 +9373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9373
9373
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9374
9374
|
allow_any_organization?: boolean | undefined;
|
|
9375
9375
|
is_system?: boolean | undefined;
|
|
9376
|
-
subject_type?: "
|
|
9376
|
+
subject_type?: "client" | "user" | undefined;
|
|
9377
9377
|
authorization_details_types?: string[] | undefined;
|
|
9378
9378
|
created_at?: string | undefined;
|
|
9379
9379
|
updated_at?: string | undefined;
|
|
@@ -9418,7 +9418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9418
9418
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9419
9419
|
allow_any_organization?: boolean | undefined;
|
|
9420
9420
|
is_system?: boolean | undefined;
|
|
9421
|
-
subject_type?: "
|
|
9421
|
+
subject_type?: "client" | "user" | undefined;
|
|
9422
9422
|
authorization_details_types?: string[] | undefined;
|
|
9423
9423
|
};
|
|
9424
9424
|
};
|
|
@@ -9430,7 +9430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9430
9430
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9431
9431
|
allow_any_organization?: boolean | undefined;
|
|
9432
9432
|
is_system?: boolean | undefined;
|
|
9433
|
-
subject_type?: "
|
|
9433
|
+
subject_type?: "client" | "user" | undefined;
|
|
9434
9434
|
authorization_details_types?: string[] | undefined;
|
|
9435
9435
|
created_at?: string | undefined;
|
|
9436
9436
|
updated_at?: string | undefined;
|
|
@@ -9454,7 +9454,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9454
9454
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9455
9455
|
allow_any_organization?: boolean | undefined;
|
|
9456
9456
|
is_system?: boolean | undefined;
|
|
9457
|
-
subject_type?: "
|
|
9457
|
+
subject_type?: "client" | "user" | undefined;
|
|
9458
9458
|
authorization_details_types?: string[] | undefined;
|
|
9459
9459
|
};
|
|
9460
9460
|
};
|
|
@@ -9466,7 +9466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9466
9466
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9467
9467
|
allow_any_organization?: boolean | undefined;
|
|
9468
9468
|
is_system?: boolean | undefined;
|
|
9469
|
-
subject_type?: "
|
|
9469
|
+
subject_type?: "client" | "user" | undefined;
|
|
9470
9470
|
authorization_details_types?: string[] | undefined;
|
|
9471
9471
|
created_at?: string | undefined;
|
|
9472
9472
|
updated_at?: string | undefined;
|
|
@@ -9544,7 +9544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9544
|
addons?: {
|
|
9545
9545
|
[x: string]: any;
|
|
9546
9546
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "none" | "
|
|
9547
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9548
9548
|
client_metadata?: {
|
|
9549
9549
|
[x: string]: string;
|
|
9550
9550
|
} | undefined;
|
|
@@ -9640,7 +9640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9640
|
addons?: {
|
|
9641
9641
|
[x: string]: any;
|
|
9642
9642
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "none" | "
|
|
9643
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9644
9644
|
client_metadata?: {
|
|
9645
9645
|
[x: string]: string;
|
|
9646
9646
|
} | undefined;
|
|
@@ -9751,7 +9751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9751
|
addons?: {
|
|
9752
9752
|
[x: string]: any;
|
|
9753
9753
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "none" | "
|
|
9754
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9755
9755
|
client_metadata?: {
|
|
9756
9756
|
[x: string]: string;
|
|
9757
9757
|
} | undefined;
|
|
@@ -9861,7 +9861,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
9861
|
custom_login_page_preview?: string | undefined;
|
|
9862
9862
|
form_template?: string | undefined;
|
|
9863
9863
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "none" | "
|
|
9864
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9865
9865
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
9866
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
9867
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +9941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
9941
|
addons?: {
|
|
9942
9942
|
[x: string]: any;
|
|
9943
9943
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "none" | "
|
|
9944
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9945
9945
|
client_metadata?: {
|
|
9946
9946
|
[x: string]: string;
|
|
9947
9947
|
} | undefined;
|
|
@@ -10030,7 +10030,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10030
|
custom_login_page_preview?: string | undefined;
|
|
10031
10031
|
form_template?: string | undefined;
|
|
10032
10032
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "none" | "
|
|
10033
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10034
10034
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10035
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10036
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10110
|
addons?: {
|
|
10111
10111
|
[x: string]: any;
|
|
10112
10112
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "none" | "
|
|
10113
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10114
10114
|
client_metadata?: {
|
|
10115
10115
|
[x: string]: string;
|
|
10116
10116
|
} | undefined;
|
|
@@ -10279,7 +10279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10279
10279
|
} | undefined;
|
|
10280
10280
|
} | undefined;
|
|
10281
10281
|
passkey_options?: {
|
|
10282
|
-
challenge_ui?: "
|
|
10282
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10283
10283
|
local_enrollment_enabled?: boolean | undefined;
|
|
10284
10284
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10285
10285
|
} | undefined;
|
|
@@ -10433,7 +10433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10433
10433
|
} | undefined;
|
|
10434
10434
|
} | undefined;
|
|
10435
10435
|
passkey_options?: {
|
|
10436
|
-
challenge_ui?: "
|
|
10436
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10437
10437
|
local_enrollment_enabled?: boolean | undefined;
|
|
10438
10438
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10439
10439
|
} | undefined;
|
|
@@ -11374,7 +11374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11374
|
};
|
|
11375
11375
|
};
|
|
11376
11376
|
output: {
|
|
11377
|
-
type: "
|
|
11377
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
11378
11378
|
date: string;
|
|
11379
11379
|
isMobile: boolean;
|
|
11380
11380
|
log_id: string;
|
|
@@ -11413,7 +11413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11413
|
limit: number;
|
|
11414
11414
|
length: number;
|
|
11415
11415
|
logs: {
|
|
11416
|
-
type: "
|
|
11416
|
+
type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
11417
11417
|
date: string;
|
|
11418
11418
|
isMobile: boolean;
|
|
11419
11419
|
log_id: string;
|
|
@@ -11507,6 +11507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11507
11507
|
permissions: {
|
|
11508
11508
|
permission_name: string;
|
|
11509
11509
|
resource_server_identifier: string;
|
|
11510
|
+
organization_id?: string | undefined;
|
|
11510
11511
|
}[];
|
|
11511
11512
|
};
|
|
11512
11513
|
};
|
|
@@ -11531,6 +11532,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11531
11532
|
permissions: {
|
|
11532
11533
|
permission_name: string;
|
|
11533
11534
|
resource_server_identifier: string;
|
|
11535
|
+
organization_id?: string | undefined;
|
|
11534
11536
|
}[];
|
|
11535
11537
|
};
|
|
11536
11538
|
};
|
|
@@ -11728,7 +11730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11728
11730
|
};
|
|
11729
11731
|
} & {
|
|
11730
11732
|
json: {
|
|
11731
|
-
template: "
|
|
11733
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11732
11734
|
body: string;
|
|
11733
11735
|
from: string;
|
|
11734
11736
|
subject: string;
|
|
@@ -11749,7 +11751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11749
11751
|
};
|
|
11750
11752
|
} & {
|
|
11751
11753
|
json: {
|
|
11752
|
-
template: "
|
|
11754
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11753
11755
|
body: string;
|
|
11754
11756
|
from: string;
|
|
11755
11757
|
subject: string;
|
|
@@ -11761,7 +11763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11761
11763
|
};
|
|
11762
11764
|
};
|
|
11763
11765
|
output: {
|
|
11764
|
-
template: "
|
|
11766
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11765
11767
|
body: string;
|
|
11766
11768
|
from: string;
|
|
11767
11769
|
subject: string;
|
|
@@ -11784,7 +11786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11784
11786
|
};
|
|
11785
11787
|
};
|
|
11786
11788
|
output: {
|
|
11787
|
-
name: "
|
|
11789
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11788
11790
|
body: string;
|
|
11789
11791
|
subject: string;
|
|
11790
11792
|
}[];
|
|
@@ -11797,7 +11799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11797
11799
|
$get: {
|
|
11798
11800
|
input: {
|
|
11799
11801
|
param: {
|
|
11800
|
-
templateName: "
|
|
11802
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11801
11803
|
};
|
|
11802
11804
|
} & {
|
|
11803
11805
|
header: {
|
|
@@ -11810,7 +11812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11810
11812
|
} | {
|
|
11811
11813
|
input: {
|
|
11812
11814
|
param: {
|
|
11813
|
-
templateName: "
|
|
11815
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11814
11816
|
};
|
|
11815
11817
|
} & {
|
|
11816
11818
|
header: {
|
|
@@ -11818,7 +11820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11818
11820
|
};
|
|
11819
11821
|
};
|
|
11820
11822
|
output: {
|
|
11821
|
-
template: "
|
|
11823
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11822
11824
|
body: string;
|
|
11823
11825
|
from: string;
|
|
11824
11826
|
subject: string;
|
|
@@ -11837,7 +11839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11837
11839
|
$put: {
|
|
11838
11840
|
input: {
|
|
11839
11841
|
param: {
|
|
11840
|
-
templateName: "
|
|
11842
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11841
11843
|
};
|
|
11842
11844
|
} & {
|
|
11843
11845
|
header: {
|
|
@@ -11845,7 +11847,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11845
11847
|
};
|
|
11846
11848
|
} & {
|
|
11847
11849
|
json: {
|
|
11848
|
-
template: "
|
|
11850
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11849
11851
|
body: string;
|
|
11850
11852
|
subject: string;
|
|
11851
11853
|
syntax?: "liquid" | undefined;
|
|
@@ -11857,7 +11859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11857
11859
|
};
|
|
11858
11860
|
};
|
|
11859
11861
|
output: {
|
|
11860
|
-
template: "
|
|
11862
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11861
11863
|
body: string;
|
|
11862
11864
|
from: string;
|
|
11863
11865
|
subject: string;
|
|
@@ -11876,7 +11878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11876
11878
|
$patch: {
|
|
11877
11879
|
input: {
|
|
11878
11880
|
param: {
|
|
11879
|
-
templateName: "
|
|
11881
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11880
11882
|
};
|
|
11881
11883
|
} & {
|
|
11882
11884
|
header: {
|
|
@@ -11884,7 +11886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11884
11886
|
};
|
|
11885
11887
|
} & {
|
|
11886
11888
|
json: {
|
|
11887
|
-
template?: "
|
|
11889
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11888
11890
|
body?: string | undefined;
|
|
11889
11891
|
from?: string | undefined;
|
|
11890
11892
|
subject?: string | undefined;
|
|
@@ -11901,7 +11903,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11901
11903
|
} | {
|
|
11902
11904
|
input: {
|
|
11903
11905
|
param: {
|
|
11904
|
-
templateName: "
|
|
11906
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11905
11907
|
};
|
|
11906
11908
|
} & {
|
|
11907
11909
|
header: {
|
|
@@ -11909,7 +11911,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11909
11911
|
};
|
|
11910
11912
|
} & {
|
|
11911
11913
|
json: {
|
|
11912
|
-
template?: "
|
|
11914
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11913
11915
|
body?: string | undefined;
|
|
11914
11916
|
from?: string | undefined;
|
|
11915
11917
|
subject?: string | undefined;
|
|
@@ -11921,7 +11923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11921
11923
|
};
|
|
11922
11924
|
};
|
|
11923
11925
|
output: {
|
|
11924
|
-
template: "
|
|
11926
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11925
11927
|
body: string;
|
|
11926
11928
|
from: string;
|
|
11927
11929
|
subject: string;
|
|
@@ -11940,7 +11942,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11940
11942
|
$delete: {
|
|
11941
11943
|
input: {
|
|
11942
11944
|
param: {
|
|
11943
|
-
templateName: "
|
|
11945
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11944
11946
|
};
|
|
11945
11947
|
} & {
|
|
11946
11948
|
header: {
|
|
@@ -11953,7 +11955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11953
11955
|
} | {
|
|
11954
11956
|
input: {
|
|
11955
11957
|
param: {
|
|
11956
|
-
templateName: "
|
|
11958
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11957
11959
|
};
|
|
11958
11960
|
} & {
|
|
11959
11961
|
header: {
|
|
@@ -11970,7 +11972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11970
11972
|
$post: {
|
|
11971
11973
|
input: {
|
|
11972
11974
|
param: {
|
|
11973
|
-
templateName: "
|
|
11975
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11974
11976
|
};
|
|
11975
11977
|
} & {
|
|
11976
11978
|
header: {
|
|
@@ -12922,7 +12924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12922
12924
|
} & {
|
|
12923
12925
|
json: {
|
|
12924
12926
|
body?: string | undefined;
|
|
12925
|
-
screen?: "
|
|
12927
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
12926
12928
|
branding?: {
|
|
12927
12929
|
colors?: {
|
|
12928
12930
|
primary: string;
|
|
@@ -13091,7 +13093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13091
13093
|
json: {
|
|
13092
13094
|
bindings: {
|
|
13093
13095
|
ref: {
|
|
13094
|
-
type?: "
|
|
13096
|
+
type?: "action_name" | "action_id" | undefined;
|
|
13095
13097
|
value?: string | undefined;
|
|
13096
13098
|
id?: string | undefined;
|
|
13097
13099
|
name?: string | undefined;
|
|
@@ -13166,7 +13168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13166
13168
|
output: {
|
|
13167
13169
|
id: string;
|
|
13168
13170
|
trigger_id: string;
|
|
13169
|
-
status: "
|
|
13171
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13170
13172
|
results: {
|
|
13171
13173
|
action_name: string;
|
|
13172
13174
|
error: {
|
|
@@ -13213,7 +13215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13213
13215
|
logs: {
|
|
13214
13216
|
action_name: string;
|
|
13215
13217
|
lines: {
|
|
13216
|
-
level: "
|
|
13218
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13217
13219
|
message: string;
|
|
13218
13220
|
}[];
|
|
13219
13221
|
}[];
|
|
@@ -13880,7 +13882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13880
13882
|
args: import("hono/utils/types").JSONValue[];
|
|
13881
13883
|
}[];
|
|
13882
13884
|
logs: {
|
|
13883
|
-
level: "
|
|
13885
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13884
13886
|
message: string;
|
|
13885
13887
|
}[];
|
|
13886
13888
|
error?: string | undefined;
|