authhero 8.19.0 → 8.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +317 -250
- package/dist/authhero.mjs +14752 -16956
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/hook-events.d.ts +35 -15
- package/dist/types/hooks/link-users.d.ts +9 -1
- package/dist/types/hooks/user-registration.d.ts +8 -5
- package/dist/types/index.d.ts +317 -250
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +3 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +24 -8
- package/dist/types/routes/management-api/clients.d.ts +14 -13
- package/dist/types/routes/management-api/connections.d.ts +17 -16
- package/dist/types/routes/management-api/flows.d.ts +1 -0
- package/dist/types/routes/management-api/forms.d.ts +127 -126
- package/dist/types/routes/management-api/grants.d.ts +1 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +25 -24
- package/dist/types/routes/management-api/index.d.ts +288 -221
- package/dist/types/routes/management-api/logs.d.ts +4 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +36 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
- package/dist/types/routes/management-api/roles.d.ts +8 -6
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +7 -2
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +6 -6
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -554,6 +554,39 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
554
554
|
} | undefined;
|
|
555
555
|
}[];
|
|
556
556
|
total?: number | undefined;
|
|
557
|
+
next?: string | undefined;
|
|
558
|
+
} | {
|
|
559
|
+
organizations: {
|
|
560
|
+
created_at: string;
|
|
561
|
+
updated_at: string;
|
|
562
|
+
id: string;
|
|
563
|
+
name: string;
|
|
564
|
+
display_name?: string | undefined;
|
|
565
|
+
branding?: {
|
|
566
|
+
logo_url?: string | undefined;
|
|
567
|
+
colors?: {
|
|
568
|
+
primary?: string | undefined;
|
|
569
|
+
page_background?: string | undefined;
|
|
570
|
+
} | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
metadata?: {
|
|
573
|
+
[x: string]: any;
|
|
574
|
+
} | undefined;
|
|
575
|
+
enabled_connections?: {
|
|
576
|
+
connection_id: string;
|
|
577
|
+
assign_membership_on_login: boolean;
|
|
578
|
+
show_as_button: boolean;
|
|
579
|
+
is_signup_enabled: boolean;
|
|
580
|
+
}[] | undefined;
|
|
581
|
+
token_quota?: {
|
|
582
|
+
client_credentials?: {
|
|
583
|
+
enforce: boolean;
|
|
584
|
+
per_day: number;
|
|
585
|
+
per_hour: number;
|
|
586
|
+
} | undefined;
|
|
587
|
+
} | undefined;
|
|
588
|
+
}[];
|
|
589
|
+
next?: string | undefined;
|
|
557
590
|
};
|
|
558
591
|
outputFormat: "json";
|
|
559
592
|
status: 200;
|
|
@@ -1169,11 +1202,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1169
1202
|
invitee: {
|
|
1170
1203
|
email?: string | undefined;
|
|
1171
1204
|
};
|
|
1172
|
-
roles?: string[] | undefined;
|
|
1173
1205
|
id?: string | undefined;
|
|
1206
|
+
connection_id?: string | undefined;
|
|
1207
|
+
roles?: string[] | undefined;
|
|
1174
1208
|
app_metadata?: Record<string, any> | undefined;
|
|
1175
1209
|
user_metadata?: Record<string, any> | undefined;
|
|
1176
|
-
connection_id?: string | undefined;
|
|
1177
1210
|
ttl_sec?: number | undefined;
|
|
1178
1211
|
send_invitation_email?: boolean | undefined;
|
|
1179
1212
|
};
|
|
@@ -1274,6 +1307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1274
1307
|
updated_at?: string | undefined;
|
|
1275
1308
|
}[];
|
|
1276
1309
|
total?: number | undefined;
|
|
1310
|
+
next?: string | undefined;
|
|
1277
1311
|
};
|
|
1278
1312
|
outputFormat: "json";
|
|
1279
1313
|
status: 200;
|
|
@@ -1486,6 +1520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1486
1520
|
updated_at?: string | undefined;
|
|
1487
1521
|
}[];
|
|
1488
1522
|
total?: number | undefined;
|
|
1523
|
+
next?: string | undefined;
|
|
1489
1524
|
};
|
|
1490
1525
|
outputFormat: "json";
|
|
1491
1526
|
status: 200;
|
|
@@ -1757,6 +1792,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1757
1792
|
updated_at?: string | undefined;
|
|
1758
1793
|
}[];
|
|
1759
1794
|
total?: number | undefined;
|
|
1795
|
+
next?: string | undefined;
|
|
1760
1796
|
};
|
|
1761
1797
|
outputFormat: "json";
|
|
1762
1798
|
status: 200;
|
|
@@ -1912,6 +1948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1912
1948
|
created_at: string;
|
|
1913
1949
|
}[];
|
|
1914
1950
|
total?: number | undefined;
|
|
1951
|
+
next?: string | undefined;
|
|
1915
1952
|
};
|
|
1916
1953
|
outputFormat: "json";
|
|
1917
1954
|
status: 200;
|
|
@@ -2089,6 +2126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2089
2126
|
id: string;
|
|
2090
2127
|
}[];
|
|
2091
2128
|
total?: number | undefined;
|
|
2129
|
+
next?: string | undefined;
|
|
2092
2130
|
};
|
|
2093
2131
|
outputFormat: "json";
|
|
2094
2132
|
status: 200;
|
|
@@ -2600,7 +2638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2600
2638
|
hint?: string | undefined;
|
|
2601
2639
|
messages?: {
|
|
2602
2640
|
text: string;
|
|
2603
|
-
type: "
|
|
2641
|
+
type: "error" | "success" | "info" | "warning";
|
|
2604
2642
|
id?: number | undefined;
|
|
2605
2643
|
}[] | undefined;
|
|
2606
2644
|
required?: boolean | undefined;
|
|
@@ -2618,7 +2656,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2618
2656
|
hint?: string | undefined;
|
|
2619
2657
|
messages?: {
|
|
2620
2658
|
text: string;
|
|
2621
|
-
type: "
|
|
2659
|
+
type: "error" | "success" | "info" | "warning";
|
|
2622
2660
|
id?: number | undefined;
|
|
2623
2661
|
}[] | undefined;
|
|
2624
2662
|
required?: boolean | undefined;
|
|
@@ -2642,7 +2680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2642
2680
|
hint?: string | undefined;
|
|
2643
2681
|
messages?: {
|
|
2644
2682
|
text: string;
|
|
2645
|
-
type: "
|
|
2683
|
+
type: "error" | "success" | "info" | "warning";
|
|
2646
2684
|
id?: number | undefined;
|
|
2647
2685
|
}[] | undefined;
|
|
2648
2686
|
required?: boolean | undefined;
|
|
@@ -2666,7 +2704,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2666
2704
|
hint?: string | undefined;
|
|
2667
2705
|
messages?: {
|
|
2668
2706
|
text: string;
|
|
2669
|
-
type: "
|
|
2707
|
+
type: "error" | "success" | "info" | "warning";
|
|
2670
2708
|
id?: number | undefined;
|
|
2671
2709
|
}[] | undefined;
|
|
2672
2710
|
required?: boolean | undefined;
|
|
@@ -2690,7 +2728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2690
2728
|
hint?: string | undefined;
|
|
2691
2729
|
messages?: {
|
|
2692
2730
|
text: string;
|
|
2693
|
-
type: "
|
|
2731
|
+
type: "error" | "success" | "info" | "warning";
|
|
2694
2732
|
id?: number | undefined;
|
|
2695
2733
|
}[] | undefined;
|
|
2696
2734
|
required?: boolean | undefined;
|
|
@@ -2719,7 +2757,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2719
2757
|
hint?: string | undefined;
|
|
2720
2758
|
messages?: {
|
|
2721
2759
|
text: string;
|
|
2722
|
-
type: "
|
|
2760
|
+
type: "error" | "success" | "info" | "warning";
|
|
2723
2761
|
id?: number | undefined;
|
|
2724
2762
|
}[] | undefined;
|
|
2725
2763
|
required?: boolean | undefined;
|
|
@@ -2734,7 +2772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2734
2772
|
hint?: string | undefined;
|
|
2735
2773
|
messages?: {
|
|
2736
2774
|
text: string;
|
|
2737
|
-
type: "
|
|
2775
|
+
type: "error" | "success" | "info" | "warning";
|
|
2738
2776
|
id?: number | undefined;
|
|
2739
2777
|
}[] | undefined;
|
|
2740
2778
|
required?: boolean | undefined;
|
|
@@ -2755,7 +2793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2755
2793
|
hint?: string | undefined;
|
|
2756
2794
|
messages?: {
|
|
2757
2795
|
text: string;
|
|
2758
|
-
type: "
|
|
2796
|
+
type: "error" | "success" | "info" | "warning";
|
|
2759
2797
|
id?: number | undefined;
|
|
2760
2798
|
}[] | undefined;
|
|
2761
2799
|
required?: boolean | undefined;
|
|
@@ -2780,7 +2818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2780
2818
|
hint?: string | undefined;
|
|
2781
2819
|
messages?: {
|
|
2782
2820
|
text: string;
|
|
2783
|
-
type: "
|
|
2821
|
+
type: "error" | "success" | "info" | "warning";
|
|
2784
2822
|
id?: number | undefined;
|
|
2785
2823
|
}[] | undefined;
|
|
2786
2824
|
required?: boolean | undefined;
|
|
@@ -2799,7 +2837,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2799
2837
|
hint?: string | undefined;
|
|
2800
2838
|
messages?: {
|
|
2801
2839
|
text: string;
|
|
2802
|
-
type: "
|
|
2840
|
+
type: "error" | "success" | "info" | "warning";
|
|
2803
2841
|
id?: number | undefined;
|
|
2804
2842
|
}[] | undefined;
|
|
2805
2843
|
required?: boolean | undefined;
|
|
@@ -2819,7 +2857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2819
2857
|
hint?: string | undefined;
|
|
2820
2858
|
messages?: {
|
|
2821
2859
|
text: string;
|
|
2822
|
-
type: "
|
|
2860
|
+
type: "error" | "success" | "info" | "warning";
|
|
2823
2861
|
id?: number | undefined;
|
|
2824
2862
|
}[] | undefined;
|
|
2825
2863
|
required?: boolean | undefined;
|
|
@@ -2838,7 +2876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2838
2876
|
hint?: string | undefined;
|
|
2839
2877
|
messages?: {
|
|
2840
2878
|
text: string;
|
|
2841
|
-
type: "
|
|
2879
|
+
type: "error" | "success" | "info" | "warning";
|
|
2842
2880
|
id?: number | undefined;
|
|
2843
2881
|
}[] | undefined;
|
|
2844
2882
|
required?: boolean | undefined;
|
|
@@ -2860,7 +2898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2860
2898
|
hint?: string | undefined;
|
|
2861
2899
|
messages?: {
|
|
2862
2900
|
text: string;
|
|
2863
|
-
type: "
|
|
2901
|
+
type: "error" | "success" | "info" | "warning";
|
|
2864
2902
|
id?: number | undefined;
|
|
2865
2903
|
}[] | undefined;
|
|
2866
2904
|
required?: boolean | undefined;
|
|
@@ -2882,7 +2920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2882
2920
|
hint?: string | undefined;
|
|
2883
2921
|
messages?: {
|
|
2884
2922
|
text: string;
|
|
2885
|
-
type: "
|
|
2923
|
+
type: "error" | "success" | "info" | "warning";
|
|
2886
2924
|
id?: number | undefined;
|
|
2887
2925
|
}[] | undefined;
|
|
2888
2926
|
required?: boolean | undefined;
|
|
@@ -2901,7 +2939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2901
2939
|
hint?: string | undefined;
|
|
2902
2940
|
messages?: {
|
|
2903
2941
|
text: string;
|
|
2904
|
-
type: "
|
|
2942
|
+
type: "error" | "success" | "info" | "warning";
|
|
2905
2943
|
id?: number | undefined;
|
|
2906
2944
|
}[] | undefined;
|
|
2907
2945
|
required?: boolean | undefined;
|
|
@@ -2926,7 +2964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2926
2964
|
hint?: string | undefined;
|
|
2927
2965
|
messages?: {
|
|
2928
2966
|
text: string;
|
|
2929
|
-
type: "
|
|
2967
|
+
type: "error" | "success" | "info" | "warning";
|
|
2930
2968
|
id?: number | undefined;
|
|
2931
2969
|
}[] | undefined;
|
|
2932
2970
|
required?: boolean | undefined;
|
|
@@ -2947,7 +2985,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2947
2985
|
hint?: string | undefined;
|
|
2948
2986
|
messages?: {
|
|
2949
2987
|
text: string;
|
|
2950
|
-
type: "
|
|
2988
|
+
type: "error" | "success" | "info" | "warning";
|
|
2951
2989
|
id?: number | undefined;
|
|
2952
2990
|
}[] | undefined;
|
|
2953
2991
|
required?: boolean | undefined;
|
|
@@ -2968,7 +3006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2968
3006
|
hint?: string | undefined;
|
|
2969
3007
|
messages?: {
|
|
2970
3008
|
text: string;
|
|
2971
|
-
type: "
|
|
3009
|
+
type: "error" | "success" | "info" | "warning";
|
|
2972
3010
|
id?: number | undefined;
|
|
2973
3011
|
}[] | undefined;
|
|
2974
3012
|
required?: boolean | undefined;
|
|
@@ -3201,7 +3239,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3201
3239
|
hint?: string | undefined;
|
|
3202
3240
|
messages?: {
|
|
3203
3241
|
text: string;
|
|
3204
|
-
type: "
|
|
3242
|
+
type: "error" | "success" | "info" | "warning";
|
|
3205
3243
|
id?: number | undefined;
|
|
3206
3244
|
}[] | undefined;
|
|
3207
3245
|
required?: boolean | undefined;
|
|
@@ -3219,7 +3257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3219
3257
|
hint?: string | undefined;
|
|
3220
3258
|
messages?: {
|
|
3221
3259
|
text: string;
|
|
3222
|
-
type: "
|
|
3260
|
+
type: "error" | "success" | "info" | "warning";
|
|
3223
3261
|
id?: number | undefined;
|
|
3224
3262
|
}[] | undefined;
|
|
3225
3263
|
required?: boolean | undefined;
|
|
@@ -3243,7 +3281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3243
3281
|
hint?: string | undefined;
|
|
3244
3282
|
messages?: {
|
|
3245
3283
|
text: string;
|
|
3246
|
-
type: "
|
|
3284
|
+
type: "error" | "success" | "info" | "warning";
|
|
3247
3285
|
id?: number | undefined;
|
|
3248
3286
|
}[] | undefined;
|
|
3249
3287
|
required?: boolean | undefined;
|
|
@@ -3267,7 +3305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3267
3305
|
hint?: string | undefined;
|
|
3268
3306
|
messages?: {
|
|
3269
3307
|
text: string;
|
|
3270
|
-
type: "
|
|
3308
|
+
type: "error" | "success" | "info" | "warning";
|
|
3271
3309
|
id?: number | undefined;
|
|
3272
3310
|
}[] | undefined;
|
|
3273
3311
|
required?: boolean | undefined;
|
|
@@ -3291,7 +3329,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3291
3329
|
hint?: string | undefined;
|
|
3292
3330
|
messages?: {
|
|
3293
3331
|
text: string;
|
|
3294
|
-
type: "
|
|
3332
|
+
type: "error" | "success" | "info" | "warning";
|
|
3295
3333
|
id?: number | undefined;
|
|
3296
3334
|
}[] | undefined;
|
|
3297
3335
|
required?: boolean | undefined;
|
|
@@ -3320,7 +3358,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3320
3358
|
hint?: string | undefined;
|
|
3321
3359
|
messages?: {
|
|
3322
3360
|
text: string;
|
|
3323
|
-
type: "
|
|
3361
|
+
type: "error" | "success" | "info" | "warning";
|
|
3324
3362
|
id?: number | undefined;
|
|
3325
3363
|
}[] | undefined;
|
|
3326
3364
|
required?: boolean | undefined;
|
|
@@ -3335,7 +3373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3335
3373
|
hint?: string | undefined;
|
|
3336
3374
|
messages?: {
|
|
3337
3375
|
text: string;
|
|
3338
|
-
type: "
|
|
3376
|
+
type: "error" | "success" | "info" | "warning";
|
|
3339
3377
|
id?: number | undefined;
|
|
3340
3378
|
}[] | undefined;
|
|
3341
3379
|
required?: boolean | undefined;
|
|
@@ -3356,7 +3394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3356
3394
|
hint?: string | undefined;
|
|
3357
3395
|
messages?: {
|
|
3358
3396
|
text: string;
|
|
3359
|
-
type: "
|
|
3397
|
+
type: "error" | "success" | "info" | "warning";
|
|
3360
3398
|
id?: number | undefined;
|
|
3361
3399
|
}[] | undefined;
|
|
3362
3400
|
required?: boolean | undefined;
|
|
@@ -3381,7 +3419,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3381
3419
|
hint?: string | undefined;
|
|
3382
3420
|
messages?: {
|
|
3383
3421
|
text: string;
|
|
3384
|
-
type: "
|
|
3422
|
+
type: "error" | "success" | "info" | "warning";
|
|
3385
3423
|
id?: number | undefined;
|
|
3386
3424
|
}[] | undefined;
|
|
3387
3425
|
required?: boolean | undefined;
|
|
@@ -3400,7 +3438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3400
3438
|
hint?: string | undefined;
|
|
3401
3439
|
messages?: {
|
|
3402
3440
|
text: string;
|
|
3403
|
-
type: "
|
|
3441
|
+
type: "error" | "success" | "info" | "warning";
|
|
3404
3442
|
id?: number | undefined;
|
|
3405
3443
|
}[] | undefined;
|
|
3406
3444
|
required?: boolean | undefined;
|
|
@@ -3420,7 +3458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3420
3458
|
hint?: string | undefined;
|
|
3421
3459
|
messages?: {
|
|
3422
3460
|
text: string;
|
|
3423
|
-
type: "
|
|
3461
|
+
type: "error" | "success" | "info" | "warning";
|
|
3424
3462
|
id?: number | undefined;
|
|
3425
3463
|
}[] | undefined;
|
|
3426
3464
|
required?: boolean | undefined;
|
|
@@ -3439,7 +3477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3439
3477
|
hint?: string | undefined;
|
|
3440
3478
|
messages?: {
|
|
3441
3479
|
text: string;
|
|
3442
|
-
type: "
|
|
3480
|
+
type: "error" | "success" | "info" | "warning";
|
|
3443
3481
|
id?: number | undefined;
|
|
3444
3482
|
}[] | undefined;
|
|
3445
3483
|
required?: boolean | undefined;
|
|
@@ -3461,7 +3499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3461
3499
|
hint?: string | undefined;
|
|
3462
3500
|
messages?: {
|
|
3463
3501
|
text: string;
|
|
3464
|
-
type: "
|
|
3502
|
+
type: "error" | "success" | "info" | "warning";
|
|
3465
3503
|
id?: number | undefined;
|
|
3466
3504
|
}[] | undefined;
|
|
3467
3505
|
required?: boolean | undefined;
|
|
@@ -3483,7 +3521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3483
3521
|
hint?: string | undefined;
|
|
3484
3522
|
messages?: {
|
|
3485
3523
|
text: string;
|
|
3486
|
-
type: "
|
|
3524
|
+
type: "error" | "success" | "info" | "warning";
|
|
3487
3525
|
id?: number | undefined;
|
|
3488
3526
|
}[] | undefined;
|
|
3489
3527
|
required?: boolean | undefined;
|
|
@@ -3502,7 +3540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3502
3540
|
hint?: string | undefined;
|
|
3503
3541
|
messages?: {
|
|
3504
3542
|
text: string;
|
|
3505
|
-
type: "
|
|
3543
|
+
type: "error" | "success" | "info" | "warning";
|
|
3506
3544
|
id?: number | undefined;
|
|
3507
3545
|
}[] | undefined;
|
|
3508
3546
|
required?: boolean | undefined;
|
|
@@ -3527,7 +3565,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3527
3565
|
hint?: string | undefined;
|
|
3528
3566
|
messages?: {
|
|
3529
3567
|
text: string;
|
|
3530
|
-
type: "
|
|
3568
|
+
type: "error" | "success" | "info" | "warning";
|
|
3531
3569
|
id?: number | undefined;
|
|
3532
3570
|
}[] | undefined;
|
|
3533
3571
|
required?: boolean | undefined;
|
|
@@ -3548,7 +3586,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3548
3586
|
hint?: string | undefined;
|
|
3549
3587
|
messages?: {
|
|
3550
3588
|
text: string;
|
|
3551
|
-
type: "
|
|
3589
|
+
type: "error" | "success" | "info" | "warning";
|
|
3552
3590
|
id?: number | undefined;
|
|
3553
3591
|
}[] | undefined;
|
|
3554
3592
|
required?: boolean | undefined;
|
|
@@ -3569,7 +3607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3569
3607
|
hint?: string | undefined;
|
|
3570
3608
|
messages?: {
|
|
3571
3609
|
text: string;
|
|
3572
|
-
type: "
|
|
3610
|
+
type: "error" | "success" | "info" | "warning";
|
|
3573
3611
|
id?: number | undefined;
|
|
3574
3612
|
}[] | undefined;
|
|
3575
3613
|
required?: boolean | undefined;
|
|
@@ -3617,6 +3655,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3617
3655
|
} | undefined;
|
|
3618
3656
|
}[];
|
|
3619
3657
|
total?: number | undefined;
|
|
3658
|
+
next?: string | undefined;
|
|
3620
3659
|
};
|
|
3621
3660
|
outputFormat: "json";
|
|
3622
3661
|
status: 200;
|
|
@@ -3817,7 +3856,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3817
3856
|
hint?: string | undefined;
|
|
3818
3857
|
messages?: {
|
|
3819
3858
|
text: string;
|
|
3820
|
-
type: "
|
|
3859
|
+
type: "error" | "success" | "info" | "warning";
|
|
3821
3860
|
id?: number | undefined;
|
|
3822
3861
|
}[] | undefined;
|
|
3823
3862
|
required?: boolean | undefined;
|
|
@@ -3835,7 +3874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3835
3874
|
hint?: string | undefined;
|
|
3836
3875
|
messages?: {
|
|
3837
3876
|
text: string;
|
|
3838
|
-
type: "
|
|
3877
|
+
type: "error" | "success" | "info" | "warning";
|
|
3839
3878
|
id?: number | undefined;
|
|
3840
3879
|
}[] | undefined;
|
|
3841
3880
|
required?: boolean | undefined;
|
|
@@ -3859,7 +3898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3859
3898
|
hint?: string | undefined;
|
|
3860
3899
|
messages?: {
|
|
3861
3900
|
text: string;
|
|
3862
|
-
type: "
|
|
3901
|
+
type: "error" | "success" | "info" | "warning";
|
|
3863
3902
|
id?: number | undefined;
|
|
3864
3903
|
}[] | undefined;
|
|
3865
3904
|
required?: boolean | undefined;
|
|
@@ -3883,7 +3922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3883
3922
|
hint?: string | undefined;
|
|
3884
3923
|
messages?: {
|
|
3885
3924
|
text: string;
|
|
3886
|
-
type: "
|
|
3925
|
+
type: "error" | "success" | "info" | "warning";
|
|
3887
3926
|
id?: number | undefined;
|
|
3888
3927
|
}[] | undefined;
|
|
3889
3928
|
required?: boolean | undefined;
|
|
@@ -3907,7 +3946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3907
3946
|
hint?: string | undefined;
|
|
3908
3947
|
messages?: {
|
|
3909
3948
|
text: string;
|
|
3910
|
-
type: "
|
|
3949
|
+
type: "error" | "success" | "info" | "warning";
|
|
3911
3950
|
id?: number | undefined;
|
|
3912
3951
|
}[] | undefined;
|
|
3913
3952
|
required?: boolean | undefined;
|
|
@@ -3936,7 +3975,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3936
3975
|
hint?: string | undefined;
|
|
3937
3976
|
messages?: {
|
|
3938
3977
|
text: string;
|
|
3939
|
-
type: "
|
|
3978
|
+
type: "error" | "success" | "info" | "warning";
|
|
3940
3979
|
id?: number | undefined;
|
|
3941
3980
|
}[] | undefined;
|
|
3942
3981
|
required?: boolean | undefined;
|
|
@@ -3951,7 +3990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3951
3990
|
hint?: string | undefined;
|
|
3952
3991
|
messages?: {
|
|
3953
3992
|
text: string;
|
|
3954
|
-
type: "
|
|
3993
|
+
type: "error" | "success" | "info" | "warning";
|
|
3955
3994
|
id?: number | undefined;
|
|
3956
3995
|
}[] | undefined;
|
|
3957
3996
|
required?: boolean | undefined;
|
|
@@ -3972,7 +4011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3972
4011
|
hint?: string | undefined;
|
|
3973
4012
|
messages?: {
|
|
3974
4013
|
text: string;
|
|
3975
|
-
type: "
|
|
4014
|
+
type: "error" | "success" | "info" | "warning";
|
|
3976
4015
|
id?: number | undefined;
|
|
3977
4016
|
}[] | undefined;
|
|
3978
4017
|
required?: boolean | undefined;
|
|
@@ -3997,7 +4036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3997
4036
|
hint?: string | undefined;
|
|
3998
4037
|
messages?: {
|
|
3999
4038
|
text: string;
|
|
4000
|
-
type: "
|
|
4039
|
+
type: "error" | "success" | "info" | "warning";
|
|
4001
4040
|
id?: number | undefined;
|
|
4002
4041
|
}[] | undefined;
|
|
4003
4042
|
required?: boolean | undefined;
|
|
@@ -4016,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4016
4055
|
hint?: string | undefined;
|
|
4017
4056
|
messages?: {
|
|
4018
4057
|
text: string;
|
|
4019
|
-
type: "
|
|
4058
|
+
type: "error" | "success" | "info" | "warning";
|
|
4020
4059
|
id?: number | undefined;
|
|
4021
4060
|
}[] | undefined;
|
|
4022
4061
|
required?: boolean | undefined;
|
|
@@ -4036,7 +4075,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4036
4075
|
hint?: string | undefined;
|
|
4037
4076
|
messages?: {
|
|
4038
4077
|
text: string;
|
|
4039
|
-
type: "
|
|
4078
|
+
type: "error" | "success" | "info" | "warning";
|
|
4040
4079
|
id?: number | undefined;
|
|
4041
4080
|
}[] | undefined;
|
|
4042
4081
|
required?: boolean | undefined;
|
|
@@ -4055,7 +4094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4055
4094
|
hint?: string | undefined;
|
|
4056
4095
|
messages?: {
|
|
4057
4096
|
text: string;
|
|
4058
|
-
type: "
|
|
4097
|
+
type: "error" | "success" | "info" | "warning";
|
|
4059
4098
|
id?: number | undefined;
|
|
4060
4099
|
}[] | undefined;
|
|
4061
4100
|
required?: boolean | undefined;
|
|
@@ -4077,7 +4116,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4077
4116
|
hint?: string | undefined;
|
|
4078
4117
|
messages?: {
|
|
4079
4118
|
text: string;
|
|
4080
|
-
type: "
|
|
4119
|
+
type: "error" | "success" | "info" | "warning";
|
|
4081
4120
|
id?: number | undefined;
|
|
4082
4121
|
}[] | undefined;
|
|
4083
4122
|
required?: boolean | undefined;
|
|
@@ -4099,7 +4138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4099
4138
|
hint?: string | undefined;
|
|
4100
4139
|
messages?: {
|
|
4101
4140
|
text: string;
|
|
4102
|
-
type: "
|
|
4141
|
+
type: "error" | "success" | "info" | "warning";
|
|
4103
4142
|
id?: number | undefined;
|
|
4104
4143
|
}[] | undefined;
|
|
4105
4144
|
required?: boolean | undefined;
|
|
@@ -4118,7 +4157,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4118
4157
|
hint?: string | undefined;
|
|
4119
4158
|
messages?: {
|
|
4120
4159
|
text: string;
|
|
4121
|
-
type: "
|
|
4160
|
+
type: "error" | "success" | "info" | "warning";
|
|
4122
4161
|
id?: number | undefined;
|
|
4123
4162
|
}[] | undefined;
|
|
4124
4163
|
required?: boolean | undefined;
|
|
@@ -4143,7 +4182,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4143
4182
|
hint?: string | undefined;
|
|
4144
4183
|
messages?: {
|
|
4145
4184
|
text: string;
|
|
4146
|
-
type: "
|
|
4185
|
+
type: "error" | "success" | "info" | "warning";
|
|
4147
4186
|
id?: number | undefined;
|
|
4148
4187
|
}[] | undefined;
|
|
4149
4188
|
required?: boolean | undefined;
|
|
@@ -4164,7 +4203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4164
4203
|
hint?: string | undefined;
|
|
4165
4204
|
messages?: {
|
|
4166
4205
|
text: string;
|
|
4167
|
-
type: "
|
|
4206
|
+
type: "error" | "success" | "info" | "warning";
|
|
4168
4207
|
id?: number | undefined;
|
|
4169
4208
|
}[] | undefined;
|
|
4170
4209
|
required?: boolean | undefined;
|
|
@@ -4185,7 +4224,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4185
4224
|
hint?: string | undefined;
|
|
4186
4225
|
messages?: {
|
|
4187
4226
|
text: string;
|
|
4188
|
-
type: "
|
|
4227
|
+
type: "error" | "success" | "info" | "warning";
|
|
4189
4228
|
id?: number | undefined;
|
|
4190
4229
|
}[] | undefined;
|
|
4191
4230
|
required?: boolean | undefined;
|
|
@@ -4439,7 +4478,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4439
4478
|
hint?: string | undefined;
|
|
4440
4479
|
messages?: {
|
|
4441
4480
|
text: string;
|
|
4442
|
-
type: "
|
|
4481
|
+
type: "error" | "success" | "info" | "warning";
|
|
4443
4482
|
id?: number | undefined;
|
|
4444
4483
|
}[] | undefined;
|
|
4445
4484
|
required?: boolean | undefined;
|
|
@@ -4457,7 +4496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4457
4496
|
hint?: string | undefined;
|
|
4458
4497
|
messages?: {
|
|
4459
4498
|
text: string;
|
|
4460
|
-
type: "
|
|
4499
|
+
type: "error" | "success" | "info" | "warning";
|
|
4461
4500
|
id?: number | undefined;
|
|
4462
4501
|
}[] | undefined;
|
|
4463
4502
|
required?: boolean | undefined;
|
|
@@ -4481,7 +4520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4481
4520
|
hint?: string | undefined;
|
|
4482
4521
|
messages?: {
|
|
4483
4522
|
text: string;
|
|
4484
|
-
type: "
|
|
4523
|
+
type: "error" | "success" | "info" | "warning";
|
|
4485
4524
|
id?: number | undefined;
|
|
4486
4525
|
}[] | undefined;
|
|
4487
4526
|
required?: boolean | undefined;
|
|
@@ -4505,7 +4544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4505
4544
|
hint?: string | undefined;
|
|
4506
4545
|
messages?: {
|
|
4507
4546
|
text: string;
|
|
4508
|
-
type: "
|
|
4547
|
+
type: "error" | "success" | "info" | "warning";
|
|
4509
4548
|
id?: number | undefined;
|
|
4510
4549
|
}[] | undefined;
|
|
4511
4550
|
required?: boolean | undefined;
|
|
@@ -4529,7 +4568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4529
4568
|
hint?: string | undefined;
|
|
4530
4569
|
messages?: {
|
|
4531
4570
|
text: string;
|
|
4532
|
-
type: "
|
|
4571
|
+
type: "error" | "success" | "info" | "warning";
|
|
4533
4572
|
id?: number | undefined;
|
|
4534
4573
|
}[] | undefined;
|
|
4535
4574
|
required?: boolean | undefined;
|
|
@@ -4554,7 +4593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4554
4593
|
hint?: string | undefined;
|
|
4555
4594
|
messages?: {
|
|
4556
4595
|
text: string;
|
|
4557
|
-
type: "
|
|
4596
|
+
type: "error" | "success" | "info" | "warning";
|
|
4558
4597
|
id?: number | undefined;
|
|
4559
4598
|
}[] | undefined;
|
|
4560
4599
|
required?: boolean | undefined;
|
|
@@ -4569,7 +4608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4569
4608
|
hint?: string | undefined;
|
|
4570
4609
|
messages?: {
|
|
4571
4610
|
text: string;
|
|
4572
|
-
type: "
|
|
4611
|
+
type: "error" | "success" | "info" | "warning";
|
|
4573
4612
|
id?: number | undefined;
|
|
4574
4613
|
}[] | undefined;
|
|
4575
4614
|
required?: boolean | undefined;
|
|
@@ -4590,7 +4629,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4590
4629
|
hint?: string | undefined;
|
|
4591
4630
|
messages?: {
|
|
4592
4631
|
text: string;
|
|
4593
|
-
type: "
|
|
4632
|
+
type: "error" | "success" | "info" | "warning";
|
|
4594
4633
|
id?: number | undefined;
|
|
4595
4634
|
}[] | undefined;
|
|
4596
4635
|
required?: boolean | undefined;
|
|
@@ -4615,7 +4654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4615
4654
|
hint?: string | undefined;
|
|
4616
4655
|
messages?: {
|
|
4617
4656
|
text: string;
|
|
4618
|
-
type: "
|
|
4657
|
+
type: "error" | "success" | "info" | "warning";
|
|
4619
4658
|
id?: number | undefined;
|
|
4620
4659
|
}[] | undefined;
|
|
4621
4660
|
required?: boolean | undefined;
|
|
@@ -4634,7 +4673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4634
4673
|
hint?: string | undefined;
|
|
4635
4674
|
messages?: {
|
|
4636
4675
|
text: string;
|
|
4637
|
-
type: "
|
|
4676
|
+
type: "error" | "success" | "info" | "warning";
|
|
4638
4677
|
id?: number | undefined;
|
|
4639
4678
|
}[] | undefined;
|
|
4640
4679
|
required?: boolean | undefined;
|
|
@@ -4654,7 +4693,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4654
4693
|
hint?: string | undefined;
|
|
4655
4694
|
messages?: {
|
|
4656
4695
|
text: string;
|
|
4657
|
-
type: "
|
|
4696
|
+
type: "error" | "success" | "info" | "warning";
|
|
4658
4697
|
id?: number | undefined;
|
|
4659
4698
|
}[] | undefined;
|
|
4660
4699
|
required?: boolean | undefined;
|
|
@@ -4673,7 +4712,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4673
4712
|
hint?: string | undefined;
|
|
4674
4713
|
messages?: {
|
|
4675
4714
|
text: string;
|
|
4676
|
-
type: "
|
|
4715
|
+
type: "error" | "success" | "info" | "warning";
|
|
4677
4716
|
id?: number | undefined;
|
|
4678
4717
|
}[] | undefined;
|
|
4679
4718
|
required?: boolean | undefined;
|
|
@@ -4695,7 +4734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4695
4734
|
hint?: string | undefined;
|
|
4696
4735
|
messages?: {
|
|
4697
4736
|
text: string;
|
|
4698
|
-
type: "
|
|
4737
|
+
type: "error" | "success" | "info" | "warning";
|
|
4699
4738
|
id?: number | undefined;
|
|
4700
4739
|
}[] | undefined;
|
|
4701
4740
|
required?: boolean | undefined;
|
|
@@ -4717,7 +4756,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4717
4756
|
hint?: string | undefined;
|
|
4718
4757
|
messages?: {
|
|
4719
4758
|
text: string;
|
|
4720
|
-
type: "
|
|
4759
|
+
type: "error" | "success" | "info" | "warning";
|
|
4721
4760
|
id?: number | undefined;
|
|
4722
4761
|
}[] | undefined;
|
|
4723
4762
|
required?: boolean | undefined;
|
|
@@ -4736,7 +4775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4736
4775
|
hint?: string | undefined;
|
|
4737
4776
|
messages?: {
|
|
4738
4777
|
text: string;
|
|
4739
|
-
type: "
|
|
4778
|
+
type: "error" | "success" | "info" | "warning";
|
|
4740
4779
|
id?: number | undefined;
|
|
4741
4780
|
}[] | undefined;
|
|
4742
4781
|
required?: boolean | undefined;
|
|
@@ -4761,7 +4800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4761
4800
|
hint?: string | undefined;
|
|
4762
4801
|
messages?: {
|
|
4763
4802
|
text: string;
|
|
4764
|
-
type: "
|
|
4803
|
+
type: "error" | "success" | "info" | "warning";
|
|
4765
4804
|
id?: number | undefined;
|
|
4766
4805
|
}[] | undefined;
|
|
4767
4806
|
required?: boolean | undefined;
|
|
@@ -4782,7 +4821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4782
4821
|
hint?: string | undefined;
|
|
4783
4822
|
messages?: {
|
|
4784
4823
|
text: string;
|
|
4785
|
-
type: "
|
|
4824
|
+
type: "error" | "success" | "info" | "warning";
|
|
4786
4825
|
id?: number | undefined;
|
|
4787
4826
|
}[] | undefined;
|
|
4788
4827
|
required?: boolean | undefined;
|
|
@@ -4803,7 +4842,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4803
4842
|
hint?: string | undefined;
|
|
4804
4843
|
messages?: {
|
|
4805
4844
|
text: string;
|
|
4806
|
-
type: "
|
|
4845
|
+
type: "error" | "success" | "info" | "warning";
|
|
4807
4846
|
id?: number | undefined;
|
|
4808
4847
|
}[] | undefined;
|
|
4809
4848
|
required?: boolean | undefined;
|
|
@@ -5034,7 +5073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5034
5073
|
hint?: string | undefined;
|
|
5035
5074
|
messages?: {
|
|
5036
5075
|
text: string;
|
|
5037
|
-
type: "
|
|
5076
|
+
type: "error" | "success" | "info" | "warning";
|
|
5038
5077
|
id?: number | undefined;
|
|
5039
5078
|
}[] | undefined;
|
|
5040
5079
|
required?: boolean | undefined;
|
|
@@ -5052,7 +5091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5052
5091
|
hint?: string | undefined;
|
|
5053
5092
|
messages?: {
|
|
5054
5093
|
text: string;
|
|
5055
|
-
type: "
|
|
5094
|
+
type: "error" | "success" | "info" | "warning";
|
|
5056
5095
|
id?: number | undefined;
|
|
5057
5096
|
}[] | undefined;
|
|
5058
5097
|
required?: boolean | undefined;
|
|
@@ -5076,7 +5115,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5076
5115
|
hint?: string | undefined;
|
|
5077
5116
|
messages?: {
|
|
5078
5117
|
text: string;
|
|
5079
|
-
type: "
|
|
5118
|
+
type: "error" | "success" | "info" | "warning";
|
|
5080
5119
|
id?: number | undefined;
|
|
5081
5120
|
}[] | undefined;
|
|
5082
5121
|
required?: boolean | undefined;
|
|
@@ -5100,7 +5139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5100
5139
|
hint?: string | undefined;
|
|
5101
5140
|
messages?: {
|
|
5102
5141
|
text: string;
|
|
5103
|
-
type: "
|
|
5142
|
+
type: "error" | "success" | "info" | "warning";
|
|
5104
5143
|
id?: number | undefined;
|
|
5105
5144
|
}[] | undefined;
|
|
5106
5145
|
required?: boolean | undefined;
|
|
@@ -5124,7 +5163,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5124
5163
|
hint?: string | undefined;
|
|
5125
5164
|
messages?: {
|
|
5126
5165
|
text: string;
|
|
5127
|
-
type: "
|
|
5166
|
+
type: "error" | "success" | "info" | "warning";
|
|
5128
5167
|
id?: number | undefined;
|
|
5129
5168
|
}[] | undefined;
|
|
5130
5169
|
required?: boolean | undefined;
|
|
@@ -5153,7 +5192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5153
5192
|
hint?: string | undefined;
|
|
5154
5193
|
messages?: {
|
|
5155
5194
|
text: string;
|
|
5156
|
-
type: "
|
|
5195
|
+
type: "error" | "success" | "info" | "warning";
|
|
5157
5196
|
id?: number | undefined;
|
|
5158
5197
|
}[] | undefined;
|
|
5159
5198
|
required?: boolean | undefined;
|
|
@@ -5168,7 +5207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5168
5207
|
hint?: string | undefined;
|
|
5169
5208
|
messages?: {
|
|
5170
5209
|
text: string;
|
|
5171
|
-
type: "
|
|
5210
|
+
type: "error" | "success" | "info" | "warning";
|
|
5172
5211
|
id?: number | undefined;
|
|
5173
5212
|
}[] | undefined;
|
|
5174
5213
|
required?: boolean | undefined;
|
|
@@ -5189,7 +5228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5189
5228
|
hint?: string | undefined;
|
|
5190
5229
|
messages?: {
|
|
5191
5230
|
text: string;
|
|
5192
|
-
type: "
|
|
5231
|
+
type: "error" | "success" | "info" | "warning";
|
|
5193
5232
|
id?: number | undefined;
|
|
5194
5233
|
}[] | undefined;
|
|
5195
5234
|
required?: boolean | undefined;
|
|
@@ -5214,7 +5253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5214
5253
|
hint?: string | undefined;
|
|
5215
5254
|
messages?: {
|
|
5216
5255
|
text: string;
|
|
5217
|
-
type: "
|
|
5256
|
+
type: "error" | "success" | "info" | "warning";
|
|
5218
5257
|
id?: number | undefined;
|
|
5219
5258
|
}[] | undefined;
|
|
5220
5259
|
required?: boolean | undefined;
|
|
@@ -5233,7 +5272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5233
5272
|
hint?: string | undefined;
|
|
5234
5273
|
messages?: {
|
|
5235
5274
|
text: string;
|
|
5236
|
-
type: "
|
|
5275
|
+
type: "error" | "success" | "info" | "warning";
|
|
5237
5276
|
id?: number | undefined;
|
|
5238
5277
|
}[] | undefined;
|
|
5239
5278
|
required?: boolean | undefined;
|
|
@@ -5253,7 +5292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5253
5292
|
hint?: string | undefined;
|
|
5254
5293
|
messages?: {
|
|
5255
5294
|
text: string;
|
|
5256
|
-
type: "
|
|
5295
|
+
type: "error" | "success" | "info" | "warning";
|
|
5257
5296
|
id?: number | undefined;
|
|
5258
5297
|
}[] | undefined;
|
|
5259
5298
|
required?: boolean | undefined;
|
|
@@ -5272,7 +5311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5272
5311
|
hint?: string | undefined;
|
|
5273
5312
|
messages?: {
|
|
5274
5313
|
text: string;
|
|
5275
|
-
type: "
|
|
5314
|
+
type: "error" | "success" | "info" | "warning";
|
|
5276
5315
|
id?: number | undefined;
|
|
5277
5316
|
}[] | undefined;
|
|
5278
5317
|
required?: boolean | undefined;
|
|
@@ -5294,7 +5333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5294
5333
|
hint?: string | undefined;
|
|
5295
5334
|
messages?: {
|
|
5296
5335
|
text: string;
|
|
5297
|
-
type: "
|
|
5336
|
+
type: "error" | "success" | "info" | "warning";
|
|
5298
5337
|
id?: number | undefined;
|
|
5299
5338
|
}[] | undefined;
|
|
5300
5339
|
required?: boolean | undefined;
|
|
@@ -5316,7 +5355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5316
5355
|
hint?: string | undefined;
|
|
5317
5356
|
messages?: {
|
|
5318
5357
|
text: string;
|
|
5319
|
-
type: "
|
|
5358
|
+
type: "error" | "success" | "info" | "warning";
|
|
5320
5359
|
id?: number | undefined;
|
|
5321
5360
|
}[] | undefined;
|
|
5322
5361
|
required?: boolean | undefined;
|
|
@@ -5335,7 +5374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5335
5374
|
hint?: string | undefined;
|
|
5336
5375
|
messages?: {
|
|
5337
5376
|
text: string;
|
|
5338
|
-
type: "
|
|
5377
|
+
type: "error" | "success" | "info" | "warning";
|
|
5339
5378
|
id?: number | undefined;
|
|
5340
5379
|
}[] | undefined;
|
|
5341
5380
|
required?: boolean | undefined;
|
|
@@ -5360,7 +5399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5360
5399
|
hint?: string | undefined;
|
|
5361
5400
|
messages?: {
|
|
5362
5401
|
text: string;
|
|
5363
|
-
type: "
|
|
5402
|
+
type: "error" | "success" | "info" | "warning";
|
|
5364
5403
|
id?: number | undefined;
|
|
5365
5404
|
}[] | undefined;
|
|
5366
5405
|
required?: boolean | undefined;
|
|
@@ -5381,7 +5420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5381
5420
|
hint?: string | undefined;
|
|
5382
5421
|
messages?: {
|
|
5383
5422
|
text: string;
|
|
5384
|
-
type: "
|
|
5423
|
+
type: "error" | "success" | "info" | "warning";
|
|
5385
5424
|
id?: number | undefined;
|
|
5386
5425
|
}[] | undefined;
|
|
5387
5426
|
required?: boolean | undefined;
|
|
@@ -5402,7 +5441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5402
5441
|
hint?: string | undefined;
|
|
5403
5442
|
messages?: {
|
|
5404
5443
|
text: string;
|
|
5405
|
-
type: "
|
|
5444
|
+
type: "error" | "success" | "info" | "warning";
|
|
5406
5445
|
id?: number | undefined;
|
|
5407
5446
|
}[] | undefined;
|
|
5408
5447
|
required?: boolean | undefined;
|
|
@@ -5635,7 +5674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5635
5674
|
hint?: string | undefined;
|
|
5636
5675
|
messages?: {
|
|
5637
5676
|
text: string;
|
|
5638
|
-
type: "
|
|
5677
|
+
type: "error" | "success" | "info" | "warning";
|
|
5639
5678
|
id?: number | undefined;
|
|
5640
5679
|
}[] | undefined;
|
|
5641
5680
|
required?: boolean | undefined;
|
|
@@ -5653,7 +5692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5653
5692
|
hint?: string | undefined;
|
|
5654
5693
|
messages?: {
|
|
5655
5694
|
text: string;
|
|
5656
|
-
type: "
|
|
5695
|
+
type: "error" | "success" | "info" | "warning";
|
|
5657
5696
|
id?: number | undefined;
|
|
5658
5697
|
}[] | undefined;
|
|
5659
5698
|
required?: boolean | undefined;
|
|
@@ -5677,7 +5716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5677
5716
|
hint?: string | undefined;
|
|
5678
5717
|
messages?: {
|
|
5679
5718
|
text: string;
|
|
5680
|
-
type: "
|
|
5719
|
+
type: "error" | "success" | "info" | "warning";
|
|
5681
5720
|
id?: number | undefined;
|
|
5682
5721
|
}[] | undefined;
|
|
5683
5722
|
required?: boolean | undefined;
|
|
@@ -5701,7 +5740,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5701
5740
|
hint?: string | undefined;
|
|
5702
5741
|
messages?: {
|
|
5703
5742
|
text: string;
|
|
5704
|
-
type: "
|
|
5743
|
+
type: "error" | "success" | "info" | "warning";
|
|
5705
5744
|
id?: number | undefined;
|
|
5706
5745
|
}[] | undefined;
|
|
5707
5746
|
required?: boolean | undefined;
|
|
@@ -5725,7 +5764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5725
5764
|
hint?: string | undefined;
|
|
5726
5765
|
messages?: {
|
|
5727
5766
|
text: string;
|
|
5728
|
-
type: "
|
|
5767
|
+
type: "error" | "success" | "info" | "warning";
|
|
5729
5768
|
id?: number | undefined;
|
|
5730
5769
|
}[] | undefined;
|
|
5731
5770
|
required?: boolean | undefined;
|
|
@@ -5750,7 +5789,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5750
5789
|
hint?: string | undefined;
|
|
5751
5790
|
messages?: {
|
|
5752
5791
|
text: string;
|
|
5753
|
-
type: "
|
|
5792
|
+
type: "error" | "success" | "info" | "warning";
|
|
5754
5793
|
id?: number | undefined;
|
|
5755
5794
|
}[] | undefined;
|
|
5756
5795
|
required?: boolean | undefined;
|
|
@@ -5765,7 +5804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5765
5804
|
hint?: string | undefined;
|
|
5766
5805
|
messages?: {
|
|
5767
5806
|
text: string;
|
|
5768
|
-
type: "
|
|
5807
|
+
type: "error" | "success" | "info" | "warning";
|
|
5769
5808
|
id?: number | undefined;
|
|
5770
5809
|
}[] | undefined;
|
|
5771
5810
|
required?: boolean | undefined;
|
|
@@ -5786,7 +5825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5786
5825
|
hint?: string | undefined;
|
|
5787
5826
|
messages?: {
|
|
5788
5827
|
text: string;
|
|
5789
|
-
type: "
|
|
5828
|
+
type: "error" | "success" | "info" | "warning";
|
|
5790
5829
|
id?: number | undefined;
|
|
5791
5830
|
}[] | undefined;
|
|
5792
5831
|
required?: boolean | undefined;
|
|
@@ -5811,7 +5850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5811
5850
|
hint?: string | undefined;
|
|
5812
5851
|
messages?: {
|
|
5813
5852
|
text: string;
|
|
5814
|
-
type: "
|
|
5853
|
+
type: "error" | "success" | "info" | "warning";
|
|
5815
5854
|
id?: number | undefined;
|
|
5816
5855
|
}[] | undefined;
|
|
5817
5856
|
required?: boolean | undefined;
|
|
@@ -5830,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5830
5869
|
hint?: string | undefined;
|
|
5831
5870
|
messages?: {
|
|
5832
5871
|
text: string;
|
|
5833
|
-
type: "
|
|
5872
|
+
type: "error" | "success" | "info" | "warning";
|
|
5834
5873
|
id?: number | undefined;
|
|
5835
5874
|
}[] | undefined;
|
|
5836
5875
|
required?: boolean | undefined;
|
|
@@ -5850,7 +5889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5850
5889
|
hint?: string | undefined;
|
|
5851
5890
|
messages?: {
|
|
5852
5891
|
text: string;
|
|
5853
|
-
type: "
|
|
5892
|
+
type: "error" | "success" | "info" | "warning";
|
|
5854
5893
|
id?: number | undefined;
|
|
5855
5894
|
}[] | undefined;
|
|
5856
5895
|
required?: boolean | undefined;
|
|
@@ -5869,7 +5908,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5869
5908
|
hint?: string | undefined;
|
|
5870
5909
|
messages?: {
|
|
5871
5910
|
text: string;
|
|
5872
|
-
type: "
|
|
5911
|
+
type: "error" | "success" | "info" | "warning";
|
|
5873
5912
|
id?: number | undefined;
|
|
5874
5913
|
}[] | undefined;
|
|
5875
5914
|
required?: boolean | undefined;
|
|
@@ -5891,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5891
5930
|
hint?: string | undefined;
|
|
5892
5931
|
messages?: {
|
|
5893
5932
|
text: string;
|
|
5894
|
-
type: "
|
|
5933
|
+
type: "error" | "success" | "info" | "warning";
|
|
5895
5934
|
id?: number | undefined;
|
|
5896
5935
|
}[] | undefined;
|
|
5897
5936
|
required?: boolean | undefined;
|
|
@@ -5913,7 +5952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5913
5952
|
hint?: string | undefined;
|
|
5914
5953
|
messages?: {
|
|
5915
5954
|
text: string;
|
|
5916
|
-
type: "
|
|
5955
|
+
type: "error" | "success" | "info" | "warning";
|
|
5917
5956
|
id?: number | undefined;
|
|
5918
5957
|
}[] | undefined;
|
|
5919
5958
|
required?: boolean | undefined;
|
|
@@ -5932,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5932
5971
|
hint?: string | undefined;
|
|
5933
5972
|
messages?: {
|
|
5934
5973
|
text: string;
|
|
5935
|
-
type: "
|
|
5974
|
+
type: "error" | "success" | "info" | "warning";
|
|
5936
5975
|
id?: number | undefined;
|
|
5937
5976
|
}[] | undefined;
|
|
5938
5977
|
required?: boolean | undefined;
|
|
@@ -5957,7 +5996,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5957
5996
|
hint?: string | undefined;
|
|
5958
5997
|
messages?: {
|
|
5959
5998
|
text: string;
|
|
5960
|
-
type: "
|
|
5999
|
+
type: "error" | "success" | "info" | "warning";
|
|
5961
6000
|
id?: number | undefined;
|
|
5962
6001
|
}[] | undefined;
|
|
5963
6002
|
required?: boolean | undefined;
|
|
@@ -5978,7 +6017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5978
6017
|
hint?: string | undefined;
|
|
5979
6018
|
messages?: {
|
|
5980
6019
|
text: string;
|
|
5981
|
-
type: "
|
|
6020
|
+
type: "error" | "success" | "info" | "warning";
|
|
5982
6021
|
id?: number | undefined;
|
|
5983
6022
|
}[] | undefined;
|
|
5984
6023
|
required?: boolean | undefined;
|
|
@@ -5999,7 +6038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5999
6038
|
hint?: string | undefined;
|
|
6000
6039
|
messages?: {
|
|
6001
6040
|
text: string;
|
|
6002
|
-
type: "
|
|
6041
|
+
type: "error" | "success" | "info" | "warning";
|
|
6003
6042
|
id?: number | undefined;
|
|
6004
6043
|
}[] | undefined;
|
|
6005
6044
|
required?: boolean | undefined;
|
|
@@ -6230,7 +6269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6230
6269
|
hint?: string | undefined;
|
|
6231
6270
|
messages?: {
|
|
6232
6271
|
text: string;
|
|
6233
|
-
type: "
|
|
6272
|
+
type: "error" | "success" | "info" | "warning";
|
|
6234
6273
|
id?: number | undefined;
|
|
6235
6274
|
}[] | undefined;
|
|
6236
6275
|
required?: boolean | undefined;
|
|
@@ -6248,7 +6287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6248
6287
|
hint?: string | undefined;
|
|
6249
6288
|
messages?: {
|
|
6250
6289
|
text: string;
|
|
6251
|
-
type: "
|
|
6290
|
+
type: "error" | "success" | "info" | "warning";
|
|
6252
6291
|
id?: number | undefined;
|
|
6253
6292
|
}[] | undefined;
|
|
6254
6293
|
required?: boolean | undefined;
|
|
@@ -6272,7 +6311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6272
6311
|
hint?: string | undefined;
|
|
6273
6312
|
messages?: {
|
|
6274
6313
|
text: string;
|
|
6275
|
-
type: "
|
|
6314
|
+
type: "error" | "success" | "info" | "warning";
|
|
6276
6315
|
id?: number | undefined;
|
|
6277
6316
|
}[] | undefined;
|
|
6278
6317
|
required?: boolean | undefined;
|
|
@@ -6296,7 +6335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6296
6335
|
hint?: string | undefined;
|
|
6297
6336
|
messages?: {
|
|
6298
6337
|
text: string;
|
|
6299
|
-
type: "
|
|
6338
|
+
type: "error" | "success" | "info" | "warning";
|
|
6300
6339
|
id?: number | undefined;
|
|
6301
6340
|
}[] | undefined;
|
|
6302
6341
|
required?: boolean | undefined;
|
|
@@ -6320,7 +6359,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6320
6359
|
hint?: string | undefined;
|
|
6321
6360
|
messages?: {
|
|
6322
6361
|
text: string;
|
|
6323
|
-
type: "
|
|
6362
|
+
type: "error" | "success" | "info" | "warning";
|
|
6324
6363
|
id?: number | undefined;
|
|
6325
6364
|
}[] | undefined;
|
|
6326
6365
|
required?: boolean | undefined;
|
|
@@ -6349,7 +6388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6349
6388
|
hint?: string | undefined;
|
|
6350
6389
|
messages?: {
|
|
6351
6390
|
text: string;
|
|
6352
|
-
type: "
|
|
6391
|
+
type: "error" | "success" | "info" | "warning";
|
|
6353
6392
|
id?: number | undefined;
|
|
6354
6393
|
}[] | undefined;
|
|
6355
6394
|
required?: boolean | undefined;
|
|
@@ -6364,7 +6403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6364
6403
|
hint?: string | undefined;
|
|
6365
6404
|
messages?: {
|
|
6366
6405
|
text: string;
|
|
6367
|
-
type: "
|
|
6406
|
+
type: "error" | "success" | "info" | "warning";
|
|
6368
6407
|
id?: number | undefined;
|
|
6369
6408
|
}[] | undefined;
|
|
6370
6409
|
required?: boolean | undefined;
|
|
@@ -6385,7 +6424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6385
6424
|
hint?: string | undefined;
|
|
6386
6425
|
messages?: {
|
|
6387
6426
|
text: string;
|
|
6388
|
-
type: "
|
|
6427
|
+
type: "error" | "success" | "info" | "warning";
|
|
6389
6428
|
id?: number | undefined;
|
|
6390
6429
|
}[] | undefined;
|
|
6391
6430
|
required?: boolean | undefined;
|
|
@@ -6410,7 +6449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6410
6449
|
hint?: string | undefined;
|
|
6411
6450
|
messages?: {
|
|
6412
6451
|
text: string;
|
|
6413
|
-
type: "
|
|
6452
|
+
type: "error" | "success" | "info" | "warning";
|
|
6414
6453
|
id?: number | undefined;
|
|
6415
6454
|
}[] | undefined;
|
|
6416
6455
|
required?: boolean | undefined;
|
|
@@ -6429,7 +6468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6429
6468
|
hint?: string | undefined;
|
|
6430
6469
|
messages?: {
|
|
6431
6470
|
text: string;
|
|
6432
|
-
type: "
|
|
6471
|
+
type: "error" | "success" | "info" | "warning";
|
|
6433
6472
|
id?: number | undefined;
|
|
6434
6473
|
}[] | undefined;
|
|
6435
6474
|
required?: boolean | undefined;
|
|
@@ -6449,7 +6488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6449
6488
|
hint?: string | undefined;
|
|
6450
6489
|
messages?: {
|
|
6451
6490
|
text: string;
|
|
6452
|
-
type: "
|
|
6491
|
+
type: "error" | "success" | "info" | "warning";
|
|
6453
6492
|
id?: number | undefined;
|
|
6454
6493
|
}[] | undefined;
|
|
6455
6494
|
required?: boolean | undefined;
|
|
@@ -6468,7 +6507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6468
6507
|
hint?: string | undefined;
|
|
6469
6508
|
messages?: {
|
|
6470
6509
|
text: string;
|
|
6471
|
-
type: "
|
|
6510
|
+
type: "error" | "success" | "info" | "warning";
|
|
6472
6511
|
id?: number | undefined;
|
|
6473
6512
|
}[] | undefined;
|
|
6474
6513
|
required?: boolean | undefined;
|
|
@@ -6490,7 +6529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6490
6529
|
hint?: string | undefined;
|
|
6491
6530
|
messages?: {
|
|
6492
6531
|
text: string;
|
|
6493
|
-
type: "
|
|
6532
|
+
type: "error" | "success" | "info" | "warning";
|
|
6494
6533
|
id?: number | undefined;
|
|
6495
6534
|
}[] | undefined;
|
|
6496
6535
|
required?: boolean | undefined;
|
|
@@ -6512,7 +6551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6512
6551
|
hint?: string | undefined;
|
|
6513
6552
|
messages?: {
|
|
6514
6553
|
text: string;
|
|
6515
|
-
type: "
|
|
6554
|
+
type: "error" | "success" | "info" | "warning";
|
|
6516
6555
|
id?: number | undefined;
|
|
6517
6556
|
}[] | undefined;
|
|
6518
6557
|
required?: boolean | undefined;
|
|
@@ -6531,7 +6570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6531
6570
|
hint?: string | undefined;
|
|
6532
6571
|
messages?: {
|
|
6533
6572
|
text: string;
|
|
6534
|
-
type: "
|
|
6573
|
+
type: "error" | "success" | "info" | "warning";
|
|
6535
6574
|
id?: number | undefined;
|
|
6536
6575
|
}[] | undefined;
|
|
6537
6576
|
required?: boolean | undefined;
|
|
@@ -6556,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6556
6595
|
hint?: string | undefined;
|
|
6557
6596
|
messages?: {
|
|
6558
6597
|
text: string;
|
|
6559
|
-
type: "
|
|
6598
|
+
type: "error" | "success" | "info" | "warning";
|
|
6560
6599
|
id?: number | undefined;
|
|
6561
6600
|
}[] | undefined;
|
|
6562
6601
|
required?: boolean | undefined;
|
|
@@ -6577,7 +6616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6577
6616
|
hint?: string | undefined;
|
|
6578
6617
|
messages?: {
|
|
6579
6618
|
text: string;
|
|
6580
|
-
type: "
|
|
6619
|
+
type: "error" | "success" | "info" | "warning";
|
|
6581
6620
|
id?: number | undefined;
|
|
6582
6621
|
}[] | undefined;
|
|
6583
6622
|
required?: boolean | undefined;
|
|
@@ -6598,7 +6637,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6598
6637
|
hint?: string | undefined;
|
|
6599
6638
|
messages?: {
|
|
6600
6639
|
text: string;
|
|
6601
|
-
type: "
|
|
6640
|
+
type: "error" | "success" | "info" | "warning";
|
|
6602
6641
|
id?: number | undefined;
|
|
6603
6642
|
}[] | undefined;
|
|
6604
6643
|
required?: boolean | undefined;
|
|
@@ -6828,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6867
|
};
|
|
6829
6868
|
};
|
|
6830
6869
|
output: {
|
|
6831
|
-
prompt: "
|
|
6870
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6832
6871
|
language: string;
|
|
6833
6872
|
}[];
|
|
6834
6873
|
outputFormat: "json";
|
|
@@ -6866,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6905
|
$get: {
|
|
6867
6906
|
input: {
|
|
6868
6907
|
param: {
|
|
6869
|
-
prompt: "
|
|
6908
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6870
6909
|
language: string;
|
|
6871
6910
|
};
|
|
6872
6911
|
} & {
|
|
@@ -6888,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6927
|
$put: {
|
|
6889
6928
|
input: {
|
|
6890
6929
|
param: {
|
|
6891
|
-
prompt: "
|
|
6930
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6892
6931
|
language: string;
|
|
6893
6932
|
};
|
|
6894
6933
|
} & {
|
|
@@ -6912,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6951
|
$delete: {
|
|
6913
6952
|
input: {
|
|
6914
6953
|
param: {
|
|
6915
|
-
prompt: "
|
|
6954
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6916
6955
|
language: string;
|
|
6917
6956
|
};
|
|
6918
6957
|
} & {
|
|
@@ -7004,7 +7043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7004
7043
|
active?: boolean | undefined;
|
|
7005
7044
|
} | undefined;
|
|
7006
7045
|
signup?: {
|
|
7007
|
-
status?: "
|
|
7046
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7008
7047
|
verification?: {
|
|
7009
7048
|
active?: boolean | undefined;
|
|
7010
7049
|
} | undefined;
|
|
@@ -7021,7 +7060,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7060
|
active?: boolean | undefined;
|
|
7022
7061
|
} | undefined;
|
|
7023
7062
|
signup?: {
|
|
7024
|
-
status?: "
|
|
7063
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7025
7064
|
} | undefined;
|
|
7026
7065
|
validation?: {
|
|
7027
7066
|
max_length?: number | undefined;
|
|
@@ -7038,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7038
7077
|
active?: boolean | undefined;
|
|
7039
7078
|
} | undefined;
|
|
7040
7079
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7080
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7042
7081
|
} | undefined;
|
|
7043
7082
|
} | undefined;
|
|
7044
7083
|
} | undefined;
|
|
@@ -7138,7 +7177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7138
7177
|
active?: boolean | undefined;
|
|
7139
7178
|
} | undefined;
|
|
7140
7179
|
signup?: {
|
|
7141
|
-
status?: "
|
|
7180
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7142
7181
|
verification?: {
|
|
7143
7182
|
active?: boolean | undefined;
|
|
7144
7183
|
} | undefined;
|
|
@@ -7155,7 +7194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7155
7194
|
active?: boolean | undefined;
|
|
7156
7195
|
} | undefined;
|
|
7157
7196
|
signup?: {
|
|
7158
|
-
status?: "
|
|
7197
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7159
7198
|
} | undefined;
|
|
7160
7199
|
validation?: {
|
|
7161
7200
|
max_length?: number | undefined;
|
|
@@ -7172,7 +7211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7172
7211
|
active?: boolean | undefined;
|
|
7173
7212
|
} | undefined;
|
|
7174
7213
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7214
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7176
7215
|
} | undefined;
|
|
7177
7216
|
} | undefined;
|
|
7178
7217
|
} | undefined;
|
|
@@ -7211,6 +7250,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7211
7250
|
is_system?: boolean | undefined;
|
|
7212
7251
|
}[];
|
|
7213
7252
|
total?: number | undefined;
|
|
7253
|
+
next?: string | undefined;
|
|
7214
7254
|
};
|
|
7215
7255
|
outputFormat: "json";
|
|
7216
7256
|
status: 200;
|
|
@@ -7287,7 +7327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7287
7327
|
active?: boolean | undefined;
|
|
7288
7328
|
} | undefined;
|
|
7289
7329
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7330
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7291
7331
|
verification?: {
|
|
7292
7332
|
active?: boolean | undefined;
|
|
7293
7333
|
} | undefined;
|
|
@@ -7304,7 +7344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7304
7344
|
active?: boolean | undefined;
|
|
7305
7345
|
} | undefined;
|
|
7306
7346
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7347
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7308
7348
|
} | undefined;
|
|
7309
7349
|
validation?: {
|
|
7310
7350
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7321
7361
|
active?: boolean | undefined;
|
|
7322
7362
|
} | undefined;
|
|
7323
7363
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7364
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7325
7365
|
} | undefined;
|
|
7326
7366
|
} | undefined;
|
|
7327
7367
|
} | undefined;
|
|
@@ -7466,7 +7506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7466
7506
|
active?: boolean | undefined;
|
|
7467
7507
|
} | undefined;
|
|
7468
7508
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7509
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7470
7510
|
verification?: {
|
|
7471
7511
|
active?: boolean | undefined;
|
|
7472
7512
|
} | undefined;
|
|
@@ -7483,7 +7523,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7483
7523
|
active?: boolean | undefined;
|
|
7484
7524
|
} | undefined;
|
|
7485
7525
|
signup?: {
|
|
7486
|
-
status?: "
|
|
7526
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7487
7527
|
} | undefined;
|
|
7488
7528
|
validation?: {
|
|
7489
7529
|
max_length?: number | undefined;
|
|
@@ -7500,7 +7540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7500
7540
|
active?: boolean | undefined;
|
|
7501
7541
|
} | undefined;
|
|
7502
7542
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7543
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7504
7544
|
} | undefined;
|
|
7505
7545
|
} | undefined;
|
|
7506
7546
|
} | undefined;
|
|
@@ -7624,7 +7664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7624
7664
|
active?: boolean | undefined;
|
|
7625
7665
|
} | undefined;
|
|
7626
7666
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7667
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7628
7668
|
verification?: {
|
|
7629
7669
|
active?: boolean | undefined;
|
|
7630
7670
|
} | undefined;
|
|
@@ -7641,7 +7681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7641
7681
|
active?: boolean | undefined;
|
|
7642
7682
|
} | undefined;
|
|
7643
7683
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7684
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7645
7685
|
} | undefined;
|
|
7646
7686
|
validation?: {
|
|
7647
7687
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7658
7698
|
active?: boolean | undefined;
|
|
7659
7699
|
} | undefined;
|
|
7660
7700
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7701
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7702
|
} | undefined;
|
|
7663
7703
|
} | undefined;
|
|
7664
7704
|
} | undefined;
|
|
@@ -7774,7 +7814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7774
7814
|
};
|
|
7775
7815
|
} | {
|
|
7776
7816
|
mode: "inline";
|
|
7777
|
-
status: "
|
|
7817
|
+
status: "error" | "success";
|
|
7778
7818
|
connection_id: string;
|
|
7779
7819
|
connection_name: string;
|
|
7780
7820
|
strategy: string;
|
|
@@ -7810,7 +7850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7810
7850
|
tenant_id: string;
|
|
7811
7851
|
created_at: string;
|
|
7812
7852
|
updated_at: string;
|
|
7813
|
-
deploymentStatus: "
|
|
7853
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7814
7854
|
secrets?: {
|
|
7815
7855
|
[x: string]: string;
|
|
7816
7856
|
} | undefined;
|
|
@@ -7900,7 +7940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7900
7940
|
tenant_id: string;
|
|
7901
7941
|
created_at: string;
|
|
7902
7942
|
updated_at: string;
|
|
7903
|
-
deploymentStatus: "
|
|
7943
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7904
7944
|
secrets?: {
|
|
7905
7945
|
[x: string]: string;
|
|
7906
7946
|
} | undefined;
|
|
@@ -7948,7 +7988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7948
7988
|
};
|
|
7949
7989
|
};
|
|
7950
7990
|
output: ({
|
|
7951
|
-
trigger_id: "
|
|
7991
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7952
7992
|
enabled: boolean;
|
|
7953
7993
|
synchronous: boolean;
|
|
7954
7994
|
created_at: string;
|
|
@@ -7960,7 +8000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7960
8000
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7961
8001
|
} | undefined;
|
|
7962
8002
|
} | {
|
|
7963
|
-
trigger_id: "
|
|
8003
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7964
8004
|
enabled: boolean;
|
|
7965
8005
|
synchronous: boolean;
|
|
7966
8006
|
created_at: string;
|
|
@@ -7972,7 +8012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7972
8012
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7973
8013
|
} | undefined;
|
|
7974
8014
|
} | {
|
|
7975
|
-
trigger_id: "post-user-
|
|
8015
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
7976
8016
|
enabled: boolean;
|
|
7977
8017
|
synchronous: boolean;
|
|
7978
8018
|
created_at: string;
|
|
@@ -7984,7 +8024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7984
8024
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7985
8025
|
} | undefined;
|
|
7986
8026
|
} | {
|
|
7987
|
-
trigger_id: "
|
|
8027
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
7988
8028
|
enabled: boolean;
|
|
7989
8029
|
synchronous: boolean;
|
|
7990
8030
|
created_at: string;
|
|
@@ -8000,7 +8040,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8000
8040
|
limit: number;
|
|
8001
8041
|
length: number;
|
|
8002
8042
|
hooks: ({
|
|
8003
|
-
trigger_id: "
|
|
8043
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8004
8044
|
enabled: boolean;
|
|
8005
8045
|
synchronous: boolean;
|
|
8006
8046
|
created_at: string;
|
|
@@ -8012,7 +8052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8012
8052
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8013
8053
|
} | undefined;
|
|
8014
8054
|
} | {
|
|
8015
|
-
trigger_id: "
|
|
8055
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8016
8056
|
enabled: boolean;
|
|
8017
8057
|
synchronous: boolean;
|
|
8018
8058
|
created_at: string;
|
|
@@ -8024,7 +8064,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8024
8064
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8025
8065
|
} | undefined;
|
|
8026
8066
|
} | {
|
|
8027
|
-
trigger_id: "post-user-
|
|
8067
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8028
8068
|
enabled: boolean;
|
|
8029
8069
|
synchronous: boolean;
|
|
8030
8070
|
created_at: string;
|
|
@@ -8036,7 +8076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8036
8076
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8037
8077
|
} | undefined;
|
|
8038
8078
|
} | {
|
|
8039
|
-
trigger_id: "
|
|
8079
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8040
8080
|
enabled: boolean;
|
|
8041
8081
|
synchronous: boolean;
|
|
8042
8082
|
created_at: string;
|
|
@@ -8049,6 +8089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8049
8089
|
} | undefined;
|
|
8050
8090
|
})[];
|
|
8051
8091
|
total?: number | undefined;
|
|
8092
|
+
next?: string | undefined;
|
|
8052
8093
|
};
|
|
8053
8094
|
outputFormat: "json";
|
|
8054
8095
|
status: 200;
|
|
@@ -8063,7 +8104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8063
8104
|
};
|
|
8064
8105
|
} & {
|
|
8065
8106
|
json: {
|
|
8066
|
-
trigger_id: "
|
|
8107
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8067
8108
|
url: string;
|
|
8068
8109
|
enabled?: boolean | undefined;
|
|
8069
8110
|
synchronous?: boolean | undefined;
|
|
@@ -8071,7 +8112,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8071
8112
|
hook_id?: string | undefined;
|
|
8072
8113
|
metadata?: Record<string, unknown> | undefined;
|
|
8073
8114
|
} | {
|
|
8074
|
-
trigger_id: "
|
|
8115
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8075
8116
|
form_id: string;
|
|
8076
8117
|
enabled?: boolean | undefined;
|
|
8077
8118
|
synchronous?: boolean | undefined;
|
|
@@ -8079,7 +8120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8079
8120
|
hook_id?: string | undefined;
|
|
8080
8121
|
metadata?: Record<string, unknown> | undefined;
|
|
8081
8122
|
} | {
|
|
8082
|
-
trigger_id: "post-user-
|
|
8123
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8083
8124
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
8084
8125
|
enabled?: boolean | undefined;
|
|
8085
8126
|
synchronous?: boolean | undefined;
|
|
@@ -8087,7 +8128,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8087
8128
|
hook_id?: string | undefined;
|
|
8088
8129
|
metadata?: Record<string, unknown> | undefined;
|
|
8089
8130
|
} | {
|
|
8090
|
-
trigger_id: "
|
|
8131
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8091
8132
|
code_id: string;
|
|
8092
8133
|
enabled?: boolean | undefined;
|
|
8093
8134
|
synchronous?: boolean | undefined;
|
|
@@ -8097,7 +8138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8097
8138
|
};
|
|
8098
8139
|
};
|
|
8099
8140
|
output: {
|
|
8100
|
-
trigger_id: "
|
|
8141
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8101
8142
|
enabled: boolean;
|
|
8102
8143
|
synchronous: boolean;
|
|
8103
8144
|
created_at: string;
|
|
@@ -8109,7 +8150,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8109
8150
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8110
8151
|
} | undefined;
|
|
8111
8152
|
} | {
|
|
8112
|
-
trigger_id: "
|
|
8153
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8113
8154
|
enabled: boolean;
|
|
8114
8155
|
synchronous: boolean;
|
|
8115
8156
|
created_at: string;
|
|
@@ -8121,7 +8162,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8121
8162
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8122
8163
|
} | undefined;
|
|
8123
8164
|
} | {
|
|
8124
|
-
trigger_id: "post-user-
|
|
8165
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8125
8166
|
enabled: boolean;
|
|
8126
8167
|
synchronous: boolean;
|
|
8127
8168
|
created_at: string;
|
|
@@ -8133,7 +8174,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8133
8174
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8134
8175
|
} | undefined;
|
|
8135
8176
|
} | {
|
|
8136
|
-
trigger_id: "
|
|
8177
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8137
8178
|
enabled: boolean;
|
|
8138
8179
|
synchronous: boolean;
|
|
8139
8180
|
created_at: string;
|
|
@@ -8179,7 +8220,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8179
8220
|
json: unknown;
|
|
8180
8221
|
};
|
|
8181
8222
|
output: {
|
|
8182
|
-
trigger_id: "
|
|
8223
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8183
8224
|
enabled: boolean;
|
|
8184
8225
|
synchronous: boolean;
|
|
8185
8226
|
created_at: string;
|
|
@@ -8191,7 +8232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8191
8232
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8192
8233
|
} | undefined;
|
|
8193
8234
|
} | {
|
|
8194
|
-
trigger_id: "
|
|
8235
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8195
8236
|
enabled: boolean;
|
|
8196
8237
|
synchronous: boolean;
|
|
8197
8238
|
created_at: string;
|
|
@@ -8203,7 +8244,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8203
8244
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8204
8245
|
} | undefined;
|
|
8205
8246
|
} | {
|
|
8206
|
-
trigger_id: "post-user-
|
|
8247
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8207
8248
|
enabled: boolean;
|
|
8208
8249
|
synchronous: boolean;
|
|
8209
8250
|
created_at: string;
|
|
@@ -8215,7 +8256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8215
8256
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8216
8257
|
} | undefined;
|
|
8217
8258
|
} | {
|
|
8218
|
-
trigger_id: "
|
|
8259
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8219
8260
|
enabled: boolean;
|
|
8220
8261
|
synchronous: boolean;
|
|
8221
8262
|
created_at: string;
|
|
@@ -8257,7 +8298,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8257
8298
|
};
|
|
8258
8299
|
};
|
|
8259
8300
|
output: {
|
|
8260
|
-
trigger_id: "
|
|
8301
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8261
8302
|
enabled: boolean;
|
|
8262
8303
|
synchronous: boolean;
|
|
8263
8304
|
created_at: string;
|
|
@@ -8269,7 +8310,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8269
8310
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8270
8311
|
} | undefined;
|
|
8271
8312
|
} | {
|
|
8272
|
-
trigger_id: "
|
|
8313
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8273
8314
|
enabled: boolean;
|
|
8274
8315
|
synchronous: boolean;
|
|
8275
8316
|
created_at: string;
|
|
@@ -8281,7 +8322,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8281
8322
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8282
8323
|
} | undefined;
|
|
8283
8324
|
} | {
|
|
8284
|
-
trigger_id: "post-user-
|
|
8325
|
+
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
8285
8326
|
enabled: boolean;
|
|
8286
8327
|
synchronous: boolean;
|
|
8287
8328
|
created_at: string;
|
|
@@ -8293,7 +8334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8293
8334
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8294
8335
|
} | undefined;
|
|
8295
8336
|
} | {
|
|
8296
|
-
trigger_id: "
|
|
8337
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
8297
8338
|
enabled: boolean;
|
|
8298
8339
|
synchronous: boolean;
|
|
8299
8340
|
created_at: string;
|
|
@@ -8411,9 +8452,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8411
8452
|
tenant_id: string;
|
|
8412
8453
|
event_type: string;
|
|
8413
8454
|
log_type: string;
|
|
8414
|
-
category: "
|
|
8455
|
+
category: "user_action" | "admin_action" | "system" | "api";
|
|
8415
8456
|
actor: {
|
|
8416
|
-
type: "user" | "
|
|
8457
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8417
8458
|
id?: string | undefined;
|
|
8418
8459
|
email?: string | undefined;
|
|
8419
8460
|
org_id?: string | undefined;
|
|
@@ -8723,7 +8764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8723
8764
|
created_at: string;
|
|
8724
8765
|
updated_at: string;
|
|
8725
8766
|
name: string;
|
|
8726
|
-
provider: "auth0" | "
|
|
8767
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8727
8768
|
connection: string;
|
|
8728
8769
|
enabled: boolean;
|
|
8729
8770
|
credentials: {
|
|
@@ -8755,7 +8796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8755
8796
|
created_at: string;
|
|
8756
8797
|
updated_at: string;
|
|
8757
8798
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8799
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8759
8800
|
connection: string;
|
|
8760
8801
|
enabled: boolean;
|
|
8761
8802
|
credentials: {
|
|
@@ -8781,7 +8822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8781
8822
|
} & {
|
|
8782
8823
|
json: {
|
|
8783
8824
|
name: string;
|
|
8784
|
-
provider: "auth0" | "
|
|
8825
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8785
8826
|
connection: string;
|
|
8786
8827
|
credentials: {
|
|
8787
8828
|
domain: string;
|
|
@@ -8798,7 +8839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8798
8839
|
created_at: string;
|
|
8799
8840
|
updated_at: string;
|
|
8800
8841
|
name: string;
|
|
8801
|
-
provider: "auth0" | "
|
|
8842
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8802
8843
|
connection: string;
|
|
8803
8844
|
enabled: boolean;
|
|
8804
8845
|
credentials: {
|
|
@@ -8829,7 +8870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8829
8870
|
json: {
|
|
8830
8871
|
id?: string | undefined;
|
|
8831
8872
|
name?: string | undefined;
|
|
8832
|
-
provider?: "auth0" | "
|
|
8873
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8833
8874
|
connection?: string | undefined;
|
|
8834
8875
|
enabled?: boolean | undefined;
|
|
8835
8876
|
credentials?: {
|
|
@@ -8845,7 +8886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8845
8886
|
created_at: string;
|
|
8846
8887
|
updated_at: string;
|
|
8847
8888
|
name: string;
|
|
8848
|
-
provider: "auth0" | "
|
|
8889
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8849
8890
|
connection: string;
|
|
8850
8891
|
enabled: boolean;
|
|
8851
8892
|
credentials: {
|
|
@@ -8893,7 +8934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8893
8934
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8894
8935
|
};
|
|
8895
8936
|
id: string;
|
|
8896
|
-
status: "
|
|
8937
|
+
status: "active" | "suspended" | "paused";
|
|
8897
8938
|
filters?: {
|
|
8898
8939
|
type: string;
|
|
8899
8940
|
name: string;
|
|
@@ -8925,7 +8966,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8925
8966
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8926
8967
|
};
|
|
8927
8968
|
id: string;
|
|
8928
|
-
status: "
|
|
8969
|
+
status: "active" | "suspended" | "paused";
|
|
8929
8970
|
filters?: {
|
|
8930
8971
|
type: string;
|
|
8931
8972
|
name: string;
|
|
@@ -8950,7 +8991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8950
8991
|
name: string;
|
|
8951
8992
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8952
8993
|
sink: Record<string, unknown>;
|
|
8953
|
-
status?: "
|
|
8994
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
8954
8995
|
filters?: {
|
|
8955
8996
|
type: string;
|
|
8956
8997
|
name: string;
|
|
@@ -8965,7 +9006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8965
9006
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8966
9007
|
};
|
|
8967
9008
|
id: string;
|
|
8968
|
-
status: "
|
|
9009
|
+
status: "active" | "suspended" | "paused";
|
|
8969
9010
|
filters?: {
|
|
8970
9011
|
type: string;
|
|
8971
9012
|
name: string;
|
|
@@ -9000,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9041
|
}[] | undefined;
|
|
9001
9042
|
isPriority?: boolean | undefined;
|
|
9002
9043
|
id?: string | undefined;
|
|
9003
|
-
status?: "
|
|
9044
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9004
9045
|
created_at?: string | undefined;
|
|
9005
9046
|
updated_at?: string | undefined;
|
|
9006
9047
|
};
|
|
@@ -9012,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9012
9053
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9013
9054
|
};
|
|
9014
9055
|
id: string;
|
|
9015
|
-
status: "
|
|
9056
|
+
status: "active" | "suspended" | "paused";
|
|
9016
9057
|
filters?: {
|
|
9017
9058
|
type: string;
|
|
9018
9059
|
name: string;
|
|
@@ -9063,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9104
|
};
|
|
9064
9105
|
};
|
|
9065
9106
|
output: {
|
|
9066
|
-
type: "
|
|
9107
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9067
9108
|
date: string;
|
|
9068
9109
|
isMobile: boolean;
|
|
9069
9110
|
log_id: string;
|
|
@@ -9102,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9143
|
limit: number;
|
|
9103
9144
|
length: number;
|
|
9104
9145
|
logs: {
|
|
9105
|
-
type: "
|
|
9146
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9106
9147
|
date: string;
|
|
9107
9148
|
isMobile: boolean;
|
|
9108
9149
|
log_id: string;
|
|
@@ -9138,6 +9179,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9138
9179
|
} | undefined;
|
|
9139
9180
|
}[];
|
|
9140
9181
|
total?: number | undefined;
|
|
9182
|
+
next?: string | undefined;
|
|
9141
9183
|
};
|
|
9142
9184
|
outputFormat: "json";
|
|
9143
9185
|
status: 200;
|
|
@@ -9156,7 +9198,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9198
|
};
|
|
9157
9199
|
};
|
|
9158
9200
|
output: {
|
|
9159
|
-
type: "
|
|
9201
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9160
9202
|
date: string;
|
|
9161
9203
|
isMobile: boolean;
|
|
9162
9204
|
log_id: string;
|
|
@@ -9259,6 +9301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9259
9301
|
audience?: string | undefined;
|
|
9260
9302
|
}[];
|
|
9261
9303
|
total?: number | undefined;
|
|
9304
|
+
next?: string | undefined;
|
|
9262
9305
|
};
|
|
9263
9306
|
outputFormat: "json";
|
|
9264
9307
|
status: 200;
|
|
@@ -9348,6 +9391,22 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9348
9391
|
updated_at?: string | undefined;
|
|
9349
9392
|
}[];
|
|
9350
9393
|
total?: number | undefined;
|
|
9394
|
+
next?: string | undefined;
|
|
9395
|
+
} | {
|
|
9396
|
+
client_grants: {
|
|
9397
|
+
id: string;
|
|
9398
|
+
client_id: string;
|
|
9399
|
+
audience: string;
|
|
9400
|
+
scope?: string[] | undefined;
|
|
9401
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9402
|
+
allow_any_organization?: boolean | undefined;
|
|
9403
|
+
is_system?: boolean | undefined;
|
|
9404
|
+
subject_type?: "client" | "user" | undefined;
|
|
9405
|
+
authorization_details_types?: string[] | undefined;
|
|
9406
|
+
created_at?: string | undefined;
|
|
9407
|
+
updated_at?: string | undefined;
|
|
9408
|
+
}[];
|
|
9409
|
+
next?: string | undefined;
|
|
9351
9410
|
};
|
|
9352
9411
|
outputFormat: "json";
|
|
9353
9412
|
status: 200;
|
|
@@ -9544,7 +9603,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9603
|
addons?: {
|
|
9545
9604
|
[x: string]: any;
|
|
9546
9605
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "
|
|
9606
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9548
9607
|
client_metadata?: {
|
|
9549
9608
|
[x: string]: string;
|
|
9550
9609
|
} | undefined;
|
|
@@ -9640,7 +9699,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9699
|
addons?: {
|
|
9641
9700
|
[x: string]: any;
|
|
9642
9701
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "
|
|
9702
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9644
9703
|
client_metadata?: {
|
|
9645
9704
|
[x: string]: string;
|
|
9646
9705
|
} | undefined;
|
|
@@ -9685,6 +9744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9744
|
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9686
9745
|
}[];
|
|
9687
9746
|
total?: number | undefined;
|
|
9747
|
+
next?: string | undefined;
|
|
9688
9748
|
};
|
|
9689
9749
|
outputFormat: "json";
|
|
9690
9750
|
status: 200;
|
|
@@ -9751,7 +9811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9811
|
addons?: {
|
|
9752
9812
|
[x: string]: any;
|
|
9753
9813
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "
|
|
9814
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9755
9815
|
client_metadata?: {
|
|
9756
9816
|
[x: string]: string;
|
|
9757
9817
|
} | undefined;
|
|
@@ -9861,7 +9921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
9921
|
custom_login_page_preview?: string | undefined;
|
|
9862
9922
|
form_template?: string | undefined;
|
|
9863
9923
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "
|
|
9924
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9865
9925
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
9926
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
9927
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +10001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
10001
|
addons?: {
|
|
9942
10002
|
[x: string]: any;
|
|
9943
10003
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "
|
|
10004
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9945
10005
|
client_metadata?: {
|
|
9946
10006
|
[x: string]: string;
|
|
9947
10007
|
} | undefined;
|
|
@@ -10030,7 +10090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10090
|
custom_login_page_preview?: string | undefined;
|
|
10031
10091
|
form_template?: string | undefined;
|
|
10032
10092
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "
|
|
10093
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
10034
10094
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10095
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10096
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10170
|
addons?: {
|
|
10111
10171
|
[x: string]: any;
|
|
10112
10172
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "
|
|
10173
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
10114
10174
|
client_metadata?: {
|
|
10115
10175
|
[x: string]: string;
|
|
10116
10176
|
} | undefined;
|
|
@@ -10232,7 +10292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10232
10292
|
active?: boolean | undefined;
|
|
10233
10293
|
} | undefined;
|
|
10234
10294
|
signup?: {
|
|
10235
|
-
status?: "
|
|
10295
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10236
10296
|
verification?: {
|
|
10237
10297
|
active?: boolean | undefined;
|
|
10238
10298
|
} | undefined;
|
|
@@ -10249,7 +10309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10249
10309
|
active?: boolean | undefined;
|
|
10250
10310
|
} | undefined;
|
|
10251
10311
|
signup?: {
|
|
10252
|
-
status?: "
|
|
10312
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10253
10313
|
} | undefined;
|
|
10254
10314
|
validation?: {
|
|
10255
10315
|
max_length?: number | undefined;
|
|
@@ -10266,7 +10326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10266
10326
|
active?: boolean | undefined;
|
|
10267
10327
|
} | undefined;
|
|
10268
10328
|
signup?: {
|
|
10269
|
-
status?: "
|
|
10329
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10270
10330
|
} | undefined;
|
|
10271
10331
|
} | undefined;
|
|
10272
10332
|
} | undefined;
|
|
@@ -10386,7 +10446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10386
10446
|
active?: boolean | undefined;
|
|
10387
10447
|
} | undefined;
|
|
10388
10448
|
signup?: {
|
|
10389
|
-
status?: "
|
|
10449
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10390
10450
|
verification?: {
|
|
10391
10451
|
active?: boolean | undefined;
|
|
10392
10452
|
} | undefined;
|
|
@@ -10403,7 +10463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10403
10463
|
active?: boolean | undefined;
|
|
10404
10464
|
} | undefined;
|
|
10405
10465
|
signup?: {
|
|
10406
|
-
status?: "
|
|
10466
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10407
10467
|
} | undefined;
|
|
10408
10468
|
validation?: {
|
|
10409
10469
|
max_length?: number | undefined;
|
|
@@ -10420,7 +10480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10420
10480
|
active?: boolean | undefined;
|
|
10421
10481
|
} | undefined;
|
|
10422
10482
|
signup?: {
|
|
10423
|
-
status?: "
|
|
10483
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10424
10484
|
} | undefined;
|
|
10425
10485
|
} | undefined;
|
|
10426
10486
|
} | undefined;
|
|
@@ -10798,6 +10858,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10798
10858
|
}[] | undefined;
|
|
10799
10859
|
}[];
|
|
10800
10860
|
total?: number | undefined;
|
|
10861
|
+
next?: string | undefined;
|
|
10801
10862
|
};
|
|
10802
10863
|
outputFormat: "json";
|
|
10803
10864
|
status: 200;
|
|
@@ -11267,6 +11328,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11267
11328
|
updated_at?: string | undefined;
|
|
11268
11329
|
}[];
|
|
11269
11330
|
total?: number | undefined;
|
|
11331
|
+
next?: string | undefined;
|
|
11270
11332
|
};
|
|
11271
11333
|
outputFormat: "json";
|
|
11272
11334
|
status: 200;
|
|
@@ -11344,6 +11406,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11344
11406
|
idle_expires_at?: string | undefined;
|
|
11345
11407
|
}[];
|
|
11346
11408
|
total?: number | undefined;
|
|
11409
|
+
next?: string | undefined;
|
|
11347
11410
|
};
|
|
11348
11411
|
outputFormat: "json";
|
|
11349
11412
|
status: 200;
|
|
@@ -11374,7 +11437,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11437
|
};
|
|
11375
11438
|
};
|
|
11376
11439
|
output: {
|
|
11377
|
-
type: "
|
|
11440
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11378
11441
|
date: string;
|
|
11379
11442
|
isMobile: boolean;
|
|
11380
11443
|
log_id: string;
|
|
@@ -11413,7 +11476,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11476
|
limit: number;
|
|
11414
11477
|
length: number;
|
|
11415
11478
|
logs: {
|
|
11416
|
-
type: "
|
|
11479
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11417
11480
|
date: string;
|
|
11418
11481
|
isMobile: boolean;
|
|
11419
11482
|
log_id: string;
|
|
@@ -11449,6 +11512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11449
11512
|
} | undefined;
|
|
11450
11513
|
}[];
|
|
11451
11514
|
total?: number | undefined;
|
|
11515
|
+
next?: string | undefined;
|
|
11452
11516
|
};
|
|
11453
11517
|
outputFormat: "json";
|
|
11454
11518
|
status: 200;
|
|
@@ -11698,6 +11762,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11698
11762
|
} | undefined;
|
|
11699
11763
|
}[];
|
|
11700
11764
|
total?: number | undefined;
|
|
11765
|
+
next?: string | undefined;
|
|
11701
11766
|
};
|
|
11702
11767
|
outputFormat: "json";
|
|
11703
11768
|
status: 200;
|
|
@@ -12255,7 +12320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12320
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12256
12321
|
custom_domain_id: string;
|
|
12257
12322
|
primary: boolean;
|
|
12258
|
-
status: "
|
|
12323
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12259
12324
|
verification_method?: "txt" | undefined;
|
|
12260
12325
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12261
12326
|
domain_metadata?: {
|
|
@@ -12296,7 +12361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12296
12361
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12297
12362
|
custom_domain_id: string;
|
|
12298
12363
|
primary: boolean;
|
|
12299
|
-
status: "
|
|
12364
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12300
12365
|
verification_method?: "txt" | undefined;
|
|
12301
12366
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12302
12367
|
domain_metadata?: {
|
|
@@ -12360,7 +12425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12360
12425
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12361
12426
|
custom_domain_id: string;
|
|
12362
12427
|
primary: boolean;
|
|
12363
|
-
status: "
|
|
12428
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12364
12429
|
verification_method?: "txt" | undefined;
|
|
12365
12430
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12366
12431
|
domain_metadata?: {
|
|
@@ -12407,7 +12472,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12407
12472
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12408
12473
|
custom_domain_id: string;
|
|
12409
12474
|
primary: boolean;
|
|
12410
|
-
status: "
|
|
12475
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12411
12476
|
verification_method?: "txt" | undefined;
|
|
12412
12477
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12413
12478
|
domain_metadata?: {
|
|
@@ -12453,7 +12518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12453
12518
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12454
12519
|
custom_domain_id: string;
|
|
12455
12520
|
primary: boolean;
|
|
12456
|
-
status: "
|
|
12521
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12457
12522
|
verification_method?: "txt" | undefined;
|
|
12458
12523
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12459
12524
|
domain_metadata?: {
|
|
@@ -12494,7 +12559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12494
12559
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12495
12560
|
custom_domain_id: string;
|
|
12496
12561
|
primary: boolean;
|
|
12497
|
-
status: "
|
|
12562
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12498
12563
|
verification_method?: "txt" | undefined;
|
|
12499
12564
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12500
12565
|
domain_metadata?: {
|
|
@@ -12924,7 +12989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12924
12989
|
} & {
|
|
12925
12990
|
json: {
|
|
12926
12991
|
body?: string | undefined;
|
|
12927
|
-
screen?: "password" | "
|
|
12992
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12928
12993
|
branding?: {
|
|
12929
12994
|
colors?: {
|
|
12930
12995
|
primary: string;
|
|
@@ -13093,7 +13158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13093
13158
|
json: {
|
|
13094
13159
|
bindings: {
|
|
13095
13160
|
ref: {
|
|
13096
|
-
type?: "
|
|
13161
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13097
13162
|
value?: string | undefined;
|
|
13098
13163
|
id?: string | undefined;
|
|
13099
13164
|
name?: string | undefined;
|
|
@@ -13168,7 +13233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13168
13233
|
output: {
|
|
13169
13234
|
id: string;
|
|
13170
13235
|
trigger_id: string;
|
|
13171
|
-
status: "
|
|
13236
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
13172
13237
|
results: {
|
|
13173
13238
|
action_name: string;
|
|
13174
13239
|
error: {
|
|
@@ -13298,6 +13363,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13298
13363
|
}[] | undefined;
|
|
13299
13364
|
}[];
|
|
13300
13365
|
total?: number | undefined;
|
|
13366
|
+
next?: string | undefined;
|
|
13301
13367
|
};
|
|
13302
13368
|
outputFormat: "json";
|
|
13303
13369
|
status: 200;
|
|
@@ -13706,6 +13772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13706
13772
|
}[] | undefined;
|
|
13707
13773
|
}[];
|
|
13708
13774
|
total?: number | undefined;
|
|
13775
|
+
next?: string | undefined;
|
|
13709
13776
|
};
|
|
13710
13777
|
outputFormat: "json";
|
|
13711
13778
|
status: 200;
|