authhero 8.9.2 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +109 -109
- package/dist/authhero.d.ts +358 -268
- package/dist/authhero.mjs +8283 -8163
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +283 -266
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +17 -17
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +240 -224
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +9 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
- package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +2 -2
- package/package.json +4 -4
|
@@ -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: {
|
|
@@ -19,6 +19,22 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
19
19
|
output: Response;
|
|
20
20
|
outputFormat: "json";
|
|
21
21
|
status: import("hono/utils/http-status").StatusCode;
|
|
22
|
+
} | {
|
|
23
|
+
input: {
|
|
24
|
+
query: {
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
|
+
};
|
|
28
|
+
} & {
|
|
29
|
+
header: {
|
|
30
|
+
"tenant-id"?: string | undefined;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
output: {
|
|
34
|
+
message: string;
|
|
35
|
+
};
|
|
36
|
+
outputFormat: "json";
|
|
37
|
+
status: 500;
|
|
22
38
|
};
|
|
23
39
|
};
|
|
24
40
|
} & {
|
|
@@ -26,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
26
42
|
$post: {
|
|
27
43
|
input: {
|
|
28
44
|
query: {
|
|
29
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
30
46
|
};
|
|
31
47
|
} & {
|
|
32
48
|
header: {
|
|
@@ -80,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
80
96
|
};
|
|
81
97
|
} & {
|
|
82
98
|
json: {
|
|
83
|
-
type: "
|
|
99
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
84
100
|
phone_number?: string | undefined;
|
|
85
101
|
totp_secret?: string | undefined;
|
|
86
102
|
credential_id?: string | undefined;
|
|
@@ -220,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
220
236
|
};
|
|
221
237
|
};
|
|
222
238
|
output: {
|
|
223
|
-
name: "
|
|
239
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
224
240
|
enabled: boolean;
|
|
225
241
|
trial_expired?: boolean | undefined;
|
|
226
242
|
}[];
|
|
@@ -375,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
375
391
|
$get: {
|
|
376
392
|
input: {
|
|
377
393
|
param: {
|
|
378
|
-
factor_name: "
|
|
394
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
379
395
|
};
|
|
380
396
|
} & {
|
|
381
397
|
header: {
|
|
@@ -383,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
383
399
|
};
|
|
384
400
|
};
|
|
385
401
|
output: {
|
|
386
|
-
name: "
|
|
402
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
387
403
|
enabled: boolean;
|
|
388
404
|
trial_expired?: boolean | undefined;
|
|
389
405
|
};
|
|
@@ -396,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
396
412
|
$put: {
|
|
397
413
|
input: {
|
|
398
414
|
param: {
|
|
399
|
-
factor_name: "
|
|
415
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
400
416
|
};
|
|
401
417
|
} & {
|
|
402
418
|
header: {
|
|
@@ -408,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
408
424
|
};
|
|
409
425
|
};
|
|
410
426
|
output: {
|
|
411
|
-
name: "
|
|
427
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
412
428
|
enabled: boolean;
|
|
413
429
|
trial_expired?: boolean | undefined;
|
|
414
430
|
};
|
|
@@ -1153,9 +1169,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1153
1169
|
invitee: {
|
|
1154
1170
|
email?: string | undefined;
|
|
1155
1171
|
};
|
|
1172
|
+
id?: string | undefined;
|
|
1156
1173
|
app_metadata?: Record<string, any> | undefined;
|
|
1157
1174
|
user_metadata?: Record<string, any> | undefined;
|
|
1158
|
-
id?: string | undefined;
|
|
1159
1175
|
connection_id?: string | undefined;
|
|
1160
1176
|
roles?: string[] | undefined;
|
|
1161
1177
|
ttl_sec?: number | undefined;
|
|
@@ -2008,7 +2024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2008
2024
|
type: "REDIRECT";
|
|
2009
2025
|
action: "REDIRECT_USER";
|
|
2010
2026
|
params: {
|
|
2011
|
-
target: "custom" | "
|
|
2027
|
+
target: "custom" | "change-email" | "account";
|
|
2012
2028
|
custom_url?: string | undefined;
|
|
2013
2029
|
};
|
|
2014
2030
|
alias?: string | undefined;
|
|
@@ -2061,7 +2077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2061
2077
|
type: "REDIRECT";
|
|
2062
2078
|
action: "REDIRECT_USER";
|
|
2063
2079
|
params: {
|
|
2064
|
-
target: "custom" | "
|
|
2080
|
+
target: "custom" | "change-email" | "account";
|
|
2065
2081
|
custom_url?: string | undefined;
|
|
2066
2082
|
};
|
|
2067
2083
|
alias?: string | undefined;
|
|
@@ -2129,7 +2145,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2129
2145
|
type: "REDIRECT";
|
|
2130
2146
|
action: "REDIRECT_USER";
|
|
2131
2147
|
params: {
|
|
2132
|
-
target: "custom" | "
|
|
2148
|
+
target: "custom" | "change-email" | "account";
|
|
2133
2149
|
custom_url?: string | undefined;
|
|
2134
2150
|
};
|
|
2135
2151
|
alias?: string | undefined;
|
|
@@ -2210,7 +2226,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2210
2226
|
type: "REDIRECT";
|
|
2211
2227
|
action: "REDIRECT_USER";
|
|
2212
2228
|
params: {
|
|
2213
|
-
target: "custom" | "
|
|
2229
|
+
target: "custom" | "change-email" | "account";
|
|
2214
2230
|
custom_url?: string | undefined;
|
|
2215
2231
|
};
|
|
2216
2232
|
alias?: string | undefined;
|
|
@@ -2258,7 +2274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2258
2274
|
type: "REDIRECT";
|
|
2259
2275
|
action: "REDIRECT_USER";
|
|
2260
2276
|
params: {
|
|
2261
|
-
target: "custom" | "
|
|
2277
|
+
target: "custom" | "change-email" | "account";
|
|
2262
2278
|
custom_url?: string | undefined;
|
|
2263
2279
|
};
|
|
2264
2280
|
alias?: string | undefined;
|
|
@@ -2318,7 +2334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2318
2334
|
type: "REDIRECT";
|
|
2319
2335
|
action: "REDIRECT_USER";
|
|
2320
2336
|
params: {
|
|
2321
|
-
target: "custom" | "
|
|
2337
|
+
target: "custom" | "change-email" | "account";
|
|
2322
2338
|
custom_url?: string | undefined;
|
|
2323
2339
|
};
|
|
2324
2340
|
alias?: string | undefined;
|
|
@@ -2366,7 +2382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2366
2382
|
type: "REDIRECT";
|
|
2367
2383
|
action: "REDIRECT_USER";
|
|
2368
2384
|
params: {
|
|
2369
|
-
target: "custom" | "
|
|
2385
|
+
target: "custom" | "change-email" | "account";
|
|
2370
2386
|
custom_url?: string | undefined;
|
|
2371
2387
|
};
|
|
2372
2388
|
alias?: string | undefined;
|
|
@@ -2584,7 +2600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2584
2600
|
hint?: string | undefined;
|
|
2585
2601
|
messages?: {
|
|
2586
2602
|
text: string;
|
|
2587
|
-
type: "
|
|
2603
|
+
type: "success" | "error" | "info" | "warning";
|
|
2588
2604
|
id?: number | undefined;
|
|
2589
2605
|
}[] | undefined;
|
|
2590
2606
|
required?: boolean | undefined;
|
|
@@ -2602,7 +2618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2602
2618
|
hint?: string | undefined;
|
|
2603
2619
|
messages?: {
|
|
2604
2620
|
text: string;
|
|
2605
|
-
type: "
|
|
2621
|
+
type: "success" | "error" | "info" | "warning";
|
|
2606
2622
|
id?: number | undefined;
|
|
2607
2623
|
}[] | undefined;
|
|
2608
2624
|
required?: boolean | undefined;
|
|
@@ -2626,7 +2642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2626
2642
|
hint?: string | undefined;
|
|
2627
2643
|
messages?: {
|
|
2628
2644
|
text: string;
|
|
2629
|
-
type: "
|
|
2645
|
+
type: "success" | "error" | "info" | "warning";
|
|
2630
2646
|
id?: number | undefined;
|
|
2631
2647
|
}[] | undefined;
|
|
2632
2648
|
required?: boolean | undefined;
|
|
@@ -2650,7 +2666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2650
2666
|
hint?: string | undefined;
|
|
2651
2667
|
messages?: {
|
|
2652
2668
|
text: string;
|
|
2653
|
-
type: "
|
|
2669
|
+
type: "success" | "error" | "info" | "warning";
|
|
2654
2670
|
id?: number | undefined;
|
|
2655
2671
|
}[] | undefined;
|
|
2656
2672
|
required?: boolean | undefined;
|
|
@@ -2674,7 +2690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2674
2690
|
hint?: string | undefined;
|
|
2675
2691
|
messages?: {
|
|
2676
2692
|
text: string;
|
|
2677
|
-
type: "
|
|
2693
|
+
type: "success" | "error" | "info" | "warning";
|
|
2678
2694
|
id?: number | undefined;
|
|
2679
2695
|
}[] | undefined;
|
|
2680
2696
|
required?: boolean | undefined;
|
|
@@ -2703,7 +2719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2703
2719
|
hint?: string | undefined;
|
|
2704
2720
|
messages?: {
|
|
2705
2721
|
text: string;
|
|
2706
|
-
type: "
|
|
2722
|
+
type: "success" | "error" | "info" | "warning";
|
|
2707
2723
|
id?: number | undefined;
|
|
2708
2724
|
}[] | undefined;
|
|
2709
2725
|
required?: boolean | undefined;
|
|
@@ -2718,7 +2734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2718
2734
|
hint?: string | undefined;
|
|
2719
2735
|
messages?: {
|
|
2720
2736
|
text: string;
|
|
2721
|
-
type: "
|
|
2737
|
+
type: "success" | "error" | "info" | "warning";
|
|
2722
2738
|
id?: number | undefined;
|
|
2723
2739
|
}[] | undefined;
|
|
2724
2740
|
required?: boolean | undefined;
|
|
@@ -2739,7 +2755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2739
2755
|
hint?: string | undefined;
|
|
2740
2756
|
messages?: {
|
|
2741
2757
|
text: string;
|
|
2742
|
-
type: "
|
|
2758
|
+
type: "success" | "error" | "info" | "warning";
|
|
2743
2759
|
id?: number | undefined;
|
|
2744
2760
|
}[] | undefined;
|
|
2745
2761
|
required?: boolean | undefined;
|
|
@@ -2764,7 +2780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2764
2780
|
hint?: string | undefined;
|
|
2765
2781
|
messages?: {
|
|
2766
2782
|
text: string;
|
|
2767
|
-
type: "
|
|
2783
|
+
type: "success" | "error" | "info" | "warning";
|
|
2768
2784
|
id?: number | undefined;
|
|
2769
2785
|
}[] | undefined;
|
|
2770
2786
|
required?: boolean | undefined;
|
|
@@ -2783,7 +2799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2783
2799
|
hint?: string | undefined;
|
|
2784
2800
|
messages?: {
|
|
2785
2801
|
text: string;
|
|
2786
|
-
type: "
|
|
2802
|
+
type: "success" | "error" | "info" | "warning";
|
|
2787
2803
|
id?: number | undefined;
|
|
2788
2804
|
}[] | undefined;
|
|
2789
2805
|
required?: boolean | undefined;
|
|
@@ -2803,7 +2819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2803
2819
|
hint?: string | undefined;
|
|
2804
2820
|
messages?: {
|
|
2805
2821
|
text: string;
|
|
2806
|
-
type: "
|
|
2822
|
+
type: "success" | "error" | "info" | "warning";
|
|
2807
2823
|
id?: number | undefined;
|
|
2808
2824
|
}[] | undefined;
|
|
2809
2825
|
required?: boolean | undefined;
|
|
@@ -2822,7 +2838,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2822
2838
|
hint?: string | undefined;
|
|
2823
2839
|
messages?: {
|
|
2824
2840
|
text: string;
|
|
2825
|
-
type: "
|
|
2841
|
+
type: "success" | "error" | "info" | "warning";
|
|
2826
2842
|
id?: number | undefined;
|
|
2827
2843
|
}[] | undefined;
|
|
2828
2844
|
required?: boolean | undefined;
|
|
@@ -2844,7 +2860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2844
2860
|
hint?: string | undefined;
|
|
2845
2861
|
messages?: {
|
|
2846
2862
|
text: string;
|
|
2847
|
-
type: "
|
|
2863
|
+
type: "success" | "error" | "info" | "warning";
|
|
2848
2864
|
id?: number | undefined;
|
|
2849
2865
|
}[] | undefined;
|
|
2850
2866
|
required?: boolean | undefined;
|
|
@@ -2866,7 +2882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2866
2882
|
hint?: string | undefined;
|
|
2867
2883
|
messages?: {
|
|
2868
2884
|
text: string;
|
|
2869
|
-
type: "
|
|
2885
|
+
type: "success" | "error" | "info" | "warning";
|
|
2870
2886
|
id?: number | undefined;
|
|
2871
2887
|
}[] | undefined;
|
|
2872
2888
|
required?: boolean | undefined;
|
|
@@ -2885,7 +2901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2885
2901
|
hint?: string | undefined;
|
|
2886
2902
|
messages?: {
|
|
2887
2903
|
text: string;
|
|
2888
|
-
type: "
|
|
2904
|
+
type: "success" | "error" | "info" | "warning";
|
|
2889
2905
|
id?: number | undefined;
|
|
2890
2906
|
}[] | undefined;
|
|
2891
2907
|
required?: boolean | undefined;
|
|
@@ -2910,7 +2926,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2910
2926
|
hint?: string | undefined;
|
|
2911
2927
|
messages?: {
|
|
2912
2928
|
text: string;
|
|
2913
|
-
type: "
|
|
2929
|
+
type: "success" | "error" | "info" | "warning";
|
|
2914
2930
|
id?: number | undefined;
|
|
2915
2931
|
}[] | undefined;
|
|
2916
2932
|
required?: boolean | undefined;
|
|
@@ -2931,7 +2947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2931
2947
|
hint?: string | undefined;
|
|
2932
2948
|
messages?: {
|
|
2933
2949
|
text: string;
|
|
2934
|
-
type: "
|
|
2950
|
+
type: "success" | "error" | "info" | "warning";
|
|
2935
2951
|
id?: number | undefined;
|
|
2936
2952
|
}[] | undefined;
|
|
2937
2953
|
required?: boolean | undefined;
|
|
@@ -2952,7 +2968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2952
2968
|
hint?: string | undefined;
|
|
2953
2969
|
messages?: {
|
|
2954
2970
|
text: string;
|
|
2955
|
-
type: "
|
|
2971
|
+
type: "success" | "error" | "info" | "warning";
|
|
2956
2972
|
id?: number | undefined;
|
|
2957
2973
|
}[] | undefined;
|
|
2958
2974
|
required?: boolean | undefined;
|
|
@@ -3185,7 +3201,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3185
3201
|
hint?: string | undefined;
|
|
3186
3202
|
messages?: {
|
|
3187
3203
|
text: string;
|
|
3188
|
-
type: "
|
|
3204
|
+
type: "success" | "error" | "info" | "warning";
|
|
3189
3205
|
id?: number | undefined;
|
|
3190
3206
|
}[] | undefined;
|
|
3191
3207
|
required?: boolean | undefined;
|
|
@@ -3203,7 +3219,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3203
3219
|
hint?: string | undefined;
|
|
3204
3220
|
messages?: {
|
|
3205
3221
|
text: string;
|
|
3206
|
-
type: "
|
|
3222
|
+
type: "success" | "error" | "info" | "warning";
|
|
3207
3223
|
id?: number | undefined;
|
|
3208
3224
|
}[] | undefined;
|
|
3209
3225
|
required?: boolean | undefined;
|
|
@@ -3227,7 +3243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3227
3243
|
hint?: string | undefined;
|
|
3228
3244
|
messages?: {
|
|
3229
3245
|
text: string;
|
|
3230
|
-
type: "
|
|
3246
|
+
type: "success" | "error" | "info" | "warning";
|
|
3231
3247
|
id?: number | undefined;
|
|
3232
3248
|
}[] | undefined;
|
|
3233
3249
|
required?: boolean | undefined;
|
|
@@ -3251,7 +3267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3251
3267
|
hint?: string | undefined;
|
|
3252
3268
|
messages?: {
|
|
3253
3269
|
text: string;
|
|
3254
|
-
type: "
|
|
3270
|
+
type: "success" | "error" | "info" | "warning";
|
|
3255
3271
|
id?: number | undefined;
|
|
3256
3272
|
}[] | undefined;
|
|
3257
3273
|
required?: boolean | undefined;
|
|
@@ -3275,7 +3291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3275
3291
|
hint?: string | undefined;
|
|
3276
3292
|
messages?: {
|
|
3277
3293
|
text: string;
|
|
3278
|
-
type: "
|
|
3294
|
+
type: "success" | "error" | "info" | "warning";
|
|
3279
3295
|
id?: number | undefined;
|
|
3280
3296
|
}[] | undefined;
|
|
3281
3297
|
required?: boolean | undefined;
|
|
@@ -3304,7 +3320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3304
3320
|
hint?: string | undefined;
|
|
3305
3321
|
messages?: {
|
|
3306
3322
|
text: string;
|
|
3307
|
-
type: "
|
|
3323
|
+
type: "success" | "error" | "info" | "warning";
|
|
3308
3324
|
id?: number | undefined;
|
|
3309
3325
|
}[] | undefined;
|
|
3310
3326
|
required?: boolean | undefined;
|
|
@@ -3319,7 +3335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3319
3335
|
hint?: string | undefined;
|
|
3320
3336
|
messages?: {
|
|
3321
3337
|
text: string;
|
|
3322
|
-
type: "
|
|
3338
|
+
type: "success" | "error" | "info" | "warning";
|
|
3323
3339
|
id?: number | undefined;
|
|
3324
3340
|
}[] | undefined;
|
|
3325
3341
|
required?: boolean | undefined;
|
|
@@ -3340,7 +3356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3340
3356
|
hint?: string | undefined;
|
|
3341
3357
|
messages?: {
|
|
3342
3358
|
text: string;
|
|
3343
|
-
type: "
|
|
3359
|
+
type: "success" | "error" | "info" | "warning";
|
|
3344
3360
|
id?: number | undefined;
|
|
3345
3361
|
}[] | undefined;
|
|
3346
3362
|
required?: boolean | undefined;
|
|
@@ -3365,7 +3381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3365
3381
|
hint?: string | undefined;
|
|
3366
3382
|
messages?: {
|
|
3367
3383
|
text: string;
|
|
3368
|
-
type: "
|
|
3384
|
+
type: "success" | "error" | "info" | "warning";
|
|
3369
3385
|
id?: number | undefined;
|
|
3370
3386
|
}[] | undefined;
|
|
3371
3387
|
required?: boolean | undefined;
|
|
@@ -3384,7 +3400,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3384
3400
|
hint?: string | undefined;
|
|
3385
3401
|
messages?: {
|
|
3386
3402
|
text: string;
|
|
3387
|
-
type: "
|
|
3403
|
+
type: "success" | "error" | "info" | "warning";
|
|
3388
3404
|
id?: number | undefined;
|
|
3389
3405
|
}[] | undefined;
|
|
3390
3406
|
required?: boolean | undefined;
|
|
@@ -3404,7 +3420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3404
3420
|
hint?: string | undefined;
|
|
3405
3421
|
messages?: {
|
|
3406
3422
|
text: string;
|
|
3407
|
-
type: "
|
|
3423
|
+
type: "success" | "error" | "info" | "warning";
|
|
3408
3424
|
id?: number | undefined;
|
|
3409
3425
|
}[] | undefined;
|
|
3410
3426
|
required?: boolean | undefined;
|
|
@@ -3423,7 +3439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3423
3439
|
hint?: string | undefined;
|
|
3424
3440
|
messages?: {
|
|
3425
3441
|
text: string;
|
|
3426
|
-
type: "
|
|
3442
|
+
type: "success" | "error" | "info" | "warning";
|
|
3427
3443
|
id?: number | undefined;
|
|
3428
3444
|
}[] | undefined;
|
|
3429
3445
|
required?: boolean | undefined;
|
|
@@ -3445,7 +3461,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3445
3461
|
hint?: string | undefined;
|
|
3446
3462
|
messages?: {
|
|
3447
3463
|
text: string;
|
|
3448
|
-
type: "
|
|
3464
|
+
type: "success" | "error" | "info" | "warning";
|
|
3449
3465
|
id?: number | undefined;
|
|
3450
3466
|
}[] | undefined;
|
|
3451
3467
|
required?: boolean | undefined;
|
|
@@ -3467,7 +3483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3467
3483
|
hint?: string | undefined;
|
|
3468
3484
|
messages?: {
|
|
3469
3485
|
text: string;
|
|
3470
|
-
type: "
|
|
3486
|
+
type: "success" | "error" | "info" | "warning";
|
|
3471
3487
|
id?: number | undefined;
|
|
3472
3488
|
}[] | undefined;
|
|
3473
3489
|
required?: boolean | undefined;
|
|
@@ -3486,7 +3502,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3486
3502
|
hint?: string | undefined;
|
|
3487
3503
|
messages?: {
|
|
3488
3504
|
text: string;
|
|
3489
|
-
type: "
|
|
3505
|
+
type: "success" | "error" | "info" | "warning";
|
|
3490
3506
|
id?: number | undefined;
|
|
3491
3507
|
}[] | undefined;
|
|
3492
3508
|
required?: boolean | undefined;
|
|
@@ -3511,7 +3527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3511
3527
|
hint?: string | undefined;
|
|
3512
3528
|
messages?: {
|
|
3513
3529
|
text: string;
|
|
3514
|
-
type: "
|
|
3530
|
+
type: "success" | "error" | "info" | "warning";
|
|
3515
3531
|
id?: number | undefined;
|
|
3516
3532
|
}[] | undefined;
|
|
3517
3533
|
required?: boolean | undefined;
|
|
@@ -3532,7 +3548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3532
3548
|
hint?: string | undefined;
|
|
3533
3549
|
messages?: {
|
|
3534
3550
|
text: string;
|
|
3535
|
-
type: "
|
|
3551
|
+
type: "success" | "error" | "info" | "warning";
|
|
3536
3552
|
id?: number | undefined;
|
|
3537
3553
|
}[] | undefined;
|
|
3538
3554
|
required?: boolean | undefined;
|
|
@@ -3553,7 +3569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3553
3569
|
hint?: string | undefined;
|
|
3554
3570
|
messages?: {
|
|
3555
3571
|
text: string;
|
|
3556
|
-
type: "
|
|
3572
|
+
type: "success" | "error" | "info" | "warning";
|
|
3557
3573
|
id?: number | undefined;
|
|
3558
3574
|
}[] | undefined;
|
|
3559
3575
|
required?: boolean | undefined;
|
|
@@ -3801,7 +3817,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3801
3817
|
hint?: string | undefined;
|
|
3802
3818
|
messages?: {
|
|
3803
3819
|
text: string;
|
|
3804
|
-
type: "
|
|
3820
|
+
type: "success" | "error" | "info" | "warning";
|
|
3805
3821
|
id?: number | undefined;
|
|
3806
3822
|
}[] | undefined;
|
|
3807
3823
|
required?: boolean | undefined;
|
|
@@ -3819,7 +3835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3819
3835
|
hint?: string | undefined;
|
|
3820
3836
|
messages?: {
|
|
3821
3837
|
text: string;
|
|
3822
|
-
type: "
|
|
3838
|
+
type: "success" | "error" | "info" | "warning";
|
|
3823
3839
|
id?: number | undefined;
|
|
3824
3840
|
}[] | undefined;
|
|
3825
3841
|
required?: boolean | undefined;
|
|
@@ -3843,7 +3859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3843
3859
|
hint?: string | undefined;
|
|
3844
3860
|
messages?: {
|
|
3845
3861
|
text: string;
|
|
3846
|
-
type: "
|
|
3862
|
+
type: "success" | "error" | "info" | "warning";
|
|
3847
3863
|
id?: number | undefined;
|
|
3848
3864
|
}[] | undefined;
|
|
3849
3865
|
required?: boolean | undefined;
|
|
@@ -3867,7 +3883,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3867
3883
|
hint?: string | undefined;
|
|
3868
3884
|
messages?: {
|
|
3869
3885
|
text: string;
|
|
3870
|
-
type: "
|
|
3886
|
+
type: "success" | "error" | "info" | "warning";
|
|
3871
3887
|
id?: number | undefined;
|
|
3872
3888
|
}[] | undefined;
|
|
3873
3889
|
required?: boolean | undefined;
|
|
@@ -3891,7 +3907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3891
3907
|
hint?: string | undefined;
|
|
3892
3908
|
messages?: {
|
|
3893
3909
|
text: string;
|
|
3894
|
-
type: "
|
|
3910
|
+
type: "success" | "error" | "info" | "warning";
|
|
3895
3911
|
id?: number | undefined;
|
|
3896
3912
|
}[] | undefined;
|
|
3897
3913
|
required?: boolean | undefined;
|
|
@@ -3920,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3920
3936
|
hint?: string | undefined;
|
|
3921
3937
|
messages?: {
|
|
3922
3938
|
text: string;
|
|
3923
|
-
type: "
|
|
3939
|
+
type: "success" | "error" | "info" | "warning";
|
|
3924
3940
|
id?: number | undefined;
|
|
3925
3941
|
}[] | undefined;
|
|
3926
3942
|
required?: boolean | undefined;
|
|
@@ -3935,7 +3951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3935
3951
|
hint?: string | undefined;
|
|
3936
3952
|
messages?: {
|
|
3937
3953
|
text: string;
|
|
3938
|
-
type: "
|
|
3954
|
+
type: "success" | "error" | "info" | "warning";
|
|
3939
3955
|
id?: number | undefined;
|
|
3940
3956
|
}[] | undefined;
|
|
3941
3957
|
required?: boolean | undefined;
|
|
@@ -3956,7 +3972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3956
3972
|
hint?: string | undefined;
|
|
3957
3973
|
messages?: {
|
|
3958
3974
|
text: string;
|
|
3959
|
-
type: "
|
|
3975
|
+
type: "success" | "error" | "info" | "warning";
|
|
3960
3976
|
id?: number | undefined;
|
|
3961
3977
|
}[] | undefined;
|
|
3962
3978
|
required?: boolean | undefined;
|
|
@@ -3981,7 +3997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3981
3997
|
hint?: string | undefined;
|
|
3982
3998
|
messages?: {
|
|
3983
3999
|
text: string;
|
|
3984
|
-
type: "
|
|
4000
|
+
type: "success" | "error" | "info" | "warning";
|
|
3985
4001
|
id?: number | undefined;
|
|
3986
4002
|
}[] | undefined;
|
|
3987
4003
|
required?: boolean | undefined;
|
|
@@ -4000,7 +4016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4000
4016
|
hint?: string | undefined;
|
|
4001
4017
|
messages?: {
|
|
4002
4018
|
text: string;
|
|
4003
|
-
type: "
|
|
4019
|
+
type: "success" | "error" | "info" | "warning";
|
|
4004
4020
|
id?: number | undefined;
|
|
4005
4021
|
}[] | undefined;
|
|
4006
4022
|
required?: boolean | undefined;
|
|
@@ -4020,7 +4036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4020
4036
|
hint?: string | undefined;
|
|
4021
4037
|
messages?: {
|
|
4022
4038
|
text: string;
|
|
4023
|
-
type: "
|
|
4039
|
+
type: "success" | "error" | "info" | "warning";
|
|
4024
4040
|
id?: number | undefined;
|
|
4025
4041
|
}[] | undefined;
|
|
4026
4042
|
required?: boolean | undefined;
|
|
@@ -4039,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4039
4055
|
hint?: string | undefined;
|
|
4040
4056
|
messages?: {
|
|
4041
4057
|
text: string;
|
|
4042
|
-
type: "
|
|
4058
|
+
type: "success" | "error" | "info" | "warning";
|
|
4043
4059
|
id?: number | undefined;
|
|
4044
4060
|
}[] | undefined;
|
|
4045
4061
|
required?: boolean | undefined;
|
|
@@ -4061,7 +4077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4061
4077
|
hint?: string | undefined;
|
|
4062
4078
|
messages?: {
|
|
4063
4079
|
text: string;
|
|
4064
|
-
type: "
|
|
4080
|
+
type: "success" | "error" | "info" | "warning";
|
|
4065
4081
|
id?: number | undefined;
|
|
4066
4082
|
}[] | undefined;
|
|
4067
4083
|
required?: boolean | undefined;
|
|
@@ -4083,7 +4099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4083
4099
|
hint?: string | undefined;
|
|
4084
4100
|
messages?: {
|
|
4085
4101
|
text: string;
|
|
4086
|
-
type: "
|
|
4102
|
+
type: "success" | "error" | "info" | "warning";
|
|
4087
4103
|
id?: number | undefined;
|
|
4088
4104
|
}[] | undefined;
|
|
4089
4105
|
required?: boolean | undefined;
|
|
@@ -4102,7 +4118,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4102
4118
|
hint?: string | undefined;
|
|
4103
4119
|
messages?: {
|
|
4104
4120
|
text: string;
|
|
4105
|
-
type: "
|
|
4121
|
+
type: "success" | "error" | "info" | "warning";
|
|
4106
4122
|
id?: number | undefined;
|
|
4107
4123
|
}[] | undefined;
|
|
4108
4124
|
required?: boolean | undefined;
|
|
@@ -4127,7 +4143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4127
4143
|
hint?: string | undefined;
|
|
4128
4144
|
messages?: {
|
|
4129
4145
|
text: string;
|
|
4130
|
-
type: "
|
|
4146
|
+
type: "success" | "error" | "info" | "warning";
|
|
4131
4147
|
id?: number | undefined;
|
|
4132
4148
|
}[] | undefined;
|
|
4133
4149
|
required?: boolean | undefined;
|
|
@@ -4148,7 +4164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4148
4164
|
hint?: string | undefined;
|
|
4149
4165
|
messages?: {
|
|
4150
4166
|
text: string;
|
|
4151
|
-
type: "
|
|
4167
|
+
type: "success" | "error" | "info" | "warning";
|
|
4152
4168
|
id?: number | undefined;
|
|
4153
4169
|
}[] | undefined;
|
|
4154
4170
|
required?: boolean | undefined;
|
|
@@ -4169,7 +4185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4169
4185
|
hint?: string | undefined;
|
|
4170
4186
|
messages?: {
|
|
4171
4187
|
text: string;
|
|
4172
|
-
type: "
|
|
4188
|
+
type: "success" | "error" | "info" | "warning";
|
|
4173
4189
|
id?: number | undefined;
|
|
4174
4190
|
}[] | undefined;
|
|
4175
4191
|
required?: boolean | undefined;
|
|
@@ -4423,7 +4439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4423
4439
|
hint?: string | undefined;
|
|
4424
4440
|
messages?: {
|
|
4425
4441
|
text: string;
|
|
4426
|
-
type: "
|
|
4442
|
+
type: "success" | "error" | "info" | "warning";
|
|
4427
4443
|
id?: number | undefined;
|
|
4428
4444
|
}[] | undefined;
|
|
4429
4445
|
required?: boolean | undefined;
|
|
@@ -4441,7 +4457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4441
4457
|
hint?: string | undefined;
|
|
4442
4458
|
messages?: {
|
|
4443
4459
|
text: string;
|
|
4444
|
-
type: "
|
|
4460
|
+
type: "success" | "error" | "info" | "warning";
|
|
4445
4461
|
id?: number | undefined;
|
|
4446
4462
|
}[] | undefined;
|
|
4447
4463
|
required?: boolean | undefined;
|
|
@@ -4465,7 +4481,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4465
4481
|
hint?: string | undefined;
|
|
4466
4482
|
messages?: {
|
|
4467
4483
|
text: string;
|
|
4468
|
-
type: "
|
|
4484
|
+
type: "success" | "error" | "info" | "warning";
|
|
4469
4485
|
id?: number | undefined;
|
|
4470
4486
|
}[] | undefined;
|
|
4471
4487
|
required?: boolean | undefined;
|
|
@@ -4489,7 +4505,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4489
4505
|
hint?: string | undefined;
|
|
4490
4506
|
messages?: {
|
|
4491
4507
|
text: string;
|
|
4492
|
-
type: "
|
|
4508
|
+
type: "success" | "error" | "info" | "warning";
|
|
4493
4509
|
id?: number | undefined;
|
|
4494
4510
|
}[] | undefined;
|
|
4495
4511
|
required?: boolean | undefined;
|
|
@@ -4513,7 +4529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4513
4529
|
hint?: string | undefined;
|
|
4514
4530
|
messages?: {
|
|
4515
4531
|
text: string;
|
|
4516
|
-
type: "
|
|
4532
|
+
type: "success" | "error" | "info" | "warning";
|
|
4517
4533
|
id?: number | undefined;
|
|
4518
4534
|
}[] | undefined;
|
|
4519
4535
|
required?: boolean | undefined;
|
|
@@ -4538,7 +4554,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4538
4554
|
hint?: string | undefined;
|
|
4539
4555
|
messages?: {
|
|
4540
4556
|
text: string;
|
|
4541
|
-
type: "
|
|
4557
|
+
type: "success" | "error" | "info" | "warning";
|
|
4542
4558
|
id?: number | undefined;
|
|
4543
4559
|
}[] | undefined;
|
|
4544
4560
|
required?: boolean | undefined;
|
|
@@ -4553,7 +4569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4553
4569
|
hint?: string | undefined;
|
|
4554
4570
|
messages?: {
|
|
4555
4571
|
text: string;
|
|
4556
|
-
type: "
|
|
4572
|
+
type: "success" | "error" | "info" | "warning";
|
|
4557
4573
|
id?: number | undefined;
|
|
4558
4574
|
}[] | undefined;
|
|
4559
4575
|
required?: boolean | undefined;
|
|
@@ -4574,7 +4590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4574
4590
|
hint?: string | undefined;
|
|
4575
4591
|
messages?: {
|
|
4576
4592
|
text: string;
|
|
4577
|
-
type: "
|
|
4593
|
+
type: "success" | "error" | "info" | "warning";
|
|
4578
4594
|
id?: number | undefined;
|
|
4579
4595
|
}[] | undefined;
|
|
4580
4596
|
required?: boolean | undefined;
|
|
@@ -4599,7 +4615,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4599
4615
|
hint?: string | undefined;
|
|
4600
4616
|
messages?: {
|
|
4601
4617
|
text: string;
|
|
4602
|
-
type: "
|
|
4618
|
+
type: "success" | "error" | "info" | "warning";
|
|
4603
4619
|
id?: number | undefined;
|
|
4604
4620
|
}[] | undefined;
|
|
4605
4621
|
required?: boolean | undefined;
|
|
@@ -4618,7 +4634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4618
4634
|
hint?: string | undefined;
|
|
4619
4635
|
messages?: {
|
|
4620
4636
|
text: string;
|
|
4621
|
-
type: "
|
|
4637
|
+
type: "success" | "error" | "info" | "warning";
|
|
4622
4638
|
id?: number | undefined;
|
|
4623
4639
|
}[] | undefined;
|
|
4624
4640
|
required?: boolean | undefined;
|
|
@@ -4638,7 +4654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4638
4654
|
hint?: string | undefined;
|
|
4639
4655
|
messages?: {
|
|
4640
4656
|
text: string;
|
|
4641
|
-
type: "
|
|
4657
|
+
type: "success" | "error" | "info" | "warning";
|
|
4642
4658
|
id?: number | undefined;
|
|
4643
4659
|
}[] | undefined;
|
|
4644
4660
|
required?: boolean | undefined;
|
|
@@ -4657,7 +4673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4657
4673
|
hint?: string | undefined;
|
|
4658
4674
|
messages?: {
|
|
4659
4675
|
text: string;
|
|
4660
|
-
type: "
|
|
4676
|
+
type: "success" | "error" | "info" | "warning";
|
|
4661
4677
|
id?: number | undefined;
|
|
4662
4678
|
}[] | undefined;
|
|
4663
4679
|
required?: boolean | undefined;
|
|
@@ -4679,7 +4695,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4679
4695
|
hint?: string | undefined;
|
|
4680
4696
|
messages?: {
|
|
4681
4697
|
text: string;
|
|
4682
|
-
type: "
|
|
4698
|
+
type: "success" | "error" | "info" | "warning";
|
|
4683
4699
|
id?: number | undefined;
|
|
4684
4700
|
}[] | undefined;
|
|
4685
4701
|
required?: boolean | undefined;
|
|
@@ -4701,7 +4717,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4701
4717
|
hint?: string | undefined;
|
|
4702
4718
|
messages?: {
|
|
4703
4719
|
text: string;
|
|
4704
|
-
type: "
|
|
4720
|
+
type: "success" | "error" | "info" | "warning";
|
|
4705
4721
|
id?: number | undefined;
|
|
4706
4722
|
}[] | undefined;
|
|
4707
4723
|
required?: boolean | undefined;
|
|
@@ -4720,7 +4736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4720
4736
|
hint?: string | undefined;
|
|
4721
4737
|
messages?: {
|
|
4722
4738
|
text: string;
|
|
4723
|
-
type: "
|
|
4739
|
+
type: "success" | "error" | "info" | "warning";
|
|
4724
4740
|
id?: number | undefined;
|
|
4725
4741
|
}[] | undefined;
|
|
4726
4742
|
required?: boolean | undefined;
|
|
@@ -4745,7 +4761,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4745
4761
|
hint?: string | undefined;
|
|
4746
4762
|
messages?: {
|
|
4747
4763
|
text: string;
|
|
4748
|
-
type: "
|
|
4764
|
+
type: "success" | "error" | "info" | "warning";
|
|
4749
4765
|
id?: number | undefined;
|
|
4750
4766
|
}[] | undefined;
|
|
4751
4767
|
required?: boolean | undefined;
|
|
@@ -4766,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4766
4782
|
hint?: string | undefined;
|
|
4767
4783
|
messages?: {
|
|
4768
4784
|
text: string;
|
|
4769
|
-
type: "
|
|
4785
|
+
type: "success" | "error" | "info" | "warning";
|
|
4770
4786
|
id?: number | undefined;
|
|
4771
4787
|
}[] | undefined;
|
|
4772
4788
|
required?: boolean | undefined;
|
|
@@ -4787,7 +4803,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4787
4803
|
hint?: string | undefined;
|
|
4788
4804
|
messages?: {
|
|
4789
4805
|
text: string;
|
|
4790
|
-
type: "
|
|
4806
|
+
type: "success" | "error" | "info" | "warning";
|
|
4791
4807
|
id?: number | undefined;
|
|
4792
4808
|
}[] | undefined;
|
|
4793
4809
|
required?: boolean | undefined;
|
|
@@ -5018,7 +5034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5018
5034
|
hint?: string | undefined;
|
|
5019
5035
|
messages?: {
|
|
5020
5036
|
text: string;
|
|
5021
|
-
type: "
|
|
5037
|
+
type: "success" | "error" | "info" | "warning";
|
|
5022
5038
|
id?: number | undefined;
|
|
5023
5039
|
}[] | undefined;
|
|
5024
5040
|
required?: boolean | undefined;
|
|
@@ -5036,7 +5052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5036
5052
|
hint?: string | undefined;
|
|
5037
5053
|
messages?: {
|
|
5038
5054
|
text: string;
|
|
5039
|
-
type: "
|
|
5055
|
+
type: "success" | "error" | "info" | "warning";
|
|
5040
5056
|
id?: number | undefined;
|
|
5041
5057
|
}[] | undefined;
|
|
5042
5058
|
required?: boolean | undefined;
|
|
@@ -5060,7 +5076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5060
5076
|
hint?: string | undefined;
|
|
5061
5077
|
messages?: {
|
|
5062
5078
|
text: string;
|
|
5063
|
-
type: "
|
|
5079
|
+
type: "success" | "error" | "info" | "warning";
|
|
5064
5080
|
id?: number | undefined;
|
|
5065
5081
|
}[] | undefined;
|
|
5066
5082
|
required?: boolean | undefined;
|
|
@@ -5084,7 +5100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5084
5100
|
hint?: string | undefined;
|
|
5085
5101
|
messages?: {
|
|
5086
5102
|
text: string;
|
|
5087
|
-
type: "
|
|
5103
|
+
type: "success" | "error" | "info" | "warning";
|
|
5088
5104
|
id?: number | undefined;
|
|
5089
5105
|
}[] | undefined;
|
|
5090
5106
|
required?: boolean | undefined;
|
|
@@ -5108,7 +5124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5108
5124
|
hint?: string | undefined;
|
|
5109
5125
|
messages?: {
|
|
5110
5126
|
text: string;
|
|
5111
|
-
type: "
|
|
5127
|
+
type: "success" | "error" | "info" | "warning";
|
|
5112
5128
|
id?: number | undefined;
|
|
5113
5129
|
}[] | undefined;
|
|
5114
5130
|
required?: boolean | undefined;
|
|
@@ -5137,7 +5153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5137
5153
|
hint?: string | undefined;
|
|
5138
5154
|
messages?: {
|
|
5139
5155
|
text: string;
|
|
5140
|
-
type: "
|
|
5156
|
+
type: "success" | "error" | "info" | "warning";
|
|
5141
5157
|
id?: number | undefined;
|
|
5142
5158
|
}[] | undefined;
|
|
5143
5159
|
required?: boolean | undefined;
|
|
@@ -5152,7 +5168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5152
5168
|
hint?: string | undefined;
|
|
5153
5169
|
messages?: {
|
|
5154
5170
|
text: string;
|
|
5155
|
-
type: "
|
|
5171
|
+
type: "success" | "error" | "info" | "warning";
|
|
5156
5172
|
id?: number | undefined;
|
|
5157
5173
|
}[] | undefined;
|
|
5158
5174
|
required?: boolean | undefined;
|
|
@@ -5173,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5173
5189
|
hint?: string | undefined;
|
|
5174
5190
|
messages?: {
|
|
5175
5191
|
text: string;
|
|
5176
|
-
type: "
|
|
5192
|
+
type: "success" | "error" | "info" | "warning";
|
|
5177
5193
|
id?: number | undefined;
|
|
5178
5194
|
}[] | undefined;
|
|
5179
5195
|
required?: boolean | undefined;
|
|
@@ -5198,7 +5214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5198
5214
|
hint?: string | undefined;
|
|
5199
5215
|
messages?: {
|
|
5200
5216
|
text: string;
|
|
5201
|
-
type: "
|
|
5217
|
+
type: "success" | "error" | "info" | "warning";
|
|
5202
5218
|
id?: number | undefined;
|
|
5203
5219
|
}[] | undefined;
|
|
5204
5220
|
required?: boolean | undefined;
|
|
@@ -5217,7 +5233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5217
5233
|
hint?: string | undefined;
|
|
5218
5234
|
messages?: {
|
|
5219
5235
|
text: string;
|
|
5220
|
-
type: "
|
|
5236
|
+
type: "success" | "error" | "info" | "warning";
|
|
5221
5237
|
id?: number | undefined;
|
|
5222
5238
|
}[] | undefined;
|
|
5223
5239
|
required?: boolean | undefined;
|
|
@@ -5237,7 +5253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5237
5253
|
hint?: string | undefined;
|
|
5238
5254
|
messages?: {
|
|
5239
5255
|
text: string;
|
|
5240
|
-
type: "
|
|
5256
|
+
type: "success" | "error" | "info" | "warning";
|
|
5241
5257
|
id?: number | undefined;
|
|
5242
5258
|
}[] | undefined;
|
|
5243
5259
|
required?: boolean | undefined;
|
|
@@ -5256,7 +5272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5256
5272
|
hint?: string | undefined;
|
|
5257
5273
|
messages?: {
|
|
5258
5274
|
text: string;
|
|
5259
|
-
type: "
|
|
5275
|
+
type: "success" | "error" | "info" | "warning";
|
|
5260
5276
|
id?: number | undefined;
|
|
5261
5277
|
}[] | undefined;
|
|
5262
5278
|
required?: boolean | undefined;
|
|
@@ -5278,7 +5294,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5278
5294
|
hint?: string | undefined;
|
|
5279
5295
|
messages?: {
|
|
5280
5296
|
text: string;
|
|
5281
|
-
type: "
|
|
5297
|
+
type: "success" | "error" | "info" | "warning";
|
|
5282
5298
|
id?: number | undefined;
|
|
5283
5299
|
}[] | undefined;
|
|
5284
5300
|
required?: boolean | undefined;
|
|
@@ -5300,7 +5316,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5300
5316
|
hint?: string | undefined;
|
|
5301
5317
|
messages?: {
|
|
5302
5318
|
text: string;
|
|
5303
|
-
type: "
|
|
5319
|
+
type: "success" | "error" | "info" | "warning";
|
|
5304
5320
|
id?: number | undefined;
|
|
5305
5321
|
}[] | undefined;
|
|
5306
5322
|
required?: boolean | undefined;
|
|
@@ -5319,7 +5335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5319
5335
|
hint?: string | undefined;
|
|
5320
5336
|
messages?: {
|
|
5321
5337
|
text: string;
|
|
5322
|
-
type: "
|
|
5338
|
+
type: "success" | "error" | "info" | "warning";
|
|
5323
5339
|
id?: number | undefined;
|
|
5324
5340
|
}[] | undefined;
|
|
5325
5341
|
required?: boolean | undefined;
|
|
@@ -5344,7 +5360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5344
5360
|
hint?: string | undefined;
|
|
5345
5361
|
messages?: {
|
|
5346
5362
|
text: string;
|
|
5347
|
-
type: "
|
|
5363
|
+
type: "success" | "error" | "info" | "warning";
|
|
5348
5364
|
id?: number | undefined;
|
|
5349
5365
|
}[] | undefined;
|
|
5350
5366
|
required?: boolean | undefined;
|
|
@@ -5365,7 +5381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5365
5381
|
hint?: string | undefined;
|
|
5366
5382
|
messages?: {
|
|
5367
5383
|
text: string;
|
|
5368
|
-
type: "
|
|
5384
|
+
type: "success" | "error" | "info" | "warning";
|
|
5369
5385
|
id?: number | undefined;
|
|
5370
5386
|
}[] | undefined;
|
|
5371
5387
|
required?: boolean | undefined;
|
|
@@ -5386,7 +5402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5386
5402
|
hint?: string | undefined;
|
|
5387
5403
|
messages?: {
|
|
5388
5404
|
text: string;
|
|
5389
|
-
type: "
|
|
5405
|
+
type: "success" | "error" | "info" | "warning";
|
|
5390
5406
|
id?: number | undefined;
|
|
5391
5407
|
}[] | undefined;
|
|
5392
5408
|
required?: boolean | undefined;
|
|
@@ -5619,7 +5635,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5619
5635
|
hint?: string | undefined;
|
|
5620
5636
|
messages?: {
|
|
5621
5637
|
text: string;
|
|
5622
|
-
type: "
|
|
5638
|
+
type: "success" | "error" | "info" | "warning";
|
|
5623
5639
|
id?: number | undefined;
|
|
5624
5640
|
}[] | undefined;
|
|
5625
5641
|
required?: boolean | undefined;
|
|
@@ -5637,7 +5653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5637
5653
|
hint?: string | undefined;
|
|
5638
5654
|
messages?: {
|
|
5639
5655
|
text: string;
|
|
5640
|
-
type: "
|
|
5656
|
+
type: "success" | "error" | "info" | "warning";
|
|
5641
5657
|
id?: number | undefined;
|
|
5642
5658
|
}[] | undefined;
|
|
5643
5659
|
required?: boolean | undefined;
|
|
@@ -5661,7 +5677,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5661
5677
|
hint?: string | undefined;
|
|
5662
5678
|
messages?: {
|
|
5663
5679
|
text: string;
|
|
5664
|
-
type: "
|
|
5680
|
+
type: "success" | "error" | "info" | "warning";
|
|
5665
5681
|
id?: number | undefined;
|
|
5666
5682
|
}[] | undefined;
|
|
5667
5683
|
required?: boolean | undefined;
|
|
@@ -5685,7 +5701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5685
5701
|
hint?: string | undefined;
|
|
5686
5702
|
messages?: {
|
|
5687
5703
|
text: string;
|
|
5688
|
-
type: "
|
|
5704
|
+
type: "success" | "error" | "info" | "warning";
|
|
5689
5705
|
id?: number | undefined;
|
|
5690
5706
|
}[] | undefined;
|
|
5691
5707
|
required?: boolean | undefined;
|
|
@@ -5709,7 +5725,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5709
5725
|
hint?: string | undefined;
|
|
5710
5726
|
messages?: {
|
|
5711
5727
|
text: string;
|
|
5712
|
-
type: "
|
|
5728
|
+
type: "success" | "error" | "info" | "warning";
|
|
5713
5729
|
id?: number | undefined;
|
|
5714
5730
|
}[] | undefined;
|
|
5715
5731
|
required?: boolean | undefined;
|
|
@@ -5734,7 +5750,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5734
5750
|
hint?: string | undefined;
|
|
5735
5751
|
messages?: {
|
|
5736
5752
|
text: string;
|
|
5737
|
-
type: "
|
|
5753
|
+
type: "success" | "error" | "info" | "warning";
|
|
5738
5754
|
id?: number | undefined;
|
|
5739
5755
|
}[] | undefined;
|
|
5740
5756
|
required?: boolean | undefined;
|
|
@@ -5749,7 +5765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5749
5765
|
hint?: string | undefined;
|
|
5750
5766
|
messages?: {
|
|
5751
5767
|
text: string;
|
|
5752
|
-
type: "
|
|
5768
|
+
type: "success" | "error" | "info" | "warning";
|
|
5753
5769
|
id?: number | undefined;
|
|
5754
5770
|
}[] | undefined;
|
|
5755
5771
|
required?: boolean | undefined;
|
|
@@ -5770,7 +5786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5770
5786
|
hint?: string | undefined;
|
|
5771
5787
|
messages?: {
|
|
5772
5788
|
text: string;
|
|
5773
|
-
type: "
|
|
5789
|
+
type: "success" | "error" | "info" | "warning";
|
|
5774
5790
|
id?: number | undefined;
|
|
5775
5791
|
}[] | undefined;
|
|
5776
5792
|
required?: boolean | undefined;
|
|
@@ -5795,7 +5811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5795
5811
|
hint?: string | undefined;
|
|
5796
5812
|
messages?: {
|
|
5797
5813
|
text: string;
|
|
5798
|
-
type: "
|
|
5814
|
+
type: "success" | "error" | "info" | "warning";
|
|
5799
5815
|
id?: number | undefined;
|
|
5800
5816
|
}[] | undefined;
|
|
5801
5817
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5814
5830
|
hint?: string | undefined;
|
|
5815
5831
|
messages?: {
|
|
5816
5832
|
text: string;
|
|
5817
|
-
type: "
|
|
5833
|
+
type: "success" | "error" | "info" | "warning";
|
|
5818
5834
|
id?: number | undefined;
|
|
5819
5835
|
}[] | undefined;
|
|
5820
5836
|
required?: boolean | undefined;
|
|
@@ -5834,7 +5850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5834
5850
|
hint?: string | undefined;
|
|
5835
5851
|
messages?: {
|
|
5836
5852
|
text: string;
|
|
5837
|
-
type: "
|
|
5853
|
+
type: "success" | "error" | "info" | "warning";
|
|
5838
5854
|
id?: number | undefined;
|
|
5839
5855
|
}[] | undefined;
|
|
5840
5856
|
required?: boolean | undefined;
|
|
@@ -5853,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5853
5869
|
hint?: string | undefined;
|
|
5854
5870
|
messages?: {
|
|
5855
5871
|
text: string;
|
|
5856
|
-
type: "
|
|
5872
|
+
type: "success" | "error" | "info" | "warning";
|
|
5857
5873
|
id?: number | undefined;
|
|
5858
5874
|
}[] | undefined;
|
|
5859
5875
|
required?: boolean | undefined;
|
|
@@ -5875,7 +5891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5875
5891
|
hint?: string | undefined;
|
|
5876
5892
|
messages?: {
|
|
5877
5893
|
text: string;
|
|
5878
|
-
type: "
|
|
5894
|
+
type: "success" | "error" | "info" | "warning";
|
|
5879
5895
|
id?: number | undefined;
|
|
5880
5896
|
}[] | undefined;
|
|
5881
5897
|
required?: boolean | undefined;
|
|
@@ -5897,7 +5913,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5897
5913
|
hint?: string | undefined;
|
|
5898
5914
|
messages?: {
|
|
5899
5915
|
text: string;
|
|
5900
|
-
type: "
|
|
5916
|
+
type: "success" | "error" | "info" | "warning";
|
|
5901
5917
|
id?: number | undefined;
|
|
5902
5918
|
}[] | undefined;
|
|
5903
5919
|
required?: boolean | undefined;
|
|
@@ -5916,7 +5932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5916
5932
|
hint?: string | undefined;
|
|
5917
5933
|
messages?: {
|
|
5918
5934
|
text: string;
|
|
5919
|
-
type: "
|
|
5935
|
+
type: "success" | "error" | "info" | "warning";
|
|
5920
5936
|
id?: number | undefined;
|
|
5921
5937
|
}[] | undefined;
|
|
5922
5938
|
required?: boolean | undefined;
|
|
@@ -5941,7 +5957,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5941
5957
|
hint?: string | undefined;
|
|
5942
5958
|
messages?: {
|
|
5943
5959
|
text: string;
|
|
5944
|
-
type: "
|
|
5960
|
+
type: "success" | "error" | "info" | "warning";
|
|
5945
5961
|
id?: number | undefined;
|
|
5946
5962
|
}[] | undefined;
|
|
5947
5963
|
required?: boolean | undefined;
|
|
@@ -5962,7 +5978,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5962
5978
|
hint?: string | undefined;
|
|
5963
5979
|
messages?: {
|
|
5964
5980
|
text: string;
|
|
5965
|
-
type: "
|
|
5981
|
+
type: "success" | "error" | "info" | "warning";
|
|
5966
5982
|
id?: number | undefined;
|
|
5967
5983
|
}[] | undefined;
|
|
5968
5984
|
required?: boolean | undefined;
|
|
@@ -5983,7 +5999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5983
5999
|
hint?: string | undefined;
|
|
5984
6000
|
messages?: {
|
|
5985
6001
|
text: string;
|
|
5986
|
-
type: "
|
|
6002
|
+
type: "success" | "error" | "info" | "warning";
|
|
5987
6003
|
id?: number | undefined;
|
|
5988
6004
|
}[] | undefined;
|
|
5989
6005
|
required?: boolean | undefined;
|
|
@@ -6214,7 +6230,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6214
6230
|
hint?: string | undefined;
|
|
6215
6231
|
messages?: {
|
|
6216
6232
|
text: string;
|
|
6217
|
-
type: "
|
|
6233
|
+
type: "success" | "error" | "info" | "warning";
|
|
6218
6234
|
id?: number | undefined;
|
|
6219
6235
|
}[] | undefined;
|
|
6220
6236
|
required?: boolean | undefined;
|
|
@@ -6232,7 +6248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6232
6248
|
hint?: string | undefined;
|
|
6233
6249
|
messages?: {
|
|
6234
6250
|
text: string;
|
|
6235
|
-
type: "
|
|
6251
|
+
type: "success" | "error" | "info" | "warning";
|
|
6236
6252
|
id?: number | undefined;
|
|
6237
6253
|
}[] | undefined;
|
|
6238
6254
|
required?: boolean | undefined;
|
|
@@ -6256,7 +6272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6256
6272
|
hint?: string | undefined;
|
|
6257
6273
|
messages?: {
|
|
6258
6274
|
text: string;
|
|
6259
|
-
type: "
|
|
6275
|
+
type: "success" | "error" | "info" | "warning";
|
|
6260
6276
|
id?: number | undefined;
|
|
6261
6277
|
}[] | undefined;
|
|
6262
6278
|
required?: boolean | undefined;
|
|
@@ -6280,7 +6296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6280
6296
|
hint?: string | undefined;
|
|
6281
6297
|
messages?: {
|
|
6282
6298
|
text: string;
|
|
6283
|
-
type: "
|
|
6299
|
+
type: "success" | "error" | "info" | "warning";
|
|
6284
6300
|
id?: number | undefined;
|
|
6285
6301
|
}[] | undefined;
|
|
6286
6302
|
required?: boolean | undefined;
|
|
@@ -6304,7 +6320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6304
6320
|
hint?: string | undefined;
|
|
6305
6321
|
messages?: {
|
|
6306
6322
|
text: string;
|
|
6307
|
-
type: "
|
|
6323
|
+
type: "success" | "error" | "info" | "warning";
|
|
6308
6324
|
id?: number | undefined;
|
|
6309
6325
|
}[] | undefined;
|
|
6310
6326
|
required?: boolean | undefined;
|
|
@@ -6333,7 +6349,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6333
6349
|
hint?: string | undefined;
|
|
6334
6350
|
messages?: {
|
|
6335
6351
|
text: string;
|
|
6336
|
-
type: "
|
|
6352
|
+
type: "success" | "error" | "info" | "warning";
|
|
6337
6353
|
id?: number | undefined;
|
|
6338
6354
|
}[] | undefined;
|
|
6339
6355
|
required?: boolean | undefined;
|
|
@@ -6348,7 +6364,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6348
6364
|
hint?: string | undefined;
|
|
6349
6365
|
messages?: {
|
|
6350
6366
|
text: string;
|
|
6351
|
-
type: "
|
|
6367
|
+
type: "success" | "error" | "info" | "warning";
|
|
6352
6368
|
id?: number | undefined;
|
|
6353
6369
|
}[] | undefined;
|
|
6354
6370
|
required?: boolean | undefined;
|
|
@@ -6369,7 +6385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6369
6385
|
hint?: string | undefined;
|
|
6370
6386
|
messages?: {
|
|
6371
6387
|
text: string;
|
|
6372
|
-
type: "
|
|
6388
|
+
type: "success" | "error" | "info" | "warning";
|
|
6373
6389
|
id?: number | undefined;
|
|
6374
6390
|
}[] | undefined;
|
|
6375
6391
|
required?: boolean | undefined;
|
|
@@ -6394,7 +6410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6394
6410
|
hint?: string | undefined;
|
|
6395
6411
|
messages?: {
|
|
6396
6412
|
text: string;
|
|
6397
|
-
type: "
|
|
6413
|
+
type: "success" | "error" | "info" | "warning";
|
|
6398
6414
|
id?: number | undefined;
|
|
6399
6415
|
}[] | undefined;
|
|
6400
6416
|
required?: boolean | undefined;
|
|
@@ -6413,7 +6429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6413
6429
|
hint?: string | undefined;
|
|
6414
6430
|
messages?: {
|
|
6415
6431
|
text: string;
|
|
6416
|
-
type: "
|
|
6432
|
+
type: "success" | "error" | "info" | "warning";
|
|
6417
6433
|
id?: number | undefined;
|
|
6418
6434
|
}[] | undefined;
|
|
6419
6435
|
required?: boolean | undefined;
|
|
@@ -6433,7 +6449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6433
6449
|
hint?: string | undefined;
|
|
6434
6450
|
messages?: {
|
|
6435
6451
|
text: string;
|
|
6436
|
-
type: "
|
|
6452
|
+
type: "success" | "error" | "info" | "warning";
|
|
6437
6453
|
id?: number | undefined;
|
|
6438
6454
|
}[] | undefined;
|
|
6439
6455
|
required?: boolean | undefined;
|
|
@@ -6452,7 +6468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6452
6468
|
hint?: string | undefined;
|
|
6453
6469
|
messages?: {
|
|
6454
6470
|
text: string;
|
|
6455
|
-
type: "
|
|
6471
|
+
type: "success" | "error" | "info" | "warning";
|
|
6456
6472
|
id?: number | undefined;
|
|
6457
6473
|
}[] | undefined;
|
|
6458
6474
|
required?: boolean | undefined;
|
|
@@ -6474,7 +6490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6474
6490
|
hint?: string | undefined;
|
|
6475
6491
|
messages?: {
|
|
6476
6492
|
text: string;
|
|
6477
|
-
type: "
|
|
6493
|
+
type: "success" | "error" | "info" | "warning";
|
|
6478
6494
|
id?: number | undefined;
|
|
6479
6495
|
}[] | undefined;
|
|
6480
6496
|
required?: boolean | undefined;
|
|
@@ -6496,7 +6512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6496
6512
|
hint?: string | undefined;
|
|
6497
6513
|
messages?: {
|
|
6498
6514
|
text: string;
|
|
6499
|
-
type: "
|
|
6515
|
+
type: "success" | "error" | "info" | "warning";
|
|
6500
6516
|
id?: number | undefined;
|
|
6501
6517
|
}[] | undefined;
|
|
6502
6518
|
required?: boolean | undefined;
|
|
@@ -6515,7 +6531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6515
6531
|
hint?: string | undefined;
|
|
6516
6532
|
messages?: {
|
|
6517
6533
|
text: string;
|
|
6518
|
-
type: "
|
|
6534
|
+
type: "success" | "error" | "info" | "warning";
|
|
6519
6535
|
id?: number | undefined;
|
|
6520
6536
|
}[] | undefined;
|
|
6521
6537
|
required?: boolean | undefined;
|
|
@@ -6540,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6540
6556
|
hint?: string | undefined;
|
|
6541
6557
|
messages?: {
|
|
6542
6558
|
text: string;
|
|
6543
|
-
type: "
|
|
6559
|
+
type: "success" | "error" | "info" | "warning";
|
|
6544
6560
|
id?: number | undefined;
|
|
6545
6561
|
}[] | undefined;
|
|
6546
6562
|
required?: boolean | undefined;
|
|
@@ -6561,7 +6577,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6561
6577
|
hint?: string | undefined;
|
|
6562
6578
|
messages?: {
|
|
6563
6579
|
text: string;
|
|
6564
|
-
type: "
|
|
6580
|
+
type: "success" | "error" | "info" | "warning";
|
|
6565
6581
|
id?: number | undefined;
|
|
6566
6582
|
}[] | undefined;
|
|
6567
6583
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6582
6598
|
hint?: string | undefined;
|
|
6583
6599
|
messages?: {
|
|
6584
6600
|
text: string;
|
|
6585
|
-
type: "
|
|
6601
|
+
type: "success" | "error" | "info" | "warning";
|
|
6586
6602
|
id?: number | undefined;
|
|
6587
6603
|
}[] | undefined;
|
|
6588
6604
|
required?: boolean | undefined;
|
|
@@ -6812,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6812
6828
|
};
|
|
6813
6829
|
};
|
|
6814
6830
|
output: {
|
|
6815
|
-
prompt: "status" | "
|
|
6831
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6816
6832
|
language: string;
|
|
6817
6833
|
}[];
|
|
6818
6834
|
outputFormat: "json";
|
|
@@ -6850,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6850
6866
|
$get: {
|
|
6851
6867
|
input: {
|
|
6852
6868
|
param: {
|
|
6853
|
-
prompt: "status" | "
|
|
6869
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6854
6870
|
language: string;
|
|
6855
6871
|
};
|
|
6856
6872
|
} & {
|
|
@@ -6872,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6872
6888
|
$put: {
|
|
6873
6889
|
input: {
|
|
6874
6890
|
param: {
|
|
6875
|
-
prompt: "status" | "
|
|
6891
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6876
6892
|
language: string;
|
|
6877
6893
|
};
|
|
6878
6894
|
} & {
|
|
@@ -6896,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6896
6912
|
$delete: {
|
|
6897
6913
|
input: {
|
|
6898
6914
|
param: {
|
|
6899
|
-
prompt: "status" | "
|
|
6915
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6900
6916
|
language: string;
|
|
6901
6917
|
};
|
|
6902
6918
|
} & {
|
|
@@ -6988,7 +7004,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6988
7004
|
active?: boolean | undefined;
|
|
6989
7005
|
} | undefined;
|
|
6990
7006
|
signup?: {
|
|
6991
|
-
status?: "
|
|
7007
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
6992
7008
|
verification?: {
|
|
6993
7009
|
active?: boolean | undefined;
|
|
6994
7010
|
} | undefined;
|
|
@@ -7005,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7005
7021
|
active?: boolean | undefined;
|
|
7006
7022
|
} | undefined;
|
|
7007
7023
|
signup?: {
|
|
7008
|
-
status?: "
|
|
7024
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7009
7025
|
} | undefined;
|
|
7010
7026
|
validation?: {
|
|
7011
7027
|
max_length?: number | undefined;
|
|
@@ -7022,7 +7038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7022
7038
|
active?: boolean | undefined;
|
|
7023
7039
|
} | undefined;
|
|
7024
7040
|
signup?: {
|
|
7025
|
-
status?: "
|
|
7041
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7026
7042
|
} | undefined;
|
|
7027
7043
|
} | undefined;
|
|
7028
7044
|
} | undefined;
|
|
@@ -7122,7 +7138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7122
7138
|
active?: boolean | undefined;
|
|
7123
7139
|
} | undefined;
|
|
7124
7140
|
signup?: {
|
|
7125
|
-
status?: "
|
|
7141
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7126
7142
|
verification?: {
|
|
7127
7143
|
active?: boolean | undefined;
|
|
7128
7144
|
} | undefined;
|
|
@@ -7139,7 +7155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7139
7155
|
active?: boolean | undefined;
|
|
7140
7156
|
} | undefined;
|
|
7141
7157
|
signup?: {
|
|
7142
|
-
status?: "
|
|
7158
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7143
7159
|
} | undefined;
|
|
7144
7160
|
validation?: {
|
|
7145
7161
|
max_length?: number | undefined;
|
|
@@ -7156,7 +7172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7156
7172
|
active?: boolean | undefined;
|
|
7157
7173
|
} | undefined;
|
|
7158
7174
|
signup?: {
|
|
7159
|
-
status?: "
|
|
7175
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7160
7176
|
} | undefined;
|
|
7161
7177
|
} | undefined;
|
|
7162
7178
|
} | undefined;
|
|
@@ -7271,7 +7287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7271
7287
|
active?: boolean | undefined;
|
|
7272
7288
|
} | undefined;
|
|
7273
7289
|
signup?: {
|
|
7274
|
-
status?: "
|
|
7290
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7275
7291
|
verification?: {
|
|
7276
7292
|
active?: boolean | undefined;
|
|
7277
7293
|
} | undefined;
|
|
@@ -7288,7 +7304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7288
7304
|
active?: boolean | undefined;
|
|
7289
7305
|
} | undefined;
|
|
7290
7306
|
signup?: {
|
|
7291
|
-
status?: "
|
|
7307
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7292
7308
|
} | undefined;
|
|
7293
7309
|
validation?: {
|
|
7294
7310
|
max_length?: number | undefined;
|
|
@@ -7305,7 +7321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7305
7321
|
active?: boolean | undefined;
|
|
7306
7322
|
} | undefined;
|
|
7307
7323
|
signup?: {
|
|
7308
|
-
status?: "
|
|
7324
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7309
7325
|
} | undefined;
|
|
7310
7326
|
} | undefined;
|
|
7311
7327
|
} | undefined;
|
|
@@ -7450,7 +7466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7450
7466
|
active?: boolean | undefined;
|
|
7451
7467
|
} | undefined;
|
|
7452
7468
|
signup?: {
|
|
7453
|
-
status?: "
|
|
7469
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7454
7470
|
verification?: {
|
|
7455
7471
|
active?: boolean | undefined;
|
|
7456
7472
|
} | undefined;
|
|
@@ -7467,7 +7483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7467
7483
|
active?: boolean | undefined;
|
|
7468
7484
|
} | undefined;
|
|
7469
7485
|
signup?: {
|
|
7470
|
-
status?: "
|
|
7486
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7471
7487
|
} | undefined;
|
|
7472
7488
|
validation?: {
|
|
7473
7489
|
max_length?: number | undefined;
|
|
@@ -7484,7 +7500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7484
7500
|
active?: boolean | undefined;
|
|
7485
7501
|
} | undefined;
|
|
7486
7502
|
signup?: {
|
|
7487
|
-
status?: "
|
|
7503
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7488
7504
|
} | undefined;
|
|
7489
7505
|
} | undefined;
|
|
7490
7506
|
} | undefined;
|
|
@@ -7608,7 +7624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7608
7624
|
active?: boolean | undefined;
|
|
7609
7625
|
} | undefined;
|
|
7610
7626
|
signup?: {
|
|
7611
|
-
status?: "
|
|
7627
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7612
7628
|
verification?: {
|
|
7613
7629
|
active?: boolean | undefined;
|
|
7614
7630
|
} | undefined;
|
|
@@ -7625,7 +7641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7625
7641
|
active?: boolean | undefined;
|
|
7626
7642
|
} | undefined;
|
|
7627
7643
|
signup?: {
|
|
7628
|
-
status?: "
|
|
7644
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7629
7645
|
} | undefined;
|
|
7630
7646
|
validation?: {
|
|
7631
7647
|
max_length?: number | undefined;
|
|
@@ -7642,7 +7658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7642
7658
|
active?: boolean | undefined;
|
|
7643
7659
|
} | undefined;
|
|
7644
7660
|
signup?: {
|
|
7645
|
-
status?: "
|
|
7661
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7646
7662
|
} | undefined;
|
|
7647
7663
|
} | undefined;
|
|
7648
7664
|
} | undefined;
|
|
@@ -7758,7 +7774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7758
7774
|
};
|
|
7759
7775
|
} | {
|
|
7760
7776
|
mode: "inline";
|
|
7761
|
-
status: "
|
|
7777
|
+
status: "success" | "error";
|
|
7762
7778
|
connection_id: string;
|
|
7763
7779
|
connection_name: string;
|
|
7764
7780
|
strategy: string;
|
|
@@ -7794,7 +7810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7794
7810
|
tenant_id: string;
|
|
7795
7811
|
created_at: string;
|
|
7796
7812
|
updated_at: string;
|
|
7797
|
-
deploymentStatus: "
|
|
7813
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7798
7814
|
secrets?: {
|
|
7799
7815
|
[x: string]: string;
|
|
7800
7816
|
} | undefined;
|
|
@@ -7884,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7884
7900
|
tenant_id: string;
|
|
7885
7901
|
created_at: string;
|
|
7886
7902
|
updated_at: string;
|
|
7887
|
-
deploymentStatus: "
|
|
7903
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7888
7904
|
secrets?: {
|
|
7889
7905
|
[x: string]: string;
|
|
7890
7906
|
} | undefined;
|
|
@@ -8397,7 +8413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8397
8413
|
log_type: string;
|
|
8398
8414
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8399
8415
|
actor: {
|
|
8400
|
-
type: "user" | "
|
|
8416
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8401
8417
|
id?: string | undefined;
|
|
8402
8418
|
email?: string | undefined;
|
|
8403
8419
|
org_id?: string | undefined;
|
|
@@ -8705,7 +8721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8705
8721
|
created_at: string;
|
|
8706
8722
|
updated_at: string;
|
|
8707
8723
|
name: string;
|
|
8708
|
-
provider: "auth0" | "
|
|
8724
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8709
8725
|
connection: string;
|
|
8710
8726
|
enabled: boolean;
|
|
8711
8727
|
credentials: {
|
|
@@ -8737,7 +8753,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8737
8753
|
created_at: string;
|
|
8738
8754
|
updated_at: string;
|
|
8739
8755
|
name: string;
|
|
8740
|
-
provider: "auth0" | "
|
|
8756
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8741
8757
|
connection: string;
|
|
8742
8758
|
enabled: boolean;
|
|
8743
8759
|
credentials: {
|
|
@@ -8763,7 +8779,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8763
8779
|
} & {
|
|
8764
8780
|
json: {
|
|
8765
8781
|
name: string;
|
|
8766
|
-
provider: "auth0" | "
|
|
8782
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8767
8783
|
connection: string;
|
|
8768
8784
|
credentials: {
|
|
8769
8785
|
domain: string;
|
|
@@ -8780,7 +8796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8780
8796
|
created_at: string;
|
|
8781
8797
|
updated_at: string;
|
|
8782
8798
|
name: string;
|
|
8783
|
-
provider: "auth0" | "
|
|
8799
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8784
8800
|
connection: string;
|
|
8785
8801
|
enabled: boolean;
|
|
8786
8802
|
credentials: {
|
|
@@ -8811,7 +8827,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8811
8827
|
json: {
|
|
8812
8828
|
id?: string | undefined;
|
|
8813
8829
|
name?: string | undefined;
|
|
8814
|
-
provider?: "auth0" | "
|
|
8830
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8815
8831
|
connection?: string | undefined;
|
|
8816
8832
|
enabled?: boolean | undefined;
|
|
8817
8833
|
credentials?: {
|
|
@@ -8827,7 +8843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8827
8843
|
created_at: string;
|
|
8828
8844
|
updated_at: string;
|
|
8829
8845
|
name: string;
|
|
8830
|
-
provider: "auth0" | "
|
|
8846
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8831
8847
|
connection: string;
|
|
8832
8848
|
enabled: boolean;
|
|
8833
8849
|
credentials: {
|
|
@@ -8875,7 +8891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8875
8891
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8876
8892
|
};
|
|
8877
8893
|
id: string;
|
|
8878
|
-
status: "
|
|
8894
|
+
status: "suspended" | "active" | "paused";
|
|
8879
8895
|
filters?: {
|
|
8880
8896
|
type: string;
|
|
8881
8897
|
name: string;
|
|
@@ -8907,7 +8923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8907
8923
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8908
8924
|
};
|
|
8909
8925
|
id: string;
|
|
8910
|
-
status: "
|
|
8926
|
+
status: "suspended" | "active" | "paused";
|
|
8911
8927
|
filters?: {
|
|
8912
8928
|
type: string;
|
|
8913
8929
|
name: string;
|
|
@@ -8932,7 +8948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8932
8948
|
name: string;
|
|
8933
8949
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8934
8950
|
sink: Record<string, unknown>;
|
|
8935
|
-
status?: "
|
|
8951
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8936
8952
|
filters?: {
|
|
8937
8953
|
type: string;
|
|
8938
8954
|
name: string;
|
|
@@ -8947,7 +8963,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8947
8963
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8948
8964
|
};
|
|
8949
8965
|
id: string;
|
|
8950
|
-
status: "
|
|
8966
|
+
status: "suspended" | "active" | "paused";
|
|
8951
8967
|
filters?: {
|
|
8952
8968
|
type: string;
|
|
8953
8969
|
name: string;
|
|
@@ -8982,7 +8998,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8982
8998
|
}[] | undefined;
|
|
8983
8999
|
isPriority?: boolean | undefined;
|
|
8984
9000
|
id?: string | undefined;
|
|
8985
|
-
status?: "
|
|
9001
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8986
9002
|
created_at?: string | undefined;
|
|
8987
9003
|
updated_at?: string | undefined;
|
|
8988
9004
|
};
|
|
@@ -8994,7 +9010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8994
9010
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8995
9011
|
};
|
|
8996
9012
|
id: string;
|
|
8997
|
-
status: "
|
|
9013
|
+
status: "suspended" | "active" | "paused";
|
|
8998
9014
|
filters?: {
|
|
8999
9015
|
type: string;
|
|
9000
9016
|
name: string;
|
|
@@ -9045,7 +9061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9045
9061
|
};
|
|
9046
9062
|
};
|
|
9047
9063
|
output: {
|
|
9048
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9064
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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";
|
|
9049
9065
|
date: string;
|
|
9050
9066
|
isMobile: boolean;
|
|
9051
9067
|
log_id: string;
|
|
@@ -9084,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9084
9100
|
limit: number;
|
|
9085
9101
|
length: number;
|
|
9086
9102
|
logs: {
|
|
9087
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9103
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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";
|
|
9088
9104
|
date: string;
|
|
9089
9105
|
isMobile: boolean;
|
|
9090
9106
|
log_id: string;
|
|
@@ -9138,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9138
9154
|
};
|
|
9139
9155
|
};
|
|
9140
9156
|
output: {
|
|
9141
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9157
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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";
|
|
9142
9158
|
date: string;
|
|
9143
9159
|
isMobile: boolean;
|
|
9144
9160
|
log_id: string;
|
|
@@ -10214,7 +10230,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10214
10230
|
active?: boolean | undefined;
|
|
10215
10231
|
} | undefined;
|
|
10216
10232
|
signup?: {
|
|
10217
|
-
status?: "
|
|
10233
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10218
10234
|
verification?: {
|
|
10219
10235
|
active?: boolean | undefined;
|
|
10220
10236
|
} | undefined;
|
|
@@ -10231,7 +10247,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10231
10247
|
active?: boolean | undefined;
|
|
10232
10248
|
} | undefined;
|
|
10233
10249
|
signup?: {
|
|
10234
|
-
status?: "
|
|
10250
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10235
10251
|
} | undefined;
|
|
10236
10252
|
validation?: {
|
|
10237
10253
|
max_length?: number | undefined;
|
|
@@ -10248,7 +10264,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10248
10264
|
active?: boolean | undefined;
|
|
10249
10265
|
} | undefined;
|
|
10250
10266
|
signup?: {
|
|
10251
|
-
status?: "
|
|
10267
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10252
10268
|
} | undefined;
|
|
10253
10269
|
} | undefined;
|
|
10254
10270
|
} | undefined;
|
|
@@ -10368,7 +10384,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10368
10384
|
active?: boolean | undefined;
|
|
10369
10385
|
} | undefined;
|
|
10370
10386
|
signup?: {
|
|
10371
|
-
status?: "
|
|
10387
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10372
10388
|
verification?: {
|
|
10373
10389
|
active?: boolean | undefined;
|
|
10374
10390
|
} | undefined;
|
|
@@ -10385,7 +10401,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10385
10401
|
active?: boolean | undefined;
|
|
10386
10402
|
} | undefined;
|
|
10387
10403
|
signup?: {
|
|
10388
|
-
status?: "
|
|
10404
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10389
10405
|
} | undefined;
|
|
10390
10406
|
validation?: {
|
|
10391
10407
|
max_length?: number | undefined;
|
|
@@ -10402,7 +10418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10402
10418
|
active?: boolean | undefined;
|
|
10403
10419
|
} | undefined;
|
|
10404
10420
|
signup?: {
|
|
10405
|
-
status?: "
|
|
10421
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10406
10422
|
} | undefined;
|
|
10407
10423
|
} | undefined;
|
|
10408
10424
|
} | undefined;
|
|
@@ -11356,7 +11372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11356
11372
|
};
|
|
11357
11373
|
};
|
|
11358
11374
|
output: {
|
|
11359
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
11375
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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";
|
|
11360
11376
|
date: string;
|
|
11361
11377
|
isMobile: boolean;
|
|
11362
11378
|
log_id: string;
|
|
@@ -11395,7 +11411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11395
11411
|
limit: number;
|
|
11396
11412
|
length: number;
|
|
11397
11413
|
logs: {
|
|
11398
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
11414
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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";
|
|
11399
11415
|
date: string;
|
|
11400
11416
|
isMobile: boolean;
|
|
11401
11417
|
log_id: string;
|
|
@@ -11710,7 +11726,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11710
11726
|
};
|
|
11711
11727
|
} & {
|
|
11712
11728
|
json: {
|
|
11713
|
-
template: "
|
|
11729
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11714
11730
|
body: string;
|
|
11715
11731
|
from: string;
|
|
11716
11732
|
subject: string;
|
|
@@ -11731,7 +11747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11731
11747
|
};
|
|
11732
11748
|
} & {
|
|
11733
11749
|
json: {
|
|
11734
|
-
template: "
|
|
11750
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11735
11751
|
body: string;
|
|
11736
11752
|
from: string;
|
|
11737
11753
|
subject: string;
|
|
@@ -11743,7 +11759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11743
11759
|
};
|
|
11744
11760
|
};
|
|
11745
11761
|
output: {
|
|
11746
|
-
template: "
|
|
11762
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11747
11763
|
body: string;
|
|
11748
11764
|
from: string;
|
|
11749
11765
|
subject: string;
|
|
@@ -11766,7 +11782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11766
11782
|
};
|
|
11767
11783
|
};
|
|
11768
11784
|
output: {
|
|
11769
|
-
name: "
|
|
11785
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11770
11786
|
body: string;
|
|
11771
11787
|
subject: string;
|
|
11772
11788
|
}[];
|
|
@@ -11779,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11779
11795
|
$get: {
|
|
11780
11796
|
input: {
|
|
11781
11797
|
param: {
|
|
11782
|
-
templateName: "
|
|
11798
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11783
11799
|
};
|
|
11784
11800
|
} & {
|
|
11785
11801
|
header: {
|
|
@@ -11792,7 +11808,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11792
11808
|
} | {
|
|
11793
11809
|
input: {
|
|
11794
11810
|
param: {
|
|
11795
|
-
templateName: "
|
|
11811
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11796
11812
|
};
|
|
11797
11813
|
} & {
|
|
11798
11814
|
header: {
|
|
@@ -11800,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11800
11816
|
};
|
|
11801
11817
|
};
|
|
11802
11818
|
output: {
|
|
11803
|
-
template: "
|
|
11819
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11804
11820
|
body: string;
|
|
11805
11821
|
from: string;
|
|
11806
11822
|
subject: string;
|
|
@@ -11819,7 +11835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11819
11835
|
$put: {
|
|
11820
11836
|
input: {
|
|
11821
11837
|
param: {
|
|
11822
|
-
templateName: "
|
|
11838
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11823
11839
|
};
|
|
11824
11840
|
} & {
|
|
11825
11841
|
header: {
|
|
@@ -11827,7 +11843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11827
11843
|
};
|
|
11828
11844
|
} & {
|
|
11829
11845
|
json: {
|
|
11830
|
-
template: "
|
|
11846
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11831
11847
|
body: string;
|
|
11832
11848
|
subject: string;
|
|
11833
11849
|
syntax?: "liquid" | undefined;
|
|
@@ -11839,7 +11855,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11839
11855
|
};
|
|
11840
11856
|
};
|
|
11841
11857
|
output: {
|
|
11842
|
-
template: "
|
|
11858
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11843
11859
|
body: string;
|
|
11844
11860
|
from: string;
|
|
11845
11861
|
subject: string;
|
|
@@ -11858,7 +11874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11858
11874
|
$patch: {
|
|
11859
11875
|
input: {
|
|
11860
11876
|
param: {
|
|
11861
|
-
templateName: "
|
|
11877
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11862
11878
|
};
|
|
11863
11879
|
} & {
|
|
11864
11880
|
header: {
|
|
@@ -11866,7 +11882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11866
11882
|
};
|
|
11867
11883
|
} & {
|
|
11868
11884
|
json: {
|
|
11869
|
-
template?: "
|
|
11885
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11870
11886
|
body?: string | undefined;
|
|
11871
11887
|
from?: string | undefined;
|
|
11872
11888
|
subject?: string | undefined;
|
|
@@ -11883,7 +11899,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11883
11899
|
} | {
|
|
11884
11900
|
input: {
|
|
11885
11901
|
param: {
|
|
11886
|
-
templateName: "
|
|
11902
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11887
11903
|
};
|
|
11888
11904
|
} & {
|
|
11889
11905
|
header: {
|
|
@@ -11891,7 +11907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11891
11907
|
};
|
|
11892
11908
|
} & {
|
|
11893
11909
|
json: {
|
|
11894
|
-
template?: "
|
|
11910
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11895
11911
|
body?: string | undefined;
|
|
11896
11912
|
from?: string | undefined;
|
|
11897
11913
|
subject?: string | undefined;
|
|
@@ -11903,7 +11919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11903
11919
|
};
|
|
11904
11920
|
};
|
|
11905
11921
|
output: {
|
|
11906
|
-
template: "
|
|
11922
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11907
11923
|
body: string;
|
|
11908
11924
|
from: string;
|
|
11909
11925
|
subject: string;
|
|
@@ -11922,7 +11938,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11922
11938
|
$delete: {
|
|
11923
11939
|
input: {
|
|
11924
11940
|
param: {
|
|
11925
|
-
templateName: "
|
|
11941
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11926
11942
|
};
|
|
11927
11943
|
} & {
|
|
11928
11944
|
header: {
|
|
@@ -11935,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11935
11951
|
} | {
|
|
11936
11952
|
input: {
|
|
11937
11953
|
param: {
|
|
11938
|
-
templateName: "
|
|
11954
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11939
11955
|
};
|
|
11940
11956
|
} & {
|
|
11941
11957
|
header: {
|
|
@@ -11952,7 +11968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11952
11968
|
$post: {
|
|
11953
11969
|
input: {
|
|
11954
11970
|
param: {
|
|
11955
|
-
templateName: "
|
|
11971
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11956
11972
|
};
|
|
11957
11973
|
} & {
|
|
11958
11974
|
header: {
|
|
@@ -12235,7 +12251,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12235
12251
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12236
12252
|
custom_domain_id: string;
|
|
12237
12253
|
primary: boolean;
|
|
12238
|
-
status: "
|
|
12254
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12239
12255
|
verification_method?: "txt" | undefined;
|
|
12240
12256
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12241
12257
|
domain_metadata?: {
|
|
@@ -12276,7 +12292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12276
12292
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12277
12293
|
custom_domain_id: string;
|
|
12278
12294
|
primary: boolean;
|
|
12279
|
-
status: "
|
|
12295
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12280
12296
|
verification_method?: "txt" | undefined;
|
|
12281
12297
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12282
12298
|
domain_metadata?: {
|
|
@@ -12340,7 +12356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12340
12356
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12341
12357
|
custom_domain_id: string;
|
|
12342
12358
|
primary: boolean;
|
|
12343
|
-
status: "
|
|
12359
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12344
12360
|
verification_method?: "txt" | undefined;
|
|
12345
12361
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12346
12362
|
domain_metadata?: {
|
|
@@ -12387,7 +12403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12387
12403
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12388
12404
|
custom_domain_id: string;
|
|
12389
12405
|
primary: boolean;
|
|
12390
|
-
status: "
|
|
12406
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12391
12407
|
verification_method?: "txt" | undefined;
|
|
12392
12408
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12393
12409
|
domain_metadata?: {
|
|
@@ -12433,7 +12449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12433
12449
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12434
12450
|
custom_domain_id: string;
|
|
12435
12451
|
primary: boolean;
|
|
12436
|
-
status: "
|
|
12452
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12437
12453
|
verification_method?: "txt" | undefined;
|
|
12438
12454
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12439
12455
|
domain_metadata?: {
|
|
@@ -12474,7 +12490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12474
12490
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12475
12491
|
custom_domain_id: string;
|
|
12476
12492
|
primary: boolean;
|
|
12477
|
-
status: "
|
|
12493
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12478
12494
|
verification_method?: "txt" | undefined;
|
|
12479
12495
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12480
12496
|
domain_metadata?: {
|
|
@@ -12573,12 +12589,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12573
12589
|
background_color: string;
|
|
12574
12590
|
background_image_url: string;
|
|
12575
12591
|
page_layout: "center" | "left" | "right";
|
|
12576
|
-
logo_placement?: "
|
|
12592
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12577
12593
|
};
|
|
12578
12594
|
widget: {
|
|
12579
12595
|
header_text_alignment: "center" | "left" | "right";
|
|
12580
12596
|
logo_height: number;
|
|
12581
|
-
logo_position: "
|
|
12597
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12582
12598
|
logo_url: string;
|
|
12583
12599
|
social_buttons_layout: "bottom" | "top";
|
|
12584
12600
|
};
|
|
@@ -12663,12 +12679,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12663
12679
|
background_color: string;
|
|
12664
12680
|
background_image_url: string;
|
|
12665
12681
|
page_layout: "center" | "left" | "right";
|
|
12666
|
-
logo_placement?: "
|
|
12682
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12667
12683
|
};
|
|
12668
12684
|
widget: {
|
|
12669
12685
|
header_text_alignment: "center" | "left" | "right";
|
|
12670
12686
|
logo_height: number;
|
|
12671
|
-
logo_position: "
|
|
12687
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12672
12688
|
logo_url: string;
|
|
12673
12689
|
social_buttons_layout: "bottom" | "top";
|
|
12674
12690
|
};
|
|
@@ -12742,12 +12758,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12742
12758
|
background_color: string;
|
|
12743
12759
|
background_image_url: string;
|
|
12744
12760
|
page_layout: "center" | "left" | "right";
|
|
12745
|
-
logo_placement?: "
|
|
12761
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12746
12762
|
};
|
|
12747
12763
|
widget: {
|
|
12748
12764
|
header_text_alignment: "center" | "left" | "right";
|
|
12749
12765
|
logo_height: number;
|
|
12750
|
-
logo_position: "
|
|
12766
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12751
12767
|
logo_url: string;
|
|
12752
12768
|
social_buttons_layout: "bottom" | "top";
|
|
12753
12769
|
};
|
|
@@ -12904,7 +12920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12904
12920
|
} & {
|
|
12905
12921
|
json: {
|
|
12906
12922
|
body?: string | undefined;
|
|
12907
|
-
screen?: "password" | "
|
|
12923
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
12908
12924
|
branding?: {
|
|
12909
12925
|
colors?: {
|
|
12910
12926
|
primary: string;
|
|
@@ -12990,12 +13006,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12990
13006
|
background_color: string;
|
|
12991
13007
|
background_image_url: string;
|
|
12992
13008
|
page_layout: "center" | "left" | "right";
|
|
12993
|
-
logo_placement?: "
|
|
13009
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12994
13010
|
} | undefined;
|
|
12995
13011
|
widget?: {
|
|
12996
13012
|
header_text_alignment: "center" | "left" | "right";
|
|
12997
13013
|
logo_height: number;
|
|
12998
|
-
logo_position: "
|
|
13014
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12999
13015
|
logo_url: string;
|
|
13000
13016
|
social_buttons_layout: "bottom" | "top";
|
|
13001
13017
|
} | undefined;
|
|
@@ -13073,7 +13089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13073
13089
|
json: {
|
|
13074
13090
|
bindings: {
|
|
13075
13091
|
ref: {
|
|
13076
|
-
type?: "
|
|
13092
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13077
13093
|
value?: string | undefined;
|
|
13078
13094
|
id?: string | undefined;
|
|
13079
13095
|
name?: string | undefined;
|
|
@@ -13148,7 +13164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13148
13164
|
output: {
|
|
13149
13165
|
id: string;
|
|
13150
13166
|
trigger_id: string;
|
|
13151
|
-
status: "
|
|
13167
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13152
13168
|
results: {
|
|
13153
13169
|
action_name: string;
|
|
13154
13170
|
error: {
|