authhero 8.21.0 → 8.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +529 -276
- package/dist/authhero.mjs +22201 -17447
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -7
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/index.d.ts +407 -273
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +46 -46
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +110 -15
- package/dist/types/routes/management-api/connections.d.ts +21 -21
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +353 -220
- package/dist/types/routes/management-api/logs.d.ts +41 -3
- 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/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/crypto.d.ts +3 -0
- package/dist/types/utils/jwks.d.ts +4 -4
- package/dist/types/utils/jwt.d.ts +29 -0
- package/dist/types/utils/request-origin.d.ts +6 -0
- package/dist/types/utils/totp.d.ts +10 -0
- package/package.json +6 -7
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "email" | "
|
|
239
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "email" | "
|
|
394
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "email" | "
|
|
402
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "email" | "
|
|
415
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "email" | "
|
|
427
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1204,9 +1204,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1204
1204
|
};
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
1206
|
connection_id?: string | undefined;
|
|
1207
|
-
roles?: string[] | undefined;
|
|
1208
1207
|
app_metadata?: Record<string, any> | undefined;
|
|
1209
1208
|
user_metadata?: Record<string, any> | undefined;
|
|
1209
|
+
roles?: string[] | undefined;
|
|
1210
1210
|
ttl_sec?: number | undefined;
|
|
1211
1211
|
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -2061,7 +2061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2061
2061
|
type: "REDIRECT";
|
|
2062
2062
|
action: "REDIRECT_USER";
|
|
2063
2063
|
params: {
|
|
2064
|
-
target: "custom" | "
|
|
2064
|
+
target: "custom" | "account" | "change-email";
|
|
2065
2065
|
custom_url?: string | undefined;
|
|
2066
2066
|
};
|
|
2067
2067
|
alias?: string | undefined;
|
|
@@ -2114,7 +2114,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2114
2114
|
type: "REDIRECT";
|
|
2115
2115
|
action: "REDIRECT_USER";
|
|
2116
2116
|
params: {
|
|
2117
|
-
target: "custom" | "
|
|
2117
|
+
target: "custom" | "account" | "change-email";
|
|
2118
2118
|
custom_url?: string | undefined;
|
|
2119
2119
|
};
|
|
2120
2120
|
alias?: string | undefined;
|
|
@@ -2183,7 +2183,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2183
2183
|
type: "REDIRECT";
|
|
2184
2184
|
action: "REDIRECT_USER";
|
|
2185
2185
|
params: {
|
|
2186
|
-
target: "custom" | "
|
|
2186
|
+
target: "custom" | "account" | "change-email";
|
|
2187
2187
|
custom_url?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
2189
|
alias?: string | undefined;
|
|
@@ -2264,7 +2264,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2264
2264
|
type: "REDIRECT";
|
|
2265
2265
|
action: "REDIRECT_USER";
|
|
2266
2266
|
params: {
|
|
2267
|
-
target: "custom" | "
|
|
2267
|
+
target: "custom" | "account" | "change-email";
|
|
2268
2268
|
custom_url?: string | undefined;
|
|
2269
2269
|
};
|
|
2270
2270
|
alias?: string | undefined;
|
|
@@ -2312,7 +2312,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2312
2312
|
type: "REDIRECT";
|
|
2313
2313
|
action: "REDIRECT_USER";
|
|
2314
2314
|
params: {
|
|
2315
|
-
target: "custom" | "
|
|
2315
|
+
target: "custom" | "account" | "change-email";
|
|
2316
2316
|
custom_url?: string | undefined;
|
|
2317
2317
|
};
|
|
2318
2318
|
alias?: string | undefined;
|
|
@@ -2372,7 +2372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2372
2372
|
type: "REDIRECT";
|
|
2373
2373
|
action: "REDIRECT_USER";
|
|
2374
2374
|
params: {
|
|
2375
|
-
target: "custom" | "
|
|
2375
|
+
target: "custom" | "account" | "change-email";
|
|
2376
2376
|
custom_url?: string | undefined;
|
|
2377
2377
|
};
|
|
2378
2378
|
alias?: string | undefined;
|
|
@@ -2420,7 +2420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2420
2420
|
type: "REDIRECT";
|
|
2421
2421
|
action: "REDIRECT_USER";
|
|
2422
2422
|
params: {
|
|
2423
|
-
target: "custom" | "
|
|
2423
|
+
target: "custom" | "account" | "change-email";
|
|
2424
2424
|
custom_url?: string | undefined;
|
|
2425
2425
|
};
|
|
2426
2426
|
alias?: string | undefined;
|
|
@@ -2638,7 +2638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2638
2638
|
hint?: string | undefined;
|
|
2639
2639
|
messages?: {
|
|
2640
2640
|
text: string;
|
|
2641
|
-
type: "
|
|
2641
|
+
type: "success" | "error" | "info" | "warning";
|
|
2642
2642
|
id?: number | undefined;
|
|
2643
2643
|
}[] | undefined;
|
|
2644
2644
|
required?: boolean | undefined;
|
|
@@ -2656,7 +2656,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2656
2656
|
hint?: string | undefined;
|
|
2657
2657
|
messages?: {
|
|
2658
2658
|
text: string;
|
|
2659
|
-
type: "
|
|
2659
|
+
type: "success" | "error" | "info" | "warning";
|
|
2660
2660
|
id?: number | undefined;
|
|
2661
2661
|
}[] | undefined;
|
|
2662
2662
|
required?: boolean | undefined;
|
|
@@ -2680,7 +2680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2680
2680
|
hint?: string | undefined;
|
|
2681
2681
|
messages?: {
|
|
2682
2682
|
text: string;
|
|
2683
|
-
type: "
|
|
2683
|
+
type: "success" | "error" | "info" | "warning";
|
|
2684
2684
|
id?: number | undefined;
|
|
2685
2685
|
}[] | undefined;
|
|
2686
2686
|
required?: boolean | undefined;
|
|
@@ -2704,7 +2704,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2704
2704
|
hint?: string | undefined;
|
|
2705
2705
|
messages?: {
|
|
2706
2706
|
text: string;
|
|
2707
|
-
type: "
|
|
2707
|
+
type: "success" | "error" | "info" | "warning";
|
|
2708
2708
|
id?: number | undefined;
|
|
2709
2709
|
}[] | undefined;
|
|
2710
2710
|
required?: boolean | undefined;
|
|
@@ -2728,7 +2728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2728
2728
|
hint?: string | undefined;
|
|
2729
2729
|
messages?: {
|
|
2730
2730
|
text: string;
|
|
2731
|
-
type: "
|
|
2731
|
+
type: "success" | "error" | "info" | "warning";
|
|
2732
2732
|
id?: number | undefined;
|
|
2733
2733
|
}[] | undefined;
|
|
2734
2734
|
required?: boolean | undefined;
|
|
@@ -2757,7 +2757,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2757
2757
|
hint?: string | undefined;
|
|
2758
2758
|
messages?: {
|
|
2759
2759
|
text: string;
|
|
2760
|
-
type: "
|
|
2760
|
+
type: "success" | "error" | "info" | "warning";
|
|
2761
2761
|
id?: number | undefined;
|
|
2762
2762
|
}[] | undefined;
|
|
2763
2763
|
required?: boolean | undefined;
|
|
@@ -2772,7 +2772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2772
2772
|
hint?: string | undefined;
|
|
2773
2773
|
messages?: {
|
|
2774
2774
|
text: string;
|
|
2775
|
-
type: "
|
|
2775
|
+
type: "success" | "error" | "info" | "warning";
|
|
2776
2776
|
id?: number | undefined;
|
|
2777
2777
|
}[] | undefined;
|
|
2778
2778
|
required?: boolean | undefined;
|
|
@@ -2793,7 +2793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2793
2793
|
hint?: string | undefined;
|
|
2794
2794
|
messages?: {
|
|
2795
2795
|
text: string;
|
|
2796
|
-
type: "
|
|
2796
|
+
type: "success" | "error" | "info" | "warning";
|
|
2797
2797
|
id?: number | undefined;
|
|
2798
2798
|
}[] | undefined;
|
|
2799
2799
|
required?: boolean | undefined;
|
|
@@ -2818,7 +2818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2818
2818
|
hint?: string | undefined;
|
|
2819
2819
|
messages?: {
|
|
2820
2820
|
text: string;
|
|
2821
|
-
type: "
|
|
2821
|
+
type: "success" | "error" | "info" | "warning";
|
|
2822
2822
|
id?: number | undefined;
|
|
2823
2823
|
}[] | undefined;
|
|
2824
2824
|
required?: boolean | undefined;
|
|
@@ -2837,7 +2837,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2837
2837
|
hint?: string | undefined;
|
|
2838
2838
|
messages?: {
|
|
2839
2839
|
text: string;
|
|
2840
|
-
type: "
|
|
2840
|
+
type: "success" | "error" | "info" | "warning";
|
|
2841
2841
|
id?: number | undefined;
|
|
2842
2842
|
}[] | undefined;
|
|
2843
2843
|
required?: boolean | undefined;
|
|
@@ -2857,7 +2857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2857
2857
|
hint?: string | undefined;
|
|
2858
2858
|
messages?: {
|
|
2859
2859
|
text: string;
|
|
2860
|
-
type: "
|
|
2860
|
+
type: "success" | "error" | "info" | "warning";
|
|
2861
2861
|
id?: number | undefined;
|
|
2862
2862
|
}[] | undefined;
|
|
2863
2863
|
required?: boolean | undefined;
|
|
@@ -2876,7 +2876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2876
2876
|
hint?: string | undefined;
|
|
2877
2877
|
messages?: {
|
|
2878
2878
|
text: string;
|
|
2879
|
-
type: "
|
|
2879
|
+
type: "success" | "error" | "info" | "warning";
|
|
2880
2880
|
id?: number | undefined;
|
|
2881
2881
|
}[] | undefined;
|
|
2882
2882
|
required?: boolean | undefined;
|
|
@@ -2898,7 +2898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2898
2898
|
hint?: string | undefined;
|
|
2899
2899
|
messages?: {
|
|
2900
2900
|
text: string;
|
|
2901
|
-
type: "
|
|
2901
|
+
type: "success" | "error" | "info" | "warning";
|
|
2902
2902
|
id?: number | undefined;
|
|
2903
2903
|
}[] | undefined;
|
|
2904
2904
|
required?: boolean | undefined;
|
|
@@ -2920,7 +2920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2920
2920
|
hint?: string | undefined;
|
|
2921
2921
|
messages?: {
|
|
2922
2922
|
text: string;
|
|
2923
|
-
type: "
|
|
2923
|
+
type: "success" | "error" | "info" | "warning";
|
|
2924
2924
|
id?: number | undefined;
|
|
2925
2925
|
}[] | undefined;
|
|
2926
2926
|
required?: boolean | undefined;
|
|
@@ -2939,7 +2939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2939
2939
|
hint?: string | undefined;
|
|
2940
2940
|
messages?: {
|
|
2941
2941
|
text: string;
|
|
2942
|
-
type: "
|
|
2942
|
+
type: "success" | "error" | "info" | "warning";
|
|
2943
2943
|
id?: number | undefined;
|
|
2944
2944
|
}[] | undefined;
|
|
2945
2945
|
required?: boolean | undefined;
|
|
@@ -2964,7 +2964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2964
2964
|
hint?: string | undefined;
|
|
2965
2965
|
messages?: {
|
|
2966
2966
|
text: string;
|
|
2967
|
-
type: "
|
|
2967
|
+
type: "success" | "error" | "info" | "warning";
|
|
2968
2968
|
id?: number | undefined;
|
|
2969
2969
|
}[] | undefined;
|
|
2970
2970
|
required?: boolean | undefined;
|
|
@@ -2985,7 +2985,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2985
2985
|
hint?: string | undefined;
|
|
2986
2986
|
messages?: {
|
|
2987
2987
|
text: string;
|
|
2988
|
-
type: "
|
|
2988
|
+
type: "success" | "error" | "info" | "warning";
|
|
2989
2989
|
id?: number | undefined;
|
|
2990
2990
|
}[] | undefined;
|
|
2991
2991
|
required?: boolean | undefined;
|
|
@@ -3006,7 +3006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3006
3006
|
hint?: string | undefined;
|
|
3007
3007
|
messages?: {
|
|
3008
3008
|
text: string;
|
|
3009
|
-
type: "
|
|
3009
|
+
type: "success" | "error" | "info" | "warning";
|
|
3010
3010
|
id?: number | undefined;
|
|
3011
3011
|
}[] | undefined;
|
|
3012
3012
|
required?: boolean | undefined;
|
|
@@ -3239,7 +3239,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3239
3239
|
hint?: string | undefined;
|
|
3240
3240
|
messages?: {
|
|
3241
3241
|
text: string;
|
|
3242
|
-
type: "
|
|
3242
|
+
type: "success" | "error" | "info" | "warning";
|
|
3243
3243
|
id?: number | undefined;
|
|
3244
3244
|
}[] | undefined;
|
|
3245
3245
|
required?: boolean | undefined;
|
|
@@ -3257,7 +3257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3257
3257
|
hint?: string | undefined;
|
|
3258
3258
|
messages?: {
|
|
3259
3259
|
text: string;
|
|
3260
|
-
type: "
|
|
3260
|
+
type: "success" | "error" | "info" | "warning";
|
|
3261
3261
|
id?: number | undefined;
|
|
3262
3262
|
}[] | undefined;
|
|
3263
3263
|
required?: boolean | undefined;
|
|
@@ -3281,7 +3281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3281
3281
|
hint?: string | undefined;
|
|
3282
3282
|
messages?: {
|
|
3283
3283
|
text: string;
|
|
3284
|
-
type: "
|
|
3284
|
+
type: "success" | "error" | "info" | "warning";
|
|
3285
3285
|
id?: number | undefined;
|
|
3286
3286
|
}[] | undefined;
|
|
3287
3287
|
required?: boolean | undefined;
|
|
@@ -3305,7 +3305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3305
3305
|
hint?: string | undefined;
|
|
3306
3306
|
messages?: {
|
|
3307
3307
|
text: string;
|
|
3308
|
-
type: "
|
|
3308
|
+
type: "success" | "error" | "info" | "warning";
|
|
3309
3309
|
id?: number | undefined;
|
|
3310
3310
|
}[] | undefined;
|
|
3311
3311
|
required?: boolean | undefined;
|
|
@@ -3329,7 +3329,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3329
3329
|
hint?: string | undefined;
|
|
3330
3330
|
messages?: {
|
|
3331
3331
|
text: string;
|
|
3332
|
-
type: "
|
|
3332
|
+
type: "success" | "error" | "info" | "warning";
|
|
3333
3333
|
id?: number | undefined;
|
|
3334
3334
|
}[] | undefined;
|
|
3335
3335
|
required?: boolean | undefined;
|
|
@@ -3358,7 +3358,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3358
3358
|
hint?: string | undefined;
|
|
3359
3359
|
messages?: {
|
|
3360
3360
|
text: string;
|
|
3361
|
-
type: "
|
|
3361
|
+
type: "success" | "error" | "info" | "warning";
|
|
3362
3362
|
id?: number | undefined;
|
|
3363
3363
|
}[] | undefined;
|
|
3364
3364
|
required?: boolean | undefined;
|
|
@@ -3373,7 +3373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3373
3373
|
hint?: string | undefined;
|
|
3374
3374
|
messages?: {
|
|
3375
3375
|
text: string;
|
|
3376
|
-
type: "
|
|
3376
|
+
type: "success" | "error" | "info" | "warning";
|
|
3377
3377
|
id?: number | undefined;
|
|
3378
3378
|
}[] | undefined;
|
|
3379
3379
|
required?: boolean | undefined;
|
|
@@ -3394,7 +3394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3394
3394
|
hint?: string | undefined;
|
|
3395
3395
|
messages?: {
|
|
3396
3396
|
text: string;
|
|
3397
|
-
type: "
|
|
3397
|
+
type: "success" | "error" | "info" | "warning";
|
|
3398
3398
|
id?: number | undefined;
|
|
3399
3399
|
}[] | undefined;
|
|
3400
3400
|
required?: boolean | undefined;
|
|
@@ -3419,7 +3419,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3419
3419
|
hint?: string | undefined;
|
|
3420
3420
|
messages?: {
|
|
3421
3421
|
text: string;
|
|
3422
|
-
type: "
|
|
3422
|
+
type: "success" | "error" | "info" | "warning";
|
|
3423
3423
|
id?: number | undefined;
|
|
3424
3424
|
}[] | undefined;
|
|
3425
3425
|
required?: boolean | undefined;
|
|
@@ -3438,7 +3438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3438
3438
|
hint?: string | undefined;
|
|
3439
3439
|
messages?: {
|
|
3440
3440
|
text: string;
|
|
3441
|
-
type: "
|
|
3441
|
+
type: "success" | "error" | "info" | "warning";
|
|
3442
3442
|
id?: number | undefined;
|
|
3443
3443
|
}[] | undefined;
|
|
3444
3444
|
required?: boolean | undefined;
|
|
@@ -3458,7 +3458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3458
3458
|
hint?: string | undefined;
|
|
3459
3459
|
messages?: {
|
|
3460
3460
|
text: string;
|
|
3461
|
-
type: "
|
|
3461
|
+
type: "success" | "error" | "info" | "warning";
|
|
3462
3462
|
id?: number | undefined;
|
|
3463
3463
|
}[] | undefined;
|
|
3464
3464
|
required?: boolean | undefined;
|
|
@@ -3477,7 +3477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3477
3477
|
hint?: string | undefined;
|
|
3478
3478
|
messages?: {
|
|
3479
3479
|
text: string;
|
|
3480
|
-
type: "
|
|
3480
|
+
type: "success" | "error" | "info" | "warning";
|
|
3481
3481
|
id?: number | undefined;
|
|
3482
3482
|
}[] | undefined;
|
|
3483
3483
|
required?: boolean | undefined;
|
|
@@ -3499,7 +3499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3499
3499
|
hint?: string | undefined;
|
|
3500
3500
|
messages?: {
|
|
3501
3501
|
text: string;
|
|
3502
|
-
type: "
|
|
3502
|
+
type: "success" | "error" | "info" | "warning";
|
|
3503
3503
|
id?: number | undefined;
|
|
3504
3504
|
}[] | undefined;
|
|
3505
3505
|
required?: boolean | undefined;
|
|
@@ -3521,7 +3521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3521
3521
|
hint?: string | undefined;
|
|
3522
3522
|
messages?: {
|
|
3523
3523
|
text: string;
|
|
3524
|
-
type: "
|
|
3524
|
+
type: "success" | "error" | "info" | "warning";
|
|
3525
3525
|
id?: number | undefined;
|
|
3526
3526
|
}[] | undefined;
|
|
3527
3527
|
required?: boolean | undefined;
|
|
@@ -3540,7 +3540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3540
3540
|
hint?: string | undefined;
|
|
3541
3541
|
messages?: {
|
|
3542
3542
|
text: string;
|
|
3543
|
-
type: "
|
|
3543
|
+
type: "success" | "error" | "info" | "warning";
|
|
3544
3544
|
id?: number | undefined;
|
|
3545
3545
|
}[] | undefined;
|
|
3546
3546
|
required?: boolean | undefined;
|
|
@@ -3565,7 +3565,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3565
3565
|
hint?: string | undefined;
|
|
3566
3566
|
messages?: {
|
|
3567
3567
|
text: string;
|
|
3568
|
-
type: "
|
|
3568
|
+
type: "success" | "error" | "info" | "warning";
|
|
3569
3569
|
id?: number | undefined;
|
|
3570
3570
|
}[] | undefined;
|
|
3571
3571
|
required?: boolean | undefined;
|
|
@@ -3586,7 +3586,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3586
3586
|
hint?: string | undefined;
|
|
3587
3587
|
messages?: {
|
|
3588
3588
|
text: string;
|
|
3589
|
-
type: "
|
|
3589
|
+
type: "success" | "error" | "info" | "warning";
|
|
3590
3590
|
id?: number | undefined;
|
|
3591
3591
|
}[] | undefined;
|
|
3592
3592
|
required?: boolean | undefined;
|
|
@@ -3607,7 +3607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3607
3607
|
hint?: string | undefined;
|
|
3608
3608
|
messages?: {
|
|
3609
3609
|
text: string;
|
|
3610
|
-
type: "
|
|
3610
|
+
type: "success" | "error" | "info" | "warning";
|
|
3611
3611
|
id?: number | undefined;
|
|
3612
3612
|
}[] | undefined;
|
|
3613
3613
|
required?: boolean | undefined;
|
|
@@ -3856,7 +3856,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3856
3856
|
hint?: string | undefined;
|
|
3857
3857
|
messages?: {
|
|
3858
3858
|
text: string;
|
|
3859
|
-
type: "
|
|
3859
|
+
type: "success" | "error" | "info" | "warning";
|
|
3860
3860
|
id?: number | undefined;
|
|
3861
3861
|
}[] | undefined;
|
|
3862
3862
|
required?: boolean | undefined;
|
|
@@ -3874,7 +3874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3874
3874
|
hint?: string | undefined;
|
|
3875
3875
|
messages?: {
|
|
3876
3876
|
text: string;
|
|
3877
|
-
type: "
|
|
3877
|
+
type: "success" | "error" | "info" | "warning";
|
|
3878
3878
|
id?: number | undefined;
|
|
3879
3879
|
}[] | undefined;
|
|
3880
3880
|
required?: boolean | undefined;
|
|
@@ -3898,7 +3898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3898
3898
|
hint?: string | undefined;
|
|
3899
3899
|
messages?: {
|
|
3900
3900
|
text: string;
|
|
3901
|
-
type: "
|
|
3901
|
+
type: "success" | "error" | "info" | "warning";
|
|
3902
3902
|
id?: number | undefined;
|
|
3903
3903
|
}[] | undefined;
|
|
3904
3904
|
required?: boolean | undefined;
|
|
@@ -3922,7 +3922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3922
3922
|
hint?: string | undefined;
|
|
3923
3923
|
messages?: {
|
|
3924
3924
|
text: string;
|
|
3925
|
-
type: "
|
|
3925
|
+
type: "success" | "error" | "info" | "warning";
|
|
3926
3926
|
id?: number | undefined;
|
|
3927
3927
|
}[] | undefined;
|
|
3928
3928
|
required?: boolean | undefined;
|
|
@@ -3946,7 +3946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3946
3946
|
hint?: string | undefined;
|
|
3947
3947
|
messages?: {
|
|
3948
3948
|
text: string;
|
|
3949
|
-
type: "
|
|
3949
|
+
type: "success" | "error" | "info" | "warning";
|
|
3950
3950
|
id?: number | undefined;
|
|
3951
3951
|
}[] | undefined;
|
|
3952
3952
|
required?: boolean | undefined;
|
|
@@ -3975,7 +3975,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3975
3975
|
hint?: string | undefined;
|
|
3976
3976
|
messages?: {
|
|
3977
3977
|
text: string;
|
|
3978
|
-
type: "
|
|
3978
|
+
type: "success" | "error" | "info" | "warning";
|
|
3979
3979
|
id?: number | undefined;
|
|
3980
3980
|
}[] | undefined;
|
|
3981
3981
|
required?: boolean | undefined;
|
|
@@ -3990,7 +3990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3990
3990
|
hint?: string | undefined;
|
|
3991
3991
|
messages?: {
|
|
3992
3992
|
text: string;
|
|
3993
|
-
type: "
|
|
3993
|
+
type: "success" | "error" | "info" | "warning";
|
|
3994
3994
|
id?: number | undefined;
|
|
3995
3995
|
}[] | undefined;
|
|
3996
3996
|
required?: boolean | undefined;
|
|
@@ -4011,7 +4011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4011
4011
|
hint?: string | undefined;
|
|
4012
4012
|
messages?: {
|
|
4013
4013
|
text: string;
|
|
4014
|
-
type: "
|
|
4014
|
+
type: "success" | "error" | "info" | "warning";
|
|
4015
4015
|
id?: number | undefined;
|
|
4016
4016
|
}[] | undefined;
|
|
4017
4017
|
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;
|
|
@@ -4075,7 +4075,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4075
4075
|
hint?: string | undefined;
|
|
4076
4076
|
messages?: {
|
|
4077
4077
|
text: string;
|
|
4078
|
-
type: "
|
|
4078
|
+
type: "success" | "error" | "info" | "warning";
|
|
4079
4079
|
id?: number | undefined;
|
|
4080
4080
|
}[] | undefined;
|
|
4081
4081
|
required?: boolean | undefined;
|
|
@@ -4094,7 +4094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4094
4094
|
hint?: string | undefined;
|
|
4095
4095
|
messages?: {
|
|
4096
4096
|
text: string;
|
|
4097
|
-
type: "
|
|
4097
|
+
type: "success" | "error" | "info" | "warning";
|
|
4098
4098
|
id?: number | undefined;
|
|
4099
4099
|
}[] | undefined;
|
|
4100
4100
|
required?: boolean | undefined;
|
|
@@ -4116,7 +4116,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4116
4116
|
hint?: string | undefined;
|
|
4117
4117
|
messages?: {
|
|
4118
4118
|
text: string;
|
|
4119
|
-
type: "
|
|
4119
|
+
type: "success" | "error" | "info" | "warning";
|
|
4120
4120
|
id?: number | undefined;
|
|
4121
4121
|
}[] | undefined;
|
|
4122
4122
|
required?: boolean | undefined;
|
|
@@ -4138,7 +4138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4138
4138
|
hint?: string | undefined;
|
|
4139
4139
|
messages?: {
|
|
4140
4140
|
text: string;
|
|
4141
|
-
type: "
|
|
4141
|
+
type: "success" | "error" | "info" | "warning";
|
|
4142
4142
|
id?: number | undefined;
|
|
4143
4143
|
}[] | undefined;
|
|
4144
4144
|
required?: boolean | undefined;
|
|
@@ -4157,7 +4157,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4157
4157
|
hint?: string | undefined;
|
|
4158
4158
|
messages?: {
|
|
4159
4159
|
text: string;
|
|
4160
|
-
type: "
|
|
4160
|
+
type: "success" | "error" | "info" | "warning";
|
|
4161
4161
|
id?: number | undefined;
|
|
4162
4162
|
}[] | undefined;
|
|
4163
4163
|
required?: boolean | undefined;
|
|
@@ -4182,7 +4182,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4182
4182
|
hint?: string | undefined;
|
|
4183
4183
|
messages?: {
|
|
4184
4184
|
text: string;
|
|
4185
|
-
type: "
|
|
4185
|
+
type: "success" | "error" | "info" | "warning";
|
|
4186
4186
|
id?: number | undefined;
|
|
4187
4187
|
}[] | undefined;
|
|
4188
4188
|
required?: boolean | undefined;
|
|
@@ -4203,7 +4203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4203
4203
|
hint?: string | undefined;
|
|
4204
4204
|
messages?: {
|
|
4205
4205
|
text: string;
|
|
4206
|
-
type: "
|
|
4206
|
+
type: "success" | "error" | "info" | "warning";
|
|
4207
4207
|
id?: number | undefined;
|
|
4208
4208
|
}[] | undefined;
|
|
4209
4209
|
required?: boolean | undefined;
|
|
@@ -4224,7 +4224,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4224
4224
|
hint?: string | undefined;
|
|
4225
4225
|
messages?: {
|
|
4226
4226
|
text: string;
|
|
4227
|
-
type: "
|
|
4227
|
+
type: "success" | "error" | "info" | "warning";
|
|
4228
4228
|
id?: number | undefined;
|
|
4229
4229
|
}[] | undefined;
|
|
4230
4230
|
required?: boolean | undefined;
|
|
@@ -4478,7 +4478,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4478
4478
|
hint?: string | undefined;
|
|
4479
4479
|
messages?: {
|
|
4480
4480
|
text: string;
|
|
4481
|
-
type: "
|
|
4481
|
+
type: "success" | "error" | "info" | "warning";
|
|
4482
4482
|
id?: number | undefined;
|
|
4483
4483
|
}[] | undefined;
|
|
4484
4484
|
required?: boolean | undefined;
|
|
@@ -4496,7 +4496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4496
4496
|
hint?: string | undefined;
|
|
4497
4497
|
messages?: {
|
|
4498
4498
|
text: string;
|
|
4499
|
-
type: "
|
|
4499
|
+
type: "success" | "error" | "info" | "warning";
|
|
4500
4500
|
id?: number | undefined;
|
|
4501
4501
|
}[] | undefined;
|
|
4502
4502
|
required?: boolean | undefined;
|
|
@@ -4520,7 +4520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4520
4520
|
hint?: string | undefined;
|
|
4521
4521
|
messages?: {
|
|
4522
4522
|
text: string;
|
|
4523
|
-
type: "
|
|
4523
|
+
type: "success" | "error" | "info" | "warning";
|
|
4524
4524
|
id?: number | undefined;
|
|
4525
4525
|
}[] | undefined;
|
|
4526
4526
|
required?: boolean | undefined;
|
|
@@ -4544,7 +4544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4544
4544
|
hint?: string | undefined;
|
|
4545
4545
|
messages?: {
|
|
4546
4546
|
text: string;
|
|
4547
|
-
type: "
|
|
4547
|
+
type: "success" | "error" | "info" | "warning";
|
|
4548
4548
|
id?: number | undefined;
|
|
4549
4549
|
}[] | undefined;
|
|
4550
4550
|
required?: boolean | undefined;
|
|
@@ -4568,7 +4568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4568
4568
|
hint?: string | undefined;
|
|
4569
4569
|
messages?: {
|
|
4570
4570
|
text: string;
|
|
4571
|
-
type: "
|
|
4571
|
+
type: "success" | "error" | "info" | "warning";
|
|
4572
4572
|
id?: number | undefined;
|
|
4573
4573
|
}[] | undefined;
|
|
4574
4574
|
required?: boolean | undefined;
|
|
@@ -4593,7 +4593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4593
4593
|
hint?: string | undefined;
|
|
4594
4594
|
messages?: {
|
|
4595
4595
|
text: string;
|
|
4596
|
-
type: "
|
|
4596
|
+
type: "success" | "error" | "info" | "warning";
|
|
4597
4597
|
id?: number | undefined;
|
|
4598
4598
|
}[] | undefined;
|
|
4599
4599
|
required?: boolean | undefined;
|
|
@@ -4608,7 +4608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4608
4608
|
hint?: string | undefined;
|
|
4609
4609
|
messages?: {
|
|
4610
4610
|
text: string;
|
|
4611
|
-
type: "
|
|
4611
|
+
type: "success" | "error" | "info" | "warning";
|
|
4612
4612
|
id?: number | undefined;
|
|
4613
4613
|
}[] | undefined;
|
|
4614
4614
|
required?: boolean | undefined;
|
|
@@ -4629,7 +4629,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4629
4629
|
hint?: string | undefined;
|
|
4630
4630
|
messages?: {
|
|
4631
4631
|
text: string;
|
|
4632
|
-
type: "
|
|
4632
|
+
type: "success" | "error" | "info" | "warning";
|
|
4633
4633
|
id?: number | undefined;
|
|
4634
4634
|
}[] | undefined;
|
|
4635
4635
|
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;
|
|
@@ -4693,7 +4693,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4693
4693
|
hint?: string | undefined;
|
|
4694
4694
|
messages?: {
|
|
4695
4695
|
text: string;
|
|
4696
|
-
type: "
|
|
4696
|
+
type: "success" | "error" | "info" | "warning";
|
|
4697
4697
|
id?: number | undefined;
|
|
4698
4698
|
}[] | undefined;
|
|
4699
4699
|
required?: boolean | undefined;
|
|
@@ -4712,7 +4712,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4712
4712
|
hint?: string | undefined;
|
|
4713
4713
|
messages?: {
|
|
4714
4714
|
text: string;
|
|
4715
|
-
type: "
|
|
4715
|
+
type: "success" | "error" | "info" | "warning";
|
|
4716
4716
|
id?: number | undefined;
|
|
4717
4717
|
}[] | undefined;
|
|
4718
4718
|
required?: boolean | undefined;
|
|
@@ -4734,7 +4734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4734
4734
|
hint?: string | undefined;
|
|
4735
4735
|
messages?: {
|
|
4736
4736
|
text: string;
|
|
4737
|
-
type: "
|
|
4737
|
+
type: "success" | "error" | "info" | "warning";
|
|
4738
4738
|
id?: number | undefined;
|
|
4739
4739
|
}[] | undefined;
|
|
4740
4740
|
required?: boolean | undefined;
|
|
@@ -4756,7 +4756,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4756
4756
|
hint?: string | undefined;
|
|
4757
4757
|
messages?: {
|
|
4758
4758
|
text: string;
|
|
4759
|
-
type: "
|
|
4759
|
+
type: "success" | "error" | "info" | "warning";
|
|
4760
4760
|
id?: number | undefined;
|
|
4761
4761
|
}[] | undefined;
|
|
4762
4762
|
required?: boolean | undefined;
|
|
@@ -4775,7 +4775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4775
4775
|
hint?: string | undefined;
|
|
4776
4776
|
messages?: {
|
|
4777
4777
|
text: string;
|
|
4778
|
-
type: "
|
|
4778
|
+
type: "success" | "error" | "info" | "warning";
|
|
4779
4779
|
id?: number | undefined;
|
|
4780
4780
|
}[] | undefined;
|
|
4781
4781
|
required?: boolean | undefined;
|
|
@@ -4800,7 +4800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4800
4800
|
hint?: string | undefined;
|
|
4801
4801
|
messages?: {
|
|
4802
4802
|
text: string;
|
|
4803
|
-
type: "
|
|
4803
|
+
type: "success" | "error" | "info" | "warning";
|
|
4804
4804
|
id?: number | undefined;
|
|
4805
4805
|
}[] | undefined;
|
|
4806
4806
|
required?: boolean | undefined;
|
|
@@ -4821,7 +4821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4821
4821
|
hint?: string | undefined;
|
|
4822
4822
|
messages?: {
|
|
4823
4823
|
text: string;
|
|
4824
|
-
type: "
|
|
4824
|
+
type: "success" | "error" | "info" | "warning";
|
|
4825
4825
|
id?: number | undefined;
|
|
4826
4826
|
}[] | undefined;
|
|
4827
4827
|
required?: boolean | undefined;
|
|
@@ -4842,7 +4842,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4842
4842
|
hint?: string | undefined;
|
|
4843
4843
|
messages?: {
|
|
4844
4844
|
text: string;
|
|
4845
|
-
type: "
|
|
4845
|
+
type: "success" | "error" | "info" | "warning";
|
|
4846
4846
|
id?: number | undefined;
|
|
4847
4847
|
}[] | undefined;
|
|
4848
4848
|
required?: boolean | undefined;
|
|
@@ -5073,7 +5073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5073
5073
|
hint?: string | undefined;
|
|
5074
5074
|
messages?: {
|
|
5075
5075
|
text: string;
|
|
5076
|
-
type: "
|
|
5076
|
+
type: "success" | "error" | "info" | "warning";
|
|
5077
5077
|
id?: number | undefined;
|
|
5078
5078
|
}[] | undefined;
|
|
5079
5079
|
required?: boolean | undefined;
|
|
@@ -5091,7 +5091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5091
5091
|
hint?: string | undefined;
|
|
5092
5092
|
messages?: {
|
|
5093
5093
|
text: string;
|
|
5094
|
-
type: "
|
|
5094
|
+
type: "success" | "error" | "info" | "warning";
|
|
5095
5095
|
id?: number | undefined;
|
|
5096
5096
|
}[] | undefined;
|
|
5097
5097
|
required?: boolean | undefined;
|
|
@@ -5115,7 +5115,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5115
5115
|
hint?: string | undefined;
|
|
5116
5116
|
messages?: {
|
|
5117
5117
|
text: string;
|
|
5118
|
-
type: "
|
|
5118
|
+
type: "success" | "error" | "info" | "warning";
|
|
5119
5119
|
id?: number | undefined;
|
|
5120
5120
|
}[] | undefined;
|
|
5121
5121
|
required?: boolean | undefined;
|
|
@@ -5139,7 +5139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5139
5139
|
hint?: string | undefined;
|
|
5140
5140
|
messages?: {
|
|
5141
5141
|
text: string;
|
|
5142
|
-
type: "
|
|
5142
|
+
type: "success" | "error" | "info" | "warning";
|
|
5143
5143
|
id?: number | undefined;
|
|
5144
5144
|
}[] | undefined;
|
|
5145
5145
|
required?: boolean | undefined;
|
|
@@ -5163,7 +5163,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5163
5163
|
hint?: string | undefined;
|
|
5164
5164
|
messages?: {
|
|
5165
5165
|
text: string;
|
|
5166
|
-
type: "
|
|
5166
|
+
type: "success" | "error" | "info" | "warning";
|
|
5167
5167
|
id?: number | undefined;
|
|
5168
5168
|
}[] | undefined;
|
|
5169
5169
|
required?: boolean | undefined;
|
|
@@ -5192,7 +5192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5192
5192
|
hint?: string | undefined;
|
|
5193
5193
|
messages?: {
|
|
5194
5194
|
text: string;
|
|
5195
|
-
type: "
|
|
5195
|
+
type: "success" | "error" | "info" | "warning";
|
|
5196
5196
|
id?: number | undefined;
|
|
5197
5197
|
}[] | undefined;
|
|
5198
5198
|
required?: boolean | undefined;
|
|
@@ -5207,7 +5207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5207
5207
|
hint?: string | undefined;
|
|
5208
5208
|
messages?: {
|
|
5209
5209
|
text: string;
|
|
5210
|
-
type: "
|
|
5210
|
+
type: "success" | "error" | "info" | "warning";
|
|
5211
5211
|
id?: number | undefined;
|
|
5212
5212
|
}[] | undefined;
|
|
5213
5213
|
required?: boolean | undefined;
|
|
@@ -5228,7 +5228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5228
5228
|
hint?: string | undefined;
|
|
5229
5229
|
messages?: {
|
|
5230
5230
|
text: string;
|
|
5231
|
-
type: "
|
|
5231
|
+
type: "success" | "error" | "info" | "warning";
|
|
5232
5232
|
id?: number | undefined;
|
|
5233
5233
|
}[] | undefined;
|
|
5234
5234
|
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;
|
|
@@ -5292,7 +5292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5292
5292
|
hint?: string | undefined;
|
|
5293
5293
|
messages?: {
|
|
5294
5294
|
text: string;
|
|
5295
|
-
type: "
|
|
5295
|
+
type: "success" | "error" | "info" | "warning";
|
|
5296
5296
|
id?: number | undefined;
|
|
5297
5297
|
}[] | undefined;
|
|
5298
5298
|
required?: boolean | undefined;
|
|
@@ -5311,7 +5311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5311
5311
|
hint?: string | undefined;
|
|
5312
5312
|
messages?: {
|
|
5313
5313
|
text: string;
|
|
5314
|
-
type: "
|
|
5314
|
+
type: "success" | "error" | "info" | "warning";
|
|
5315
5315
|
id?: number | undefined;
|
|
5316
5316
|
}[] | undefined;
|
|
5317
5317
|
required?: boolean | undefined;
|
|
@@ -5333,7 +5333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5333
5333
|
hint?: string | undefined;
|
|
5334
5334
|
messages?: {
|
|
5335
5335
|
text: string;
|
|
5336
|
-
type: "
|
|
5336
|
+
type: "success" | "error" | "info" | "warning";
|
|
5337
5337
|
id?: number | undefined;
|
|
5338
5338
|
}[] | undefined;
|
|
5339
5339
|
required?: boolean | undefined;
|
|
@@ -5355,7 +5355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5355
5355
|
hint?: string | undefined;
|
|
5356
5356
|
messages?: {
|
|
5357
5357
|
text: string;
|
|
5358
|
-
type: "
|
|
5358
|
+
type: "success" | "error" | "info" | "warning";
|
|
5359
5359
|
id?: number | undefined;
|
|
5360
5360
|
}[] | undefined;
|
|
5361
5361
|
required?: boolean | undefined;
|
|
@@ -5374,7 +5374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5374
5374
|
hint?: string | undefined;
|
|
5375
5375
|
messages?: {
|
|
5376
5376
|
text: string;
|
|
5377
|
-
type: "
|
|
5377
|
+
type: "success" | "error" | "info" | "warning";
|
|
5378
5378
|
id?: number | undefined;
|
|
5379
5379
|
}[] | undefined;
|
|
5380
5380
|
required?: boolean | undefined;
|
|
@@ -5399,7 +5399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5399
5399
|
hint?: string | undefined;
|
|
5400
5400
|
messages?: {
|
|
5401
5401
|
text: string;
|
|
5402
|
-
type: "
|
|
5402
|
+
type: "success" | "error" | "info" | "warning";
|
|
5403
5403
|
id?: number | undefined;
|
|
5404
5404
|
}[] | undefined;
|
|
5405
5405
|
required?: boolean | undefined;
|
|
@@ -5420,7 +5420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5420
5420
|
hint?: string | undefined;
|
|
5421
5421
|
messages?: {
|
|
5422
5422
|
text: string;
|
|
5423
|
-
type: "
|
|
5423
|
+
type: "success" | "error" | "info" | "warning";
|
|
5424
5424
|
id?: number | undefined;
|
|
5425
5425
|
}[] | undefined;
|
|
5426
5426
|
required?: boolean | undefined;
|
|
@@ -5441,7 +5441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5441
5441
|
hint?: string | undefined;
|
|
5442
5442
|
messages?: {
|
|
5443
5443
|
text: string;
|
|
5444
|
-
type: "
|
|
5444
|
+
type: "success" | "error" | "info" | "warning";
|
|
5445
5445
|
id?: number | undefined;
|
|
5446
5446
|
}[] | undefined;
|
|
5447
5447
|
required?: boolean | undefined;
|
|
@@ -5674,7 +5674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5674
5674
|
hint?: string | undefined;
|
|
5675
5675
|
messages?: {
|
|
5676
5676
|
text: string;
|
|
5677
|
-
type: "
|
|
5677
|
+
type: "success" | "error" | "info" | "warning";
|
|
5678
5678
|
id?: number | undefined;
|
|
5679
5679
|
}[] | undefined;
|
|
5680
5680
|
required?: boolean | undefined;
|
|
@@ -5692,7 +5692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5692
5692
|
hint?: string | undefined;
|
|
5693
5693
|
messages?: {
|
|
5694
5694
|
text: string;
|
|
5695
|
-
type: "
|
|
5695
|
+
type: "success" | "error" | "info" | "warning";
|
|
5696
5696
|
id?: number | undefined;
|
|
5697
5697
|
}[] | undefined;
|
|
5698
5698
|
required?: boolean | undefined;
|
|
@@ -5716,7 +5716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5716
5716
|
hint?: string | undefined;
|
|
5717
5717
|
messages?: {
|
|
5718
5718
|
text: string;
|
|
5719
|
-
type: "
|
|
5719
|
+
type: "success" | "error" | "info" | "warning";
|
|
5720
5720
|
id?: number | undefined;
|
|
5721
5721
|
}[] | undefined;
|
|
5722
5722
|
required?: boolean | undefined;
|
|
@@ -5740,7 +5740,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5740
5740
|
hint?: string | undefined;
|
|
5741
5741
|
messages?: {
|
|
5742
5742
|
text: string;
|
|
5743
|
-
type: "
|
|
5743
|
+
type: "success" | "error" | "info" | "warning";
|
|
5744
5744
|
id?: number | undefined;
|
|
5745
5745
|
}[] | undefined;
|
|
5746
5746
|
required?: boolean | undefined;
|
|
@@ -5764,7 +5764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5764
5764
|
hint?: string | undefined;
|
|
5765
5765
|
messages?: {
|
|
5766
5766
|
text: string;
|
|
5767
|
-
type: "
|
|
5767
|
+
type: "success" | "error" | "info" | "warning";
|
|
5768
5768
|
id?: number | undefined;
|
|
5769
5769
|
}[] | undefined;
|
|
5770
5770
|
required?: boolean | undefined;
|
|
@@ -5789,7 +5789,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5789
5789
|
hint?: string | undefined;
|
|
5790
5790
|
messages?: {
|
|
5791
5791
|
text: string;
|
|
5792
|
-
type: "
|
|
5792
|
+
type: "success" | "error" | "info" | "warning";
|
|
5793
5793
|
id?: number | undefined;
|
|
5794
5794
|
}[] | undefined;
|
|
5795
5795
|
required?: boolean | undefined;
|
|
@@ -5804,7 +5804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5804
5804
|
hint?: string | undefined;
|
|
5805
5805
|
messages?: {
|
|
5806
5806
|
text: string;
|
|
5807
|
-
type: "
|
|
5807
|
+
type: "success" | "error" | "info" | "warning";
|
|
5808
5808
|
id?: number | undefined;
|
|
5809
5809
|
}[] | undefined;
|
|
5810
5810
|
required?: boolean | undefined;
|
|
@@ -5825,7 +5825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5825
5825
|
hint?: string | undefined;
|
|
5826
5826
|
messages?: {
|
|
5827
5827
|
text: string;
|
|
5828
|
-
type: "
|
|
5828
|
+
type: "success" | "error" | "info" | "warning";
|
|
5829
5829
|
id?: number | undefined;
|
|
5830
5830
|
}[] | undefined;
|
|
5831
5831
|
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;
|
|
@@ -5889,7 +5889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5889
5889
|
hint?: string | undefined;
|
|
5890
5890
|
messages?: {
|
|
5891
5891
|
text: string;
|
|
5892
|
-
type: "
|
|
5892
|
+
type: "success" | "error" | "info" | "warning";
|
|
5893
5893
|
id?: number | undefined;
|
|
5894
5894
|
}[] | undefined;
|
|
5895
5895
|
required?: boolean | undefined;
|
|
@@ -5908,7 +5908,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5908
5908
|
hint?: string | undefined;
|
|
5909
5909
|
messages?: {
|
|
5910
5910
|
text: string;
|
|
5911
|
-
type: "
|
|
5911
|
+
type: "success" | "error" | "info" | "warning";
|
|
5912
5912
|
id?: number | undefined;
|
|
5913
5913
|
}[] | undefined;
|
|
5914
5914
|
required?: boolean | undefined;
|
|
@@ -5930,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5930
5930
|
hint?: string | undefined;
|
|
5931
5931
|
messages?: {
|
|
5932
5932
|
text: string;
|
|
5933
|
-
type: "
|
|
5933
|
+
type: "success" | "error" | "info" | "warning";
|
|
5934
5934
|
id?: number | undefined;
|
|
5935
5935
|
}[] | undefined;
|
|
5936
5936
|
required?: boolean | undefined;
|
|
@@ -5952,7 +5952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5952
5952
|
hint?: string | undefined;
|
|
5953
5953
|
messages?: {
|
|
5954
5954
|
text: string;
|
|
5955
|
-
type: "
|
|
5955
|
+
type: "success" | "error" | "info" | "warning";
|
|
5956
5956
|
id?: number | undefined;
|
|
5957
5957
|
}[] | undefined;
|
|
5958
5958
|
required?: boolean | undefined;
|
|
@@ -5971,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5971
5971
|
hint?: string | undefined;
|
|
5972
5972
|
messages?: {
|
|
5973
5973
|
text: string;
|
|
5974
|
-
type: "
|
|
5974
|
+
type: "success" | "error" | "info" | "warning";
|
|
5975
5975
|
id?: number | undefined;
|
|
5976
5976
|
}[] | undefined;
|
|
5977
5977
|
required?: boolean | undefined;
|
|
@@ -5996,7 +5996,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5996
5996
|
hint?: string | undefined;
|
|
5997
5997
|
messages?: {
|
|
5998
5998
|
text: string;
|
|
5999
|
-
type: "
|
|
5999
|
+
type: "success" | "error" | "info" | "warning";
|
|
6000
6000
|
id?: number | undefined;
|
|
6001
6001
|
}[] | undefined;
|
|
6002
6002
|
required?: boolean | undefined;
|
|
@@ -6017,7 +6017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6017
6017
|
hint?: string | undefined;
|
|
6018
6018
|
messages?: {
|
|
6019
6019
|
text: string;
|
|
6020
|
-
type: "
|
|
6020
|
+
type: "success" | "error" | "info" | "warning";
|
|
6021
6021
|
id?: number | undefined;
|
|
6022
6022
|
}[] | undefined;
|
|
6023
6023
|
required?: boolean | undefined;
|
|
@@ -6038,7 +6038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6038
6038
|
hint?: string | undefined;
|
|
6039
6039
|
messages?: {
|
|
6040
6040
|
text: string;
|
|
6041
|
-
type: "
|
|
6041
|
+
type: "success" | "error" | "info" | "warning";
|
|
6042
6042
|
id?: number | undefined;
|
|
6043
6043
|
}[] | undefined;
|
|
6044
6044
|
required?: boolean | undefined;
|
|
@@ -6269,7 +6269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6269
6269
|
hint?: string | undefined;
|
|
6270
6270
|
messages?: {
|
|
6271
6271
|
text: string;
|
|
6272
|
-
type: "
|
|
6272
|
+
type: "success" | "error" | "info" | "warning";
|
|
6273
6273
|
id?: number | undefined;
|
|
6274
6274
|
}[] | undefined;
|
|
6275
6275
|
required?: boolean | undefined;
|
|
@@ -6287,7 +6287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6287
6287
|
hint?: string | undefined;
|
|
6288
6288
|
messages?: {
|
|
6289
6289
|
text: string;
|
|
6290
|
-
type: "
|
|
6290
|
+
type: "success" | "error" | "info" | "warning";
|
|
6291
6291
|
id?: number | undefined;
|
|
6292
6292
|
}[] | undefined;
|
|
6293
6293
|
required?: boolean | undefined;
|
|
@@ -6311,7 +6311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6311
6311
|
hint?: string | undefined;
|
|
6312
6312
|
messages?: {
|
|
6313
6313
|
text: string;
|
|
6314
|
-
type: "
|
|
6314
|
+
type: "success" | "error" | "info" | "warning";
|
|
6315
6315
|
id?: number | undefined;
|
|
6316
6316
|
}[] | undefined;
|
|
6317
6317
|
required?: boolean | undefined;
|
|
@@ -6335,7 +6335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6335
6335
|
hint?: string | undefined;
|
|
6336
6336
|
messages?: {
|
|
6337
6337
|
text: string;
|
|
6338
|
-
type: "
|
|
6338
|
+
type: "success" | "error" | "info" | "warning";
|
|
6339
6339
|
id?: number | undefined;
|
|
6340
6340
|
}[] | undefined;
|
|
6341
6341
|
required?: boolean | undefined;
|
|
@@ -6359,7 +6359,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6359
6359
|
hint?: string | undefined;
|
|
6360
6360
|
messages?: {
|
|
6361
6361
|
text: string;
|
|
6362
|
-
type: "
|
|
6362
|
+
type: "success" | "error" | "info" | "warning";
|
|
6363
6363
|
id?: number | undefined;
|
|
6364
6364
|
}[] | undefined;
|
|
6365
6365
|
required?: boolean | undefined;
|
|
@@ -6388,7 +6388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6388
6388
|
hint?: string | undefined;
|
|
6389
6389
|
messages?: {
|
|
6390
6390
|
text: string;
|
|
6391
|
-
type: "
|
|
6391
|
+
type: "success" | "error" | "info" | "warning";
|
|
6392
6392
|
id?: number | undefined;
|
|
6393
6393
|
}[] | undefined;
|
|
6394
6394
|
required?: boolean | undefined;
|
|
@@ -6403,7 +6403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6403
6403
|
hint?: string | undefined;
|
|
6404
6404
|
messages?: {
|
|
6405
6405
|
text: string;
|
|
6406
|
-
type: "
|
|
6406
|
+
type: "success" | "error" | "info" | "warning";
|
|
6407
6407
|
id?: number | undefined;
|
|
6408
6408
|
}[] | undefined;
|
|
6409
6409
|
required?: boolean | undefined;
|
|
@@ -6424,7 +6424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6424
6424
|
hint?: string | undefined;
|
|
6425
6425
|
messages?: {
|
|
6426
6426
|
text: string;
|
|
6427
|
-
type: "
|
|
6427
|
+
type: "success" | "error" | "info" | "warning";
|
|
6428
6428
|
id?: number | undefined;
|
|
6429
6429
|
}[] | undefined;
|
|
6430
6430
|
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;
|
|
@@ -6488,7 +6488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6488
6488
|
hint?: string | undefined;
|
|
6489
6489
|
messages?: {
|
|
6490
6490
|
text: string;
|
|
6491
|
-
type: "
|
|
6491
|
+
type: "success" | "error" | "info" | "warning";
|
|
6492
6492
|
id?: number | undefined;
|
|
6493
6493
|
}[] | undefined;
|
|
6494
6494
|
required?: boolean | undefined;
|
|
@@ -6507,7 +6507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6507
6507
|
hint?: string | undefined;
|
|
6508
6508
|
messages?: {
|
|
6509
6509
|
text: string;
|
|
6510
|
-
type: "
|
|
6510
|
+
type: "success" | "error" | "info" | "warning";
|
|
6511
6511
|
id?: number | undefined;
|
|
6512
6512
|
}[] | undefined;
|
|
6513
6513
|
required?: boolean | undefined;
|
|
@@ -6529,7 +6529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6529
6529
|
hint?: string | undefined;
|
|
6530
6530
|
messages?: {
|
|
6531
6531
|
text: string;
|
|
6532
|
-
type: "
|
|
6532
|
+
type: "success" | "error" | "info" | "warning";
|
|
6533
6533
|
id?: number | undefined;
|
|
6534
6534
|
}[] | undefined;
|
|
6535
6535
|
required?: boolean | undefined;
|
|
@@ -6551,7 +6551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6551
6551
|
hint?: string | undefined;
|
|
6552
6552
|
messages?: {
|
|
6553
6553
|
text: string;
|
|
6554
|
-
type: "
|
|
6554
|
+
type: "success" | "error" | "info" | "warning";
|
|
6555
6555
|
id?: number | undefined;
|
|
6556
6556
|
}[] | undefined;
|
|
6557
6557
|
required?: boolean | undefined;
|
|
@@ -6570,7 +6570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6570
6570
|
hint?: string | undefined;
|
|
6571
6571
|
messages?: {
|
|
6572
6572
|
text: string;
|
|
6573
|
-
type: "
|
|
6573
|
+
type: "success" | "error" | "info" | "warning";
|
|
6574
6574
|
id?: number | undefined;
|
|
6575
6575
|
}[] | undefined;
|
|
6576
6576
|
required?: boolean | undefined;
|
|
@@ -6595,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6595
6595
|
hint?: string | undefined;
|
|
6596
6596
|
messages?: {
|
|
6597
6597
|
text: string;
|
|
6598
|
-
type: "
|
|
6598
|
+
type: "success" | "error" | "info" | "warning";
|
|
6599
6599
|
id?: number | undefined;
|
|
6600
6600
|
}[] | undefined;
|
|
6601
6601
|
required?: boolean | undefined;
|
|
@@ -6616,7 +6616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6616
6616
|
hint?: string | undefined;
|
|
6617
6617
|
messages?: {
|
|
6618
6618
|
text: string;
|
|
6619
|
-
type: "
|
|
6619
|
+
type: "success" | "error" | "info" | "warning";
|
|
6620
6620
|
id?: number | undefined;
|
|
6621
6621
|
}[] | undefined;
|
|
6622
6622
|
required?: boolean | undefined;
|
|
@@ -6637,7 +6637,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6637
6637
|
hint?: string | undefined;
|
|
6638
6638
|
messages?: {
|
|
6639
6639
|
text: string;
|
|
6640
|
-
type: "
|
|
6640
|
+
type: "success" | "error" | "info" | "warning";
|
|
6641
6641
|
id?: number | undefined;
|
|
6642
6642
|
}[] | undefined;
|
|
6643
6643
|
required?: boolean | undefined;
|
|
@@ -6867,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6867
6867
|
};
|
|
6868
6868
|
};
|
|
6869
6869
|
output: {
|
|
6870
|
-
prompt: "
|
|
6870
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6871
6871
|
language: string;
|
|
6872
6872
|
}[];
|
|
6873
6873
|
outputFormat: "json";
|
|
@@ -6905,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6905
6905
|
$get: {
|
|
6906
6906
|
input: {
|
|
6907
6907
|
param: {
|
|
6908
|
-
prompt: "
|
|
6908
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6909
6909
|
language: string;
|
|
6910
6910
|
};
|
|
6911
6911
|
} & {
|
|
@@ -6927,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6927
6927
|
$put: {
|
|
6928
6928
|
input: {
|
|
6929
6929
|
param: {
|
|
6930
|
-
prompt: "
|
|
6930
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6931
6931
|
language: string;
|
|
6932
6932
|
};
|
|
6933
6933
|
} & {
|
|
@@ -6951,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6951
6951
|
$delete: {
|
|
6952
6952
|
input: {
|
|
6953
6953
|
param: {
|
|
6954
|
-
prompt: "
|
|
6954
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6955
6955
|
language: string;
|
|
6956
6956
|
};
|
|
6957
6957
|
} & {
|
|
@@ -7043,7 +7043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7043
7043
|
active?: boolean | undefined;
|
|
7044
7044
|
} | undefined;
|
|
7045
7045
|
signup?: {
|
|
7046
|
-
status?: "
|
|
7046
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7047
7047
|
verification?: {
|
|
7048
7048
|
active?: boolean | undefined;
|
|
7049
7049
|
} | undefined;
|
|
@@ -7053,14 +7053,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7053
7053
|
} | undefined;
|
|
7054
7054
|
unique?: boolean | undefined;
|
|
7055
7055
|
profile_required?: boolean | undefined;
|
|
7056
|
-
verification_method?: "
|
|
7056
|
+
verification_method?: "link" | "code" | undefined;
|
|
7057
7057
|
} | undefined;
|
|
7058
7058
|
username?: {
|
|
7059
7059
|
identifier?: {
|
|
7060
7060
|
active?: boolean | undefined;
|
|
7061
7061
|
} | undefined;
|
|
7062
7062
|
signup?: {
|
|
7063
|
-
status?: "
|
|
7063
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7064
7064
|
} | undefined;
|
|
7065
7065
|
validation?: {
|
|
7066
7066
|
max_length?: number | undefined;
|
|
@@ -7077,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7077
7077
|
active?: boolean | undefined;
|
|
7078
7078
|
} | undefined;
|
|
7079
7079
|
signup?: {
|
|
7080
|
-
status?: "
|
|
7080
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7081
7081
|
} | undefined;
|
|
7082
7082
|
} | undefined;
|
|
7083
7083
|
} | undefined;
|
|
@@ -7177,7 +7177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7177
7177
|
active?: boolean | undefined;
|
|
7178
7178
|
} | undefined;
|
|
7179
7179
|
signup?: {
|
|
7180
|
-
status?: "
|
|
7180
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7181
7181
|
verification?: {
|
|
7182
7182
|
active?: boolean | undefined;
|
|
7183
7183
|
} | undefined;
|
|
@@ -7187,14 +7187,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7187
7187
|
} | undefined;
|
|
7188
7188
|
unique?: boolean | undefined;
|
|
7189
7189
|
profile_required?: boolean | undefined;
|
|
7190
|
-
verification_method?: "
|
|
7190
|
+
verification_method?: "link" | "code" | undefined;
|
|
7191
7191
|
} | undefined;
|
|
7192
7192
|
username?: {
|
|
7193
7193
|
identifier?: {
|
|
7194
7194
|
active?: boolean | undefined;
|
|
7195
7195
|
} | undefined;
|
|
7196
7196
|
signup?: {
|
|
7197
|
-
status?: "
|
|
7197
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7198
7198
|
} | undefined;
|
|
7199
7199
|
validation?: {
|
|
7200
7200
|
max_length?: number | undefined;
|
|
@@ -7211,7 +7211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7211
7211
|
active?: boolean | undefined;
|
|
7212
7212
|
} | undefined;
|
|
7213
7213
|
signup?: {
|
|
7214
|
-
status?: "
|
|
7214
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7215
7215
|
} | undefined;
|
|
7216
7216
|
} | undefined;
|
|
7217
7217
|
} | undefined;
|
|
@@ -7327,7 +7327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7327
7327
|
active?: boolean | undefined;
|
|
7328
7328
|
} | undefined;
|
|
7329
7329
|
signup?: {
|
|
7330
|
-
status?: "
|
|
7330
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7331
7331
|
verification?: {
|
|
7332
7332
|
active?: boolean | undefined;
|
|
7333
7333
|
} | undefined;
|
|
@@ -7337,14 +7337,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7337
7337
|
} | undefined;
|
|
7338
7338
|
unique?: boolean | undefined;
|
|
7339
7339
|
profile_required?: boolean | undefined;
|
|
7340
|
-
verification_method?: "
|
|
7340
|
+
verification_method?: "link" | "code" | undefined;
|
|
7341
7341
|
} | undefined;
|
|
7342
7342
|
username?: {
|
|
7343
7343
|
identifier?: {
|
|
7344
7344
|
active?: boolean | undefined;
|
|
7345
7345
|
} | undefined;
|
|
7346
7346
|
signup?: {
|
|
7347
|
-
status?: "
|
|
7347
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7348
7348
|
} | undefined;
|
|
7349
7349
|
validation?: {
|
|
7350
7350
|
max_length?: number | undefined;
|
|
@@ -7361,7 +7361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7361
7361
|
active?: boolean | undefined;
|
|
7362
7362
|
} | undefined;
|
|
7363
7363
|
signup?: {
|
|
7364
|
-
status?: "
|
|
7364
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7365
7365
|
} | undefined;
|
|
7366
7366
|
} | undefined;
|
|
7367
7367
|
} | undefined;
|
|
@@ -7506,7 +7506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7506
7506
|
active?: boolean | undefined;
|
|
7507
7507
|
} | undefined;
|
|
7508
7508
|
signup?: {
|
|
7509
|
-
status?: "
|
|
7509
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7510
7510
|
verification?: {
|
|
7511
7511
|
active?: boolean | undefined;
|
|
7512
7512
|
} | undefined;
|
|
@@ -7516,14 +7516,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7516
7516
|
} | undefined;
|
|
7517
7517
|
unique?: boolean | undefined;
|
|
7518
7518
|
profile_required?: boolean | undefined;
|
|
7519
|
-
verification_method?: "
|
|
7519
|
+
verification_method?: "link" | "code" | undefined;
|
|
7520
7520
|
} | undefined;
|
|
7521
7521
|
username?: {
|
|
7522
7522
|
identifier?: {
|
|
7523
7523
|
active?: boolean | undefined;
|
|
7524
7524
|
} | undefined;
|
|
7525
7525
|
signup?: {
|
|
7526
|
-
status?: "
|
|
7526
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7527
7527
|
} | undefined;
|
|
7528
7528
|
validation?: {
|
|
7529
7529
|
max_length?: number | undefined;
|
|
@@ -7540,7 +7540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7540
7540
|
active?: boolean | undefined;
|
|
7541
7541
|
} | undefined;
|
|
7542
7542
|
signup?: {
|
|
7543
|
-
status?: "
|
|
7543
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7544
7544
|
} | undefined;
|
|
7545
7545
|
} | undefined;
|
|
7546
7546
|
} | undefined;
|
|
@@ -7664,7 +7664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7664
7664
|
active?: boolean | undefined;
|
|
7665
7665
|
} | undefined;
|
|
7666
7666
|
signup?: {
|
|
7667
|
-
status?: "
|
|
7667
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7668
7668
|
verification?: {
|
|
7669
7669
|
active?: boolean | undefined;
|
|
7670
7670
|
} | undefined;
|
|
@@ -7674,14 +7674,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7674
7674
|
} | undefined;
|
|
7675
7675
|
unique?: boolean | undefined;
|
|
7676
7676
|
profile_required?: boolean | undefined;
|
|
7677
|
-
verification_method?: "
|
|
7677
|
+
verification_method?: "link" | "code" | undefined;
|
|
7678
7678
|
} | undefined;
|
|
7679
7679
|
username?: {
|
|
7680
7680
|
identifier?: {
|
|
7681
7681
|
active?: boolean | undefined;
|
|
7682
7682
|
} | undefined;
|
|
7683
7683
|
signup?: {
|
|
7684
|
-
status?: "
|
|
7684
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7685
7685
|
} | undefined;
|
|
7686
7686
|
validation?: {
|
|
7687
7687
|
max_length?: number | undefined;
|
|
@@ -7698,7 +7698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7698
7698
|
active?: boolean | undefined;
|
|
7699
7699
|
} | undefined;
|
|
7700
7700
|
signup?: {
|
|
7701
|
-
status?: "
|
|
7701
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7702
7702
|
} | undefined;
|
|
7703
7703
|
} | undefined;
|
|
7704
7704
|
} | undefined;
|
|
@@ -7814,7 +7814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7814
7814
|
};
|
|
7815
7815
|
} | {
|
|
7816
7816
|
mode: "inline";
|
|
7817
|
-
status: "
|
|
7817
|
+
status: "success" | "error";
|
|
7818
7818
|
connection_id: string;
|
|
7819
7819
|
connection_name: string;
|
|
7820
7820
|
strategy: string;
|
|
@@ -9104,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9104
9104
|
};
|
|
9105
9105
|
};
|
|
9106
9106
|
output: {
|
|
9107
|
-
type: "
|
|
9107
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
9108
9108
|
date: string;
|
|
9109
9109
|
isMobile: boolean;
|
|
9110
9110
|
log_id: string;
|
|
@@ -9143,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9143
9143
|
limit: number;
|
|
9144
9144
|
length: number;
|
|
9145
9145
|
logs: {
|
|
9146
|
-
type: "
|
|
9146
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
9147
9147
|
date: string;
|
|
9148
9148
|
isMobile: boolean;
|
|
9149
9149
|
log_id: string;
|
|
@@ -9180,6 +9180,44 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9180
9180
|
}[];
|
|
9181
9181
|
total?: number | undefined;
|
|
9182
9182
|
next?: string | undefined;
|
|
9183
|
+
} | {
|
|
9184
|
+
logs: {
|
|
9185
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
9186
|
+
date: string;
|
|
9187
|
+
isMobile: boolean;
|
|
9188
|
+
log_id: string;
|
|
9189
|
+
description?: string | undefined;
|
|
9190
|
+
ip?: string | undefined;
|
|
9191
|
+
user_agent?: string | undefined;
|
|
9192
|
+
details?: any;
|
|
9193
|
+
user_id?: string | undefined;
|
|
9194
|
+
user_name?: string | undefined;
|
|
9195
|
+
connection?: string | undefined;
|
|
9196
|
+
connection_id?: string | undefined;
|
|
9197
|
+
client_id?: string | undefined;
|
|
9198
|
+
client_name?: string | undefined;
|
|
9199
|
+
audience?: string | undefined;
|
|
9200
|
+
scope?: string | undefined;
|
|
9201
|
+
strategy?: string | undefined;
|
|
9202
|
+
strategy_type?: string | undefined;
|
|
9203
|
+
hostname?: string | undefined;
|
|
9204
|
+
auth0_client?: {
|
|
9205
|
+
name: string;
|
|
9206
|
+
version: string;
|
|
9207
|
+
env?: {
|
|
9208
|
+
node?: string | undefined;
|
|
9209
|
+
} | undefined;
|
|
9210
|
+
} | undefined;
|
|
9211
|
+
location_info?: {
|
|
9212
|
+
country_code: string;
|
|
9213
|
+
city_name: string;
|
|
9214
|
+
latitude: string;
|
|
9215
|
+
longitude: string;
|
|
9216
|
+
time_zone: string;
|
|
9217
|
+
continent_code: string;
|
|
9218
|
+
} | undefined;
|
|
9219
|
+
}[];
|
|
9220
|
+
next?: string | undefined;
|
|
9183
9221
|
};
|
|
9184
9222
|
outputFormat: "json";
|
|
9185
9223
|
status: 200;
|
|
@@ -9198,7 +9236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9198
9236
|
};
|
|
9199
9237
|
};
|
|
9200
9238
|
output: {
|
|
9201
|
-
type: "
|
|
9239
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
9202
9240
|
date: string;
|
|
9203
9241
|
isMobile: boolean;
|
|
9204
9242
|
log_id: string;
|
|
@@ -9354,7 +9392,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9354
9392
|
audience?: string | undefined;
|
|
9355
9393
|
client_id?: string | undefined;
|
|
9356
9394
|
allow_any_organization?: string | undefined;
|
|
9357
|
-
subject_type?: "
|
|
9395
|
+
subject_type?: "user" | "client" | undefined;
|
|
9358
9396
|
};
|
|
9359
9397
|
} & {
|
|
9360
9398
|
header: {
|
|
@@ -9369,7 +9407,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9369
9407
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9370
9408
|
allow_any_organization?: boolean | undefined;
|
|
9371
9409
|
is_system?: boolean | undefined;
|
|
9372
|
-
subject_type?: "
|
|
9410
|
+
subject_type?: "user" | "client" | undefined;
|
|
9373
9411
|
authorization_details_types?: string[] | undefined;
|
|
9374
9412
|
created_at?: string | undefined;
|
|
9375
9413
|
updated_at?: string | undefined;
|
|
@@ -9385,7 +9423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9385
9423
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9386
9424
|
allow_any_organization?: boolean | undefined;
|
|
9387
9425
|
is_system?: boolean | undefined;
|
|
9388
|
-
subject_type?: "
|
|
9426
|
+
subject_type?: "user" | "client" | undefined;
|
|
9389
9427
|
authorization_details_types?: string[] | undefined;
|
|
9390
9428
|
created_at?: string | undefined;
|
|
9391
9429
|
updated_at?: string | undefined;
|
|
@@ -9401,7 +9439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9401
9439
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9402
9440
|
allow_any_organization?: boolean | undefined;
|
|
9403
9441
|
is_system?: boolean | undefined;
|
|
9404
|
-
subject_type?: "
|
|
9442
|
+
subject_type?: "user" | "client" | undefined;
|
|
9405
9443
|
authorization_details_types?: string[] | undefined;
|
|
9406
9444
|
created_at?: string | undefined;
|
|
9407
9445
|
updated_at?: string | undefined;
|
|
@@ -9432,7 +9470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9432
9470
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9433
9471
|
allow_any_organization?: boolean | undefined;
|
|
9434
9472
|
is_system?: boolean | undefined;
|
|
9435
|
-
subject_type?: "
|
|
9473
|
+
subject_type?: "user" | "client" | undefined;
|
|
9436
9474
|
authorization_details_types?: string[] | undefined;
|
|
9437
9475
|
created_at?: string | undefined;
|
|
9438
9476
|
updated_at?: string | undefined;
|
|
@@ -9477,7 +9515,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9477
9515
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9478
9516
|
allow_any_organization?: boolean | undefined;
|
|
9479
9517
|
is_system?: boolean | undefined;
|
|
9480
|
-
subject_type?: "
|
|
9518
|
+
subject_type?: "user" | "client" | undefined;
|
|
9481
9519
|
authorization_details_types?: string[] | undefined;
|
|
9482
9520
|
};
|
|
9483
9521
|
};
|
|
@@ -9489,7 +9527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9489
9527
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9490
9528
|
allow_any_organization?: boolean | undefined;
|
|
9491
9529
|
is_system?: boolean | undefined;
|
|
9492
|
-
subject_type?: "
|
|
9530
|
+
subject_type?: "user" | "client" | undefined;
|
|
9493
9531
|
authorization_details_types?: string[] | undefined;
|
|
9494
9532
|
created_at?: string | undefined;
|
|
9495
9533
|
updated_at?: string | undefined;
|
|
@@ -9513,7 +9551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9513
9551
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9514
9552
|
allow_any_organization?: boolean | undefined;
|
|
9515
9553
|
is_system?: boolean | undefined;
|
|
9516
|
-
subject_type?: "
|
|
9554
|
+
subject_type?: "user" | "client" | undefined;
|
|
9517
9555
|
authorization_details_types?: string[] | undefined;
|
|
9518
9556
|
};
|
|
9519
9557
|
};
|
|
@@ -9525,7 +9563,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9525
9563
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9526
9564
|
allow_any_organization?: boolean | undefined;
|
|
9527
9565
|
is_system?: boolean | undefined;
|
|
9528
|
-
subject_type?: "
|
|
9566
|
+
subject_type?: "user" | "client" | undefined;
|
|
9529
9567
|
authorization_details_types?: string[] | undefined;
|
|
9530
9568
|
created_at?: string | undefined;
|
|
9531
9569
|
updated_at?: string | undefined;
|
|
@@ -9603,7 +9641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9603
9641
|
addons?: {
|
|
9604
9642
|
[x: string]: any;
|
|
9605
9643
|
} | undefined;
|
|
9606
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
9644
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9607
9645
|
client_metadata?: {
|
|
9608
9646
|
[x: string]: string;
|
|
9609
9647
|
} | undefined;
|
|
@@ -9699,7 +9737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9699
9737
|
addons?: {
|
|
9700
9738
|
[x: string]: any;
|
|
9701
9739
|
} | undefined;
|
|
9702
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
9740
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9703
9741
|
client_metadata?: {
|
|
9704
9742
|
[x: string]: string;
|
|
9705
9743
|
} | undefined;
|
|
@@ -9745,6 +9783,101 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9745
9783
|
}[];
|
|
9746
9784
|
total?: number | undefined;
|
|
9747
9785
|
next?: string | undefined;
|
|
9786
|
+
} | {
|
|
9787
|
+
clients: {
|
|
9788
|
+
created_at: string;
|
|
9789
|
+
updated_at: string;
|
|
9790
|
+
name: string;
|
|
9791
|
+
global: boolean;
|
|
9792
|
+
is_first_party: boolean;
|
|
9793
|
+
oidc_conformant: boolean;
|
|
9794
|
+
auth0_conformant: boolean;
|
|
9795
|
+
sso: boolean;
|
|
9796
|
+
sso_disabled: boolean;
|
|
9797
|
+
cross_origin_authentication: boolean;
|
|
9798
|
+
custom_login_page_on: boolean;
|
|
9799
|
+
require_pushed_authorization_requests: boolean;
|
|
9800
|
+
require_proof_of_possession: boolean;
|
|
9801
|
+
client_id: string;
|
|
9802
|
+
description?: string | undefined;
|
|
9803
|
+
client_secret?: string | undefined;
|
|
9804
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9805
|
+
logo_uri?: string | undefined;
|
|
9806
|
+
callbacks?: string[] | undefined;
|
|
9807
|
+
allowed_origins?: string[] | undefined;
|
|
9808
|
+
web_origins?: string[] | undefined;
|
|
9809
|
+
client_aliases?: string[] | undefined;
|
|
9810
|
+
allowed_clients?: string[] | undefined;
|
|
9811
|
+
connections?: string[] | undefined;
|
|
9812
|
+
allowed_logout_urls?: string[] | undefined;
|
|
9813
|
+
session_transfer?: {
|
|
9814
|
+
[x: string]: any;
|
|
9815
|
+
} | undefined;
|
|
9816
|
+
oidc_logout?: {
|
|
9817
|
+
[x: string]: any;
|
|
9818
|
+
} | undefined;
|
|
9819
|
+
grant_types?: string[] | undefined;
|
|
9820
|
+
jwt_configuration?: {
|
|
9821
|
+
[x: string]: any;
|
|
9822
|
+
} | undefined;
|
|
9823
|
+
signing_keys?: {
|
|
9824
|
+
[x: string]: any;
|
|
9825
|
+
}[] | undefined;
|
|
9826
|
+
encryption_key?: {
|
|
9827
|
+
[x: string]: any;
|
|
9828
|
+
} | undefined;
|
|
9829
|
+
cross_origin_loc?: string | undefined;
|
|
9830
|
+
custom_login_page?: string | undefined;
|
|
9831
|
+
custom_login_page_preview?: string | undefined;
|
|
9832
|
+
form_template?: string | undefined;
|
|
9833
|
+
addons?: {
|
|
9834
|
+
[x: string]: any;
|
|
9835
|
+
} | undefined;
|
|
9836
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9837
|
+
client_metadata?: {
|
|
9838
|
+
[x: string]: string;
|
|
9839
|
+
} | undefined;
|
|
9840
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9841
|
+
mobile?: {
|
|
9842
|
+
[x: string]: any;
|
|
9843
|
+
} | undefined;
|
|
9844
|
+
initiate_login_uri?: string | undefined;
|
|
9845
|
+
native_social_login?: {
|
|
9846
|
+
[x: string]: any;
|
|
9847
|
+
} | undefined;
|
|
9848
|
+
refresh_token?: {
|
|
9849
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
9850
|
+
leeway?: number | undefined;
|
|
9851
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
9852
|
+
token_lifetime?: number | undefined;
|
|
9853
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
9854
|
+
idle_token_lifetime?: number | undefined;
|
|
9855
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
9856
|
+
} | undefined;
|
|
9857
|
+
default_organization?: {
|
|
9858
|
+
[x: string]: any;
|
|
9859
|
+
} | undefined;
|
|
9860
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9861
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
9862
|
+
client_authentication_methods?: {
|
|
9863
|
+
[x: string]: any;
|
|
9864
|
+
} | undefined;
|
|
9865
|
+
signed_request_object?: {
|
|
9866
|
+
[x: string]: any;
|
|
9867
|
+
} | undefined;
|
|
9868
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
9869
|
+
par_request_expiry?: number | undefined;
|
|
9870
|
+
token_quota?: {
|
|
9871
|
+
[x: string]: any;
|
|
9872
|
+
} | undefined;
|
|
9873
|
+
owner_user_id?: string | undefined;
|
|
9874
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
9875
|
+
registration_metadata?: {
|
|
9876
|
+
[x: string]: any;
|
|
9877
|
+
} | undefined;
|
|
9878
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9879
|
+
}[];
|
|
9880
|
+
next?: string | undefined;
|
|
9748
9881
|
};
|
|
9749
9882
|
outputFormat: "json";
|
|
9750
9883
|
status: 200;
|
|
@@ -9811,7 +9944,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9811
9944
|
addons?: {
|
|
9812
9945
|
[x: string]: any;
|
|
9813
9946
|
} | undefined;
|
|
9814
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
9947
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9815
9948
|
client_metadata?: {
|
|
9816
9949
|
[x: string]: string;
|
|
9817
9950
|
} | undefined;
|
|
@@ -9921,7 +10054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9921
10054
|
custom_login_page_preview?: string | undefined;
|
|
9922
10055
|
form_template?: string | undefined;
|
|
9923
10056
|
addons?: Record<string, any> | undefined;
|
|
9924
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
10057
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9925
10058
|
client_metadata?: Record<string, string> | undefined;
|
|
9926
10059
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9927
10060
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10001,7 +10134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10001
10134
|
addons?: {
|
|
10002
10135
|
[x: string]: any;
|
|
10003
10136
|
} | undefined;
|
|
10004
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
10137
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10005
10138
|
client_metadata?: {
|
|
10006
10139
|
[x: string]: string;
|
|
10007
10140
|
} | undefined;
|
|
@@ -10090,7 +10223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10090
10223
|
custom_login_page_preview?: string | undefined;
|
|
10091
10224
|
form_template?: string | undefined;
|
|
10092
10225
|
addons?: Record<string, any> | undefined;
|
|
10093
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
10226
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10094
10227
|
client_metadata?: Record<string, string> | undefined;
|
|
10095
10228
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10096
10229
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10170,7 +10303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10170
10303
|
addons?: {
|
|
10171
10304
|
[x: string]: any;
|
|
10172
10305
|
} | undefined;
|
|
10173
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
10306
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10174
10307
|
client_metadata?: {
|
|
10175
10308
|
[x: string]: string;
|
|
10176
10309
|
} | undefined;
|
|
@@ -10292,7 +10425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10292
10425
|
active?: boolean | undefined;
|
|
10293
10426
|
} | undefined;
|
|
10294
10427
|
signup?: {
|
|
10295
|
-
status?: "
|
|
10428
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10296
10429
|
verification?: {
|
|
10297
10430
|
active?: boolean | undefined;
|
|
10298
10431
|
} | undefined;
|
|
@@ -10302,14 +10435,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10302
10435
|
} | undefined;
|
|
10303
10436
|
unique?: boolean | undefined;
|
|
10304
10437
|
profile_required?: boolean | undefined;
|
|
10305
|
-
verification_method?: "
|
|
10438
|
+
verification_method?: "link" | "code" | undefined;
|
|
10306
10439
|
} | undefined;
|
|
10307
10440
|
username?: {
|
|
10308
10441
|
identifier?: {
|
|
10309
10442
|
active?: boolean | undefined;
|
|
10310
10443
|
} | undefined;
|
|
10311
10444
|
signup?: {
|
|
10312
|
-
status?: "
|
|
10445
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10313
10446
|
} | undefined;
|
|
10314
10447
|
validation?: {
|
|
10315
10448
|
max_length?: number | undefined;
|
|
@@ -10326,7 +10459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10326
10459
|
active?: boolean | undefined;
|
|
10327
10460
|
} | undefined;
|
|
10328
10461
|
signup?: {
|
|
10329
|
-
status?: "
|
|
10462
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10330
10463
|
} | undefined;
|
|
10331
10464
|
} | undefined;
|
|
10332
10465
|
} | undefined;
|
|
@@ -10446,7 +10579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10446
10579
|
active?: boolean | undefined;
|
|
10447
10580
|
} | undefined;
|
|
10448
10581
|
signup?: {
|
|
10449
|
-
status?: "
|
|
10582
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10450
10583
|
verification?: {
|
|
10451
10584
|
active?: boolean | undefined;
|
|
10452
10585
|
} | undefined;
|
|
@@ -10456,14 +10589,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10456
10589
|
} | undefined;
|
|
10457
10590
|
unique?: boolean | undefined;
|
|
10458
10591
|
profile_required?: boolean | undefined;
|
|
10459
|
-
verification_method?: "
|
|
10592
|
+
verification_method?: "link" | "code" | undefined;
|
|
10460
10593
|
} | undefined;
|
|
10461
10594
|
username?: {
|
|
10462
10595
|
identifier?: {
|
|
10463
10596
|
active?: boolean | undefined;
|
|
10464
10597
|
} | undefined;
|
|
10465
10598
|
signup?: {
|
|
10466
|
-
status?: "
|
|
10599
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10467
10600
|
} | undefined;
|
|
10468
10601
|
validation?: {
|
|
10469
10602
|
max_length?: number | undefined;
|
|
@@ -10480,7 +10613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10480
10613
|
active?: boolean | undefined;
|
|
10481
10614
|
} | undefined;
|
|
10482
10615
|
signup?: {
|
|
10483
|
-
status?: "
|
|
10616
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10484
10617
|
} | undefined;
|
|
10485
10618
|
} | undefined;
|
|
10486
10619
|
} | undefined;
|
|
@@ -11437,7 +11570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11437
11570
|
};
|
|
11438
11571
|
};
|
|
11439
11572
|
output: {
|
|
11440
|
-
type: "
|
|
11573
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
11441
11574
|
date: string;
|
|
11442
11575
|
isMobile: boolean;
|
|
11443
11576
|
log_id: string;
|
|
@@ -11476,7 +11609,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11476
11609
|
limit: number;
|
|
11477
11610
|
length: number;
|
|
11478
11611
|
logs: {
|
|
11479
|
-
type: "
|
|
11612
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
11480
11613
|
date: string;
|
|
11481
11614
|
isMobile: boolean;
|
|
11482
11615
|
log_id: string;
|
|
@@ -11795,7 +11928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11795
11928
|
};
|
|
11796
11929
|
} & {
|
|
11797
11930
|
json: {
|
|
11798
|
-
template: "
|
|
11931
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11799
11932
|
body: string;
|
|
11800
11933
|
from: string;
|
|
11801
11934
|
subject: string;
|
|
@@ -11816,7 +11949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11816
11949
|
};
|
|
11817
11950
|
} & {
|
|
11818
11951
|
json: {
|
|
11819
|
-
template: "
|
|
11952
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11820
11953
|
body: string;
|
|
11821
11954
|
from: string;
|
|
11822
11955
|
subject: string;
|
|
@@ -11828,7 +11961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11828
11961
|
};
|
|
11829
11962
|
};
|
|
11830
11963
|
output: {
|
|
11831
|
-
template: "
|
|
11964
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11832
11965
|
body: string;
|
|
11833
11966
|
from: string;
|
|
11834
11967
|
subject: string;
|
|
@@ -11851,7 +11984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11851
11984
|
};
|
|
11852
11985
|
};
|
|
11853
11986
|
output: {
|
|
11854
|
-
name: "
|
|
11987
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11855
11988
|
body: string;
|
|
11856
11989
|
subject: string;
|
|
11857
11990
|
}[];
|
|
@@ -11864,7 +11997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11864
11997
|
$get: {
|
|
11865
11998
|
input: {
|
|
11866
11999
|
param: {
|
|
11867
|
-
templateName: "
|
|
12000
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11868
12001
|
};
|
|
11869
12002
|
} & {
|
|
11870
12003
|
header: {
|
|
@@ -11877,7 +12010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11877
12010
|
} | {
|
|
11878
12011
|
input: {
|
|
11879
12012
|
param: {
|
|
11880
|
-
templateName: "
|
|
12013
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11881
12014
|
};
|
|
11882
12015
|
} & {
|
|
11883
12016
|
header: {
|
|
@@ -11885,7 +12018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11885
12018
|
};
|
|
11886
12019
|
};
|
|
11887
12020
|
output: {
|
|
11888
|
-
template: "
|
|
12021
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11889
12022
|
body: string;
|
|
11890
12023
|
from: string;
|
|
11891
12024
|
subject: string;
|
|
@@ -11904,7 +12037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11904
12037
|
$put: {
|
|
11905
12038
|
input: {
|
|
11906
12039
|
param: {
|
|
11907
|
-
templateName: "
|
|
12040
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11908
12041
|
};
|
|
11909
12042
|
} & {
|
|
11910
12043
|
header: {
|
|
@@ -11912,7 +12045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11912
12045
|
};
|
|
11913
12046
|
} & {
|
|
11914
12047
|
json: {
|
|
11915
|
-
template: "
|
|
12048
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11916
12049
|
body: string;
|
|
11917
12050
|
subject: string;
|
|
11918
12051
|
syntax?: "liquid" | undefined;
|
|
@@ -11924,7 +12057,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11924
12057
|
};
|
|
11925
12058
|
};
|
|
11926
12059
|
output: {
|
|
11927
|
-
template: "
|
|
12060
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11928
12061
|
body: string;
|
|
11929
12062
|
from: string;
|
|
11930
12063
|
subject: string;
|
|
@@ -11943,7 +12076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11943
12076
|
$patch: {
|
|
11944
12077
|
input: {
|
|
11945
12078
|
param: {
|
|
11946
|
-
templateName: "
|
|
12079
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11947
12080
|
};
|
|
11948
12081
|
} & {
|
|
11949
12082
|
header: {
|
|
@@ -11951,7 +12084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11951
12084
|
};
|
|
11952
12085
|
} & {
|
|
11953
12086
|
json: {
|
|
11954
|
-
template?: "
|
|
12087
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11955
12088
|
body?: string | undefined;
|
|
11956
12089
|
from?: string | undefined;
|
|
11957
12090
|
subject?: string | undefined;
|
|
@@ -11968,7 +12101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11968
12101
|
} | {
|
|
11969
12102
|
input: {
|
|
11970
12103
|
param: {
|
|
11971
|
-
templateName: "
|
|
12104
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11972
12105
|
};
|
|
11973
12106
|
} & {
|
|
11974
12107
|
header: {
|
|
@@ -11976,7 +12109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11976
12109
|
};
|
|
11977
12110
|
} & {
|
|
11978
12111
|
json: {
|
|
11979
|
-
template?: "
|
|
12112
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11980
12113
|
body?: string | undefined;
|
|
11981
12114
|
from?: string | undefined;
|
|
11982
12115
|
subject?: string | undefined;
|
|
@@ -11988,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11988
12121
|
};
|
|
11989
12122
|
};
|
|
11990
12123
|
output: {
|
|
11991
|
-
template: "
|
|
12124
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11992
12125
|
body: string;
|
|
11993
12126
|
from: string;
|
|
11994
12127
|
subject: string;
|
|
@@ -12007,7 +12140,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12007
12140
|
$delete: {
|
|
12008
12141
|
input: {
|
|
12009
12142
|
param: {
|
|
12010
|
-
templateName: "
|
|
12143
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12011
12144
|
};
|
|
12012
12145
|
} & {
|
|
12013
12146
|
header: {
|
|
@@ -12020,7 +12153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12020
12153
|
} | {
|
|
12021
12154
|
input: {
|
|
12022
12155
|
param: {
|
|
12023
|
-
templateName: "
|
|
12156
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12024
12157
|
};
|
|
12025
12158
|
} & {
|
|
12026
12159
|
header: {
|
|
@@ -12037,7 +12170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12037
12170
|
$post: {
|
|
12038
12171
|
input: {
|
|
12039
12172
|
param: {
|
|
12040
|
-
templateName: "
|
|
12173
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12041
12174
|
};
|
|
12042
12175
|
} & {
|
|
12043
12176
|
header: {
|
|
@@ -12989,7 +13122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12989
13122
|
} & {
|
|
12990
13123
|
json: {
|
|
12991
13124
|
body?: string | undefined;
|
|
12992
|
-
screen?: "
|
|
13125
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
12993
13126
|
branding?: {
|
|
12994
13127
|
colors?: {
|
|
12995
13128
|
primary: string;
|
|
@@ -13280,7 +13413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13280
13413
|
logs: {
|
|
13281
13414
|
action_name: string;
|
|
13282
13415
|
lines: {
|
|
13283
|
-
level: "
|
|
13416
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13284
13417
|
message: string;
|
|
13285
13418
|
}[];
|
|
13286
13419
|
}[];
|
|
@@ -13949,7 +14082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13949
14082
|
args: import("hono/utils/types").JSONValue[];
|
|
13950
14083
|
}[];
|
|
13951
14084
|
logs: {
|
|
13952
|
-
level: "
|
|
14085
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13953
14086
|
message: string;
|
|
13954
14087
|
}[];
|
|
13955
14088
|
error?: string | undefined;
|