authhero 8.22.1 → 8.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +106 -106
- package/dist/authhero.d.ts +394 -279
- package/dist/authhero.mjs +9736 -9566
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +14 -6
- package/dist/types/helpers/backchannel-logout.d.ts +19 -0
- package/dist/types/helpers/client.d.ts +10 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +384 -278
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +48 -44
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +6 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +76 -24
- package/dist/types/routes/management-api/connections.d.ts +21 -21
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +329 -227
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +50 -0
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +28 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/jwks.d.ts +4 -4
- package/dist/types/variables.d.ts +8 -0
- package/package.json +8 -8
|
@@ -53,7 +53,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
53
53
|
[x: string]: any;
|
|
54
54
|
} | undefined;
|
|
55
55
|
oidc_logout?: {
|
|
56
|
-
[x: string]:
|
|
56
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
57
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
58
|
+
backchannel_logout_initiators?: {
|
|
59
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
60
|
+
mode?: "custom" | "all" | undefined;
|
|
61
|
+
selected_initiators?: string[] | undefined;
|
|
62
|
+
} | undefined;
|
|
57
63
|
} | undefined;
|
|
58
64
|
grant_types?: string[] | undefined;
|
|
59
65
|
jwt_configuration?: {
|
|
@@ -72,7 +78,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
72
78
|
addons?: {
|
|
73
79
|
[x: string]: any;
|
|
74
80
|
} | undefined;
|
|
75
|
-
token_endpoint_auth_method?: "
|
|
81
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
76
82
|
client_metadata?: {
|
|
77
83
|
[x: string]: string;
|
|
78
84
|
} | undefined;
|
|
@@ -149,7 +155,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
149
155
|
[x: string]: any;
|
|
150
156
|
} | undefined;
|
|
151
157
|
oidc_logout?: {
|
|
152
|
-
[x: string]:
|
|
158
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
159
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
160
|
+
backchannel_logout_initiators?: {
|
|
161
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
162
|
+
mode?: "custom" | "all" | undefined;
|
|
163
|
+
selected_initiators?: string[] | undefined;
|
|
164
|
+
} | undefined;
|
|
153
165
|
} | undefined;
|
|
154
166
|
grant_types?: string[] | undefined;
|
|
155
167
|
jwt_configuration?: {
|
|
@@ -168,7 +180,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
168
180
|
addons?: {
|
|
169
181
|
[x: string]: any;
|
|
170
182
|
} | undefined;
|
|
171
|
-
token_endpoint_auth_method?: "
|
|
183
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
172
184
|
client_metadata?: {
|
|
173
185
|
[x: string]: string;
|
|
174
186
|
} | undefined;
|
|
@@ -245,7 +257,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
245
257
|
[x: string]: any;
|
|
246
258
|
} | undefined;
|
|
247
259
|
oidc_logout?: {
|
|
248
|
-
[x: string]:
|
|
260
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
261
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
262
|
+
backchannel_logout_initiators?: {
|
|
263
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
264
|
+
mode?: "custom" | "all" | undefined;
|
|
265
|
+
selected_initiators?: string[] | undefined;
|
|
266
|
+
} | undefined;
|
|
249
267
|
} | undefined;
|
|
250
268
|
grant_types?: string[] | undefined;
|
|
251
269
|
jwt_configuration?: {
|
|
@@ -264,7 +282,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
264
282
|
addons?: {
|
|
265
283
|
[x: string]: any;
|
|
266
284
|
} | undefined;
|
|
267
|
-
token_endpoint_auth_method?: "
|
|
285
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
268
286
|
client_metadata?: {
|
|
269
287
|
[x: string]: string;
|
|
270
288
|
} | undefined;
|
|
@@ -356,7 +374,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
356
374
|
[x: string]: any;
|
|
357
375
|
} | undefined;
|
|
358
376
|
oidc_logout?: {
|
|
359
|
-
[x: string]:
|
|
377
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
378
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
379
|
+
backchannel_logout_initiators?: {
|
|
380
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
381
|
+
mode?: "custom" | "all" | undefined;
|
|
382
|
+
selected_initiators?: string[] | undefined;
|
|
383
|
+
} | undefined;
|
|
360
384
|
} | undefined;
|
|
361
385
|
grant_types?: string[] | undefined;
|
|
362
386
|
jwt_configuration?: {
|
|
@@ -375,7 +399,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
375
399
|
addons?: {
|
|
376
400
|
[x: string]: any;
|
|
377
401
|
} | undefined;
|
|
378
|
-
token_endpoint_auth_method?: "
|
|
402
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
379
403
|
client_metadata?: {
|
|
380
404
|
[x: string]: string;
|
|
381
405
|
} | undefined;
|
|
@@ -471,7 +495,15 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
471
495
|
connections?: string[] | undefined;
|
|
472
496
|
allowed_logout_urls?: string[] | undefined;
|
|
473
497
|
session_transfer?: Record<string, any> | undefined;
|
|
474
|
-
oidc_logout?:
|
|
498
|
+
oidc_logout?: {
|
|
499
|
+
[x: string]: unknown;
|
|
500
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
501
|
+
backchannel_logout_initiators?: {
|
|
502
|
+
[x: string]: unknown;
|
|
503
|
+
mode?: "custom" | "all" | undefined;
|
|
504
|
+
selected_initiators?: string[] | undefined;
|
|
505
|
+
} | undefined;
|
|
506
|
+
} | undefined;
|
|
475
507
|
grant_types?: string[] | undefined;
|
|
476
508
|
jwt_configuration?: Record<string, any> | undefined;
|
|
477
509
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -485,7 +517,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
485
517
|
custom_login_page_preview?: string | undefined;
|
|
486
518
|
form_template?: string | undefined;
|
|
487
519
|
addons?: Record<string, any> | undefined;
|
|
488
|
-
token_endpoint_auth_method?: "
|
|
520
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
489
521
|
client_metadata?: Record<string, string> | undefined;
|
|
490
522
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
491
523
|
mobile?: Record<string, any> | undefined;
|
|
@@ -546,7 +578,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
546
578
|
[x: string]: any;
|
|
547
579
|
} | undefined;
|
|
548
580
|
oidc_logout?: {
|
|
549
|
-
[x: string]:
|
|
581
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
582
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
583
|
+
backchannel_logout_initiators?: {
|
|
584
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
585
|
+
mode?: "custom" | "all" | undefined;
|
|
586
|
+
selected_initiators?: string[] | undefined;
|
|
587
|
+
} | undefined;
|
|
550
588
|
} | undefined;
|
|
551
589
|
grant_types?: string[] | undefined;
|
|
552
590
|
jwt_configuration?: {
|
|
@@ -565,7 +603,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
565
603
|
addons?: {
|
|
566
604
|
[x: string]: any;
|
|
567
605
|
} | undefined;
|
|
568
|
-
token_endpoint_auth_method?: "
|
|
606
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
569
607
|
client_metadata?: {
|
|
570
608
|
[x: string]: string;
|
|
571
609
|
} | undefined;
|
|
@@ -640,7 +678,15 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
640
678
|
connections?: string[] | undefined;
|
|
641
679
|
allowed_logout_urls?: string[] | undefined;
|
|
642
680
|
session_transfer?: Record<string, any> | undefined;
|
|
643
|
-
oidc_logout?:
|
|
681
|
+
oidc_logout?: {
|
|
682
|
+
[x: string]: unknown;
|
|
683
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
684
|
+
backchannel_logout_initiators?: {
|
|
685
|
+
[x: string]: unknown;
|
|
686
|
+
mode?: "custom" | "all" | undefined;
|
|
687
|
+
selected_initiators?: string[] | undefined;
|
|
688
|
+
} | undefined;
|
|
689
|
+
} | undefined;
|
|
644
690
|
grant_types?: string[] | undefined;
|
|
645
691
|
jwt_configuration?: Record<string, any> | undefined;
|
|
646
692
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -654,7 +700,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
654
700
|
custom_login_page_preview?: string | undefined;
|
|
655
701
|
form_template?: string | undefined;
|
|
656
702
|
addons?: Record<string, any> | undefined;
|
|
657
|
-
token_endpoint_auth_method?: "
|
|
703
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
658
704
|
client_metadata?: Record<string, string> | undefined;
|
|
659
705
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
660
706
|
mobile?: Record<string, any> | undefined;
|
|
@@ -715,7 +761,13 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
715
761
|
[x: string]: any;
|
|
716
762
|
} | undefined;
|
|
717
763
|
oidc_logout?: {
|
|
718
|
-
[x: string]:
|
|
764
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
765
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
766
|
+
backchannel_logout_initiators?: {
|
|
767
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
768
|
+
mode?: "custom" | "all" | undefined;
|
|
769
|
+
selected_initiators?: string[] | undefined;
|
|
770
|
+
} | undefined;
|
|
719
771
|
} | undefined;
|
|
720
772
|
grant_types?: string[] | undefined;
|
|
721
773
|
jwt_configuration?: {
|
|
@@ -734,7 +786,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
734
786
|
addons?: {
|
|
735
787
|
[x: string]: any;
|
|
736
788
|
} | undefined;
|
|
737
|
-
token_endpoint_auth_method?: "
|
|
789
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
738
790
|
client_metadata?: {
|
|
739
791
|
[x: string]: string;
|
|
740
792
|
} | undefined;
|
|
@@ -856,7 +908,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
856
908
|
active?: boolean | undefined;
|
|
857
909
|
} | undefined;
|
|
858
910
|
signup?: {
|
|
859
|
-
status?: "
|
|
911
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
860
912
|
verification?: {
|
|
861
913
|
active?: boolean | undefined;
|
|
862
914
|
} | undefined;
|
|
@@ -866,14 +918,14 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
866
918
|
} | undefined;
|
|
867
919
|
unique?: boolean | undefined;
|
|
868
920
|
profile_required?: boolean | undefined;
|
|
869
|
-
verification_method?: "
|
|
921
|
+
verification_method?: "code" | "link" | undefined;
|
|
870
922
|
} | undefined;
|
|
871
923
|
username?: {
|
|
872
924
|
identifier?: {
|
|
873
925
|
active?: boolean | undefined;
|
|
874
926
|
} | undefined;
|
|
875
927
|
signup?: {
|
|
876
|
-
status?: "
|
|
928
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
877
929
|
} | undefined;
|
|
878
930
|
validation?: {
|
|
879
931
|
max_length?: number | undefined;
|
|
@@ -890,7 +942,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
890
942
|
active?: boolean | undefined;
|
|
891
943
|
} | undefined;
|
|
892
944
|
signup?: {
|
|
893
|
-
status?: "
|
|
945
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
894
946
|
} | undefined;
|
|
895
947
|
} | undefined;
|
|
896
948
|
} | undefined;
|
|
@@ -1010,7 +1062,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1010
1062
|
active?: boolean | undefined;
|
|
1011
1063
|
} | undefined;
|
|
1012
1064
|
signup?: {
|
|
1013
|
-
status?: "
|
|
1065
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1014
1066
|
verification?: {
|
|
1015
1067
|
active?: boolean | undefined;
|
|
1016
1068
|
} | undefined;
|
|
@@ -1020,14 +1072,14 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1020
1072
|
} | undefined;
|
|
1021
1073
|
unique?: boolean | undefined;
|
|
1022
1074
|
profile_required?: boolean | undefined;
|
|
1023
|
-
verification_method?: "
|
|
1075
|
+
verification_method?: "code" | "link" | undefined;
|
|
1024
1076
|
} | undefined;
|
|
1025
1077
|
username?: {
|
|
1026
1078
|
identifier?: {
|
|
1027
1079
|
active?: boolean | undefined;
|
|
1028
1080
|
} | undefined;
|
|
1029
1081
|
signup?: {
|
|
1030
|
-
status?: "
|
|
1082
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1031
1083
|
} | undefined;
|
|
1032
1084
|
validation?: {
|
|
1033
1085
|
max_length?: number | undefined;
|
|
@@ -1044,7 +1096,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1044
1096
|
active?: boolean | undefined;
|
|
1045
1097
|
} | undefined;
|
|
1046
1098
|
signup?: {
|
|
1047
|
-
status?: "
|
|
1099
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1048
1100
|
} | undefined;
|
|
1049
1101
|
} | undefined;
|
|
1050
1102
|
} | undefined;
|
|
@@ -82,7 +82,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
82
82
|
active?: boolean | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
signup?: {
|
|
85
|
-
status?: "
|
|
85
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
86
86
|
verification?: {
|
|
87
87
|
active?: boolean | undefined;
|
|
88
88
|
} | undefined;
|
|
@@ -92,14 +92,14 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
92
92
|
} | undefined;
|
|
93
93
|
unique?: boolean | undefined;
|
|
94
94
|
profile_required?: boolean | undefined;
|
|
95
|
-
verification_method?: "
|
|
95
|
+
verification_method?: "code" | "link" | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
username?: {
|
|
98
98
|
identifier?: {
|
|
99
99
|
active?: boolean | undefined;
|
|
100
100
|
} | undefined;
|
|
101
101
|
signup?: {
|
|
102
|
-
status?: "
|
|
102
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
103
103
|
} | undefined;
|
|
104
104
|
validation?: {
|
|
105
105
|
max_length?: number | undefined;
|
|
@@ -116,7 +116,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
116
116
|
active?: boolean | undefined;
|
|
117
117
|
} | undefined;
|
|
118
118
|
signup?: {
|
|
119
|
-
status?: "
|
|
119
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
120
120
|
} | undefined;
|
|
121
121
|
} | undefined;
|
|
122
122
|
} | undefined;
|
|
@@ -216,7 +216,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
216
216
|
active?: boolean | undefined;
|
|
217
217
|
} | undefined;
|
|
218
218
|
signup?: {
|
|
219
|
-
status?: "
|
|
219
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
220
220
|
verification?: {
|
|
221
221
|
active?: boolean | undefined;
|
|
222
222
|
} | undefined;
|
|
@@ -226,14 +226,14 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
226
226
|
} | undefined;
|
|
227
227
|
unique?: boolean | undefined;
|
|
228
228
|
profile_required?: boolean | undefined;
|
|
229
|
-
verification_method?: "
|
|
229
|
+
verification_method?: "code" | "link" | undefined;
|
|
230
230
|
} | undefined;
|
|
231
231
|
username?: {
|
|
232
232
|
identifier?: {
|
|
233
233
|
active?: boolean | undefined;
|
|
234
234
|
} | undefined;
|
|
235
235
|
signup?: {
|
|
236
|
-
status?: "
|
|
236
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
237
237
|
} | undefined;
|
|
238
238
|
validation?: {
|
|
239
239
|
max_length?: number | undefined;
|
|
@@ -250,7 +250,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
250
250
|
active?: boolean | undefined;
|
|
251
251
|
} | undefined;
|
|
252
252
|
signup?: {
|
|
253
|
-
status?: "
|
|
253
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
254
254
|
} | undefined;
|
|
255
255
|
} | undefined;
|
|
256
256
|
} | undefined;
|
|
@@ -366,7 +366,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
366
366
|
active?: boolean | undefined;
|
|
367
367
|
} | undefined;
|
|
368
368
|
signup?: {
|
|
369
|
-
status?: "
|
|
369
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
370
370
|
verification?: {
|
|
371
371
|
active?: boolean | undefined;
|
|
372
372
|
} | undefined;
|
|
@@ -376,14 +376,14 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
376
376
|
} | undefined;
|
|
377
377
|
unique?: boolean | undefined;
|
|
378
378
|
profile_required?: boolean | undefined;
|
|
379
|
-
verification_method?: "
|
|
379
|
+
verification_method?: "code" | "link" | undefined;
|
|
380
380
|
} | undefined;
|
|
381
381
|
username?: {
|
|
382
382
|
identifier?: {
|
|
383
383
|
active?: boolean | undefined;
|
|
384
384
|
} | undefined;
|
|
385
385
|
signup?: {
|
|
386
|
-
status?: "
|
|
386
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
387
387
|
} | undefined;
|
|
388
388
|
validation?: {
|
|
389
389
|
max_length?: number | undefined;
|
|
@@ -400,7 +400,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
400
400
|
active?: boolean | undefined;
|
|
401
401
|
} | undefined;
|
|
402
402
|
signup?: {
|
|
403
|
-
status?: "
|
|
403
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
404
404
|
} | undefined;
|
|
405
405
|
} | undefined;
|
|
406
406
|
} | undefined;
|
|
@@ -545,7 +545,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
545
545
|
active?: boolean | undefined;
|
|
546
546
|
} | undefined;
|
|
547
547
|
signup?: {
|
|
548
|
-
status?: "
|
|
548
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
549
549
|
verification?: {
|
|
550
550
|
active?: boolean | undefined;
|
|
551
551
|
} | undefined;
|
|
@@ -555,14 +555,14 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
555
555
|
} | undefined;
|
|
556
556
|
unique?: boolean | undefined;
|
|
557
557
|
profile_required?: boolean | undefined;
|
|
558
|
-
verification_method?: "
|
|
558
|
+
verification_method?: "code" | "link" | undefined;
|
|
559
559
|
} | undefined;
|
|
560
560
|
username?: {
|
|
561
561
|
identifier?: {
|
|
562
562
|
active?: boolean | undefined;
|
|
563
563
|
} | undefined;
|
|
564
564
|
signup?: {
|
|
565
|
-
status?: "
|
|
565
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
566
566
|
} | undefined;
|
|
567
567
|
validation?: {
|
|
568
568
|
max_length?: number | undefined;
|
|
@@ -579,7 +579,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
579
579
|
active?: boolean | undefined;
|
|
580
580
|
} | undefined;
|
|
581
581
|
signup?: {
|
|
582
|
-
status?: "
|
|
582
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
583
583
|
} | undefined;
|
|
584
584
|
} | undefined;
|
|
585
585
|
} | undefined;
|
|
@@ -703,7 +703,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
703
703
|
active?: boolean | undefined;
|
|
704
704
|
} | undefined;
|
|
705
705
|
signup?: {
|
|
706
|
-
status?: "
|
|
706
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
707
707
|
verification?: {
|
|
708
708
|
active?: boolean | undefined;
|
|
709
709
|
} | undefined;
|
|
@@ -713,14 +713,14 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
713
713
|
} | undefined;
|
|
714
714
|
unique?: boolean | undefined;
|
|
715
715
|
profile_required?: boolean | undefined;
|
|
716
|
-
verification_method?: "
|
|
716
|
+
verification_method?: "code" | "link" | undefined;
|
|
717
717
|
} | undefined;
|
|
718
718
|
username?: {
|
|
719
719
|
identifier?: {
|
|
720
720
|
active?: boolean | undefined;
|
|
721
721
|
} | undefined;
|
|
722
722
|
signup?: {
|
|
723
|
-
status?: "
|
|
723
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
724
724
|
} | undefined;
|
|
725
725
|
validation?: {
|
|
726
726
|
max_length?: number | undefined;
|
|
@@ -737,7 +737,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
737
737
|
active?: boolean | undefined;
|
|
738
738
|
} | undefined;
|
|
739
739
|
signup?: {
|
|
740
|
-
status?: "
|
|
740
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
741
741
|
} | undefined;
|
|
742
742
|
} | undefined;
|
|
743
743
|
} | undefined;
|
|
@@ -853,7 +853,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
853
853
|
};
|
|
854
854
|
} | {
|
|
855
855
|
mode: "inline";
|
|
856
|
-
status: "
|
|
856
|
+
status: "error" | "success";
|
|
857
857
|
connection_id: string;
|
|
858
858
|
connection_name: string;
|
|
859
859
|
strategy: string;
|
|
@@ -28,7 +28,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
28
28
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
29
29
|
custom_domain_id: string;
|
|
30
30
|
primary: boolean;
|
|
31
|
-
status: "
|
|
31
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
32
32
|
verification_method?: "txt" | undefined;
|
|
33
33
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
34
34
|
domain_metadata?: {
|
|
@@ -69,7 +69,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
69
69
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
70
70
|
custom_domain_id: string;
|
|
71
71
|
primary: boolean;
|
|
72
|
-
status: "
|
|
72
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
73
73
|
verification_method?: "txt" | undefined;
|
|
74
74
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
75
75
|
domain_metadata?: {
|
|
@@ -133,7 +133,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
133
133
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
134
134
|
custom_domain_id: string;
|
|
135
135
|
primary: boolean;
|
|
136
|
-
status: "
|
|
136
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
137
137
|
verification_method?: "txt" | undefined;
|
|
138
138
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
139
139
|
domain_metadata?: {
|
|
@@ -180,7 +180,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
180
180
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
181
181
|
custom_domain_id: string;
|
|
182
182
|
primary: boolean;
|
|
183
|
-
status: "
|
|
183
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
184
184
|
verification_method?: "txt" | undefined;
|
|
185
185
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
186
186
|
domain_metadata?: {
|
|
@@ -226,7 +226,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
226
226
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
227
227
|
custom_domain_id: string;
|
|
228
228
|
primary: boolean;
|
|
229
|
-
status: "
|
|
229
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
230
230
|
verification_method?: "txt" | undefined;
|
|
231
231
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
232
232
|
domain_metadata?: {
|
|
@@ -267,7 +267,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
267
267
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
268
268
|
custom_domain_id: string;
|
|
269
269
|
primary: boolean;
|
|
270
|
-
status: "
|
|
270
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
271
271
|
verification_method?: "txt" | undefined;
|
|
272
272
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
273
273
|
domain_metadata?: {
|