authhero 9.7.0 → 9.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +132 -132
- package/dist/authhero.d.ts +361 -249
- package/dist/authhero.mjs +11713 -11450
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +31 -8
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
- package/dist/types/helpers/signing-keys.d.ts +11 -0
- package/dist/types/index.d.ts +351 -249
- package/dist/types/routes/auth-api/index.d.ts +32 -12
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/token.d.ts +20 -0
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +312 -230
- package/dist/types/routes/management-api/keys.d.ts +92 -10
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +18 -18
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- 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/state-machines/login-session.d.ts +1 -1
- package/dist/types/utils/encryption.d.ts +51 -0
- package/package.json +6 -6
|
@@ -737,18 +737,18 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
737
737
|
send: "code" | "link";
|
|
738
738
|
authParams: {
|
|
739
739
|
username?: string | undefined;
|
|
740
|
-
organization?: string | undefined;
|
|
741
|
-
audience?: string | undefined;
|
|
742
740
|
scope?: string | undefined;
|
|
741
|
+
audience?: string | undefined;
|
|
742
|
+
state?: string | undefined;
|
|
743
|
+
act_as?: string | undefined;
|
|
743
744
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
744
745
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
745
|
-
state?: string | undefined;
|
|
746
|
-
code_challenge?: string | undefined;
|
|
747
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
748
746
|
redirect_uri?: string | undefined;
|
|
747
|
+
organization?: string | undefined;
|
|
749
748
|
nonce?: string | undefined;
|
|
750
|
-
act_as?: string | undefined;
|
|
751
749
|
prompt?: string | undefined;
|
|
750
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
751
|
+
code_challenge?: string | undefined;
|
|
752
752
|
ui_locales?: string | undefined;
|
|
753
753
|
max_age?: number | undefined;
|
|
754
754
|
acr_values?: string | undefined;
|
|
@@ -773,18 +773,18 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
773
773
|
send: "code" | "link";
|
|
774
774
|
authParams: {
|
|
775
775
|
username?: string | undefined;
|
|
776
|
-
organization?: string | undefined;
|
|
777
|
-
audience?: string | undefined;
|
|
778
776
|
scope?: string | undefined;
|
|
777
|
+
audience?: string | undefined;
|
|
778
|
+
state?: string | undefined;
|
|
779
|
+
act_as?: string | undefined;
|
|
779
780
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
780
781
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
781
|
-
state?: string | undefined;
|
|
782
|
-
code_challenge?: string | undefined;
|
|
783
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
784
782
|
redirect_uri?: string | undefined;
|
|
783
|
+
organization?: string | undefined;
|
|
785
784
|
nonce?: string | undefined;
|
|
786
|
-
act_as?: string | undefined;
|
|
787
785
|
prompt?: string | undefined;
|
|
786
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
787
|
+
code_challenge?: string | undefined;
|
|
788
788
|
ui_locales?: string | undefined;
|
|
789
789
|
max_age?: number | undefined;
|
|
790
790
|
acr_values?: string | undefined;
|
|
@@ -1015,6 +1015,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1015
1015
|
username: string;
|
|
1016
1016
|
otp: string;
|
|
1017
1017
|
realm: "email" | "sms";
|
|
1018
|
+
scope?: string | undefined;
|
|
1019
|
+
audience?: string | undefined;
|
|
1018
1020
|
} | {
|
|
1019
1021
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1020
1022
|
subject_token: string;
|
|
@@ -1062,6 +1064,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1062
1064
|
username: string;
|
|
1063
1065
|
otp: string;
|
|
1064
1066
|
realm: "email" | "sms";
|
|
1067
|
+
scope?: string | undefined;
|
|
1068
|
+
audience?: string | undefined;
|
|
1065
1069
|
} | {
|
|
1066
1070
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1067
1071
|
subject_token: string;
|
|
@@ -1114,6 +1118,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1114
1118
|
username: string;
|
|
1115
1119
|
otp: string;
|
|
1116
1120
|
realm: "email" | "sms";
|
|
1121
|
+
scope?: string | undefined;
|
|
1122
|
+
audience?: string | undefined;
|
|
1117
1123
|
} | {
|
|
1118
1124
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1119
1125
|
subject_token: string;
|
|
@@ -1161,6 +1167,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1161
1167
|
username: string;
|
|
1162
1168
|
otp: string;
|
|
1163
1169
|
realm: "email" | "sms";
|
|
1170
|
+
scope?: string | undefined;
|
|
1171
|
+
audience?: string | undefined;
|
|
1164
1172
|
} | {
|
|
1165
1173
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1166
1174
|
subject_token: string;
|
|
@@ -1221,6 +1229,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1221
1229
|
username: string;
|
|
1222
1230
|
otp: string;
|
|
1223
1231
|
realm: "email" | "sms";
|
|
1232
|
+
scope?: string | undefined;
|
|
1233
|
+
audience?: string | undefined;
|
|
1224
1234
|
} | {
|
|
1225
1235
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1226
1236
|
subject_token: string;
|
|
@@ -1268,6 +1278,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1268
1278
|
username: string;
|
|
1269
1279
|
otp: string;
|
|
1270
1280
|
realm: "email" | "sms";
|
|
1281
|
+
scope?: string | undefined;
|
|
1282
|
+
audience?: string | undefined;
|
|
1271
1283
|
} | {
|
|
1272
1284
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1273
1285
|
subject_token: string;
|
|
@@ -1323,6 +1335,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1323
1335
|
username: string;
|
|
1324
1336
|
otp: string;
|
|
1325
1337
|
realm: "email" | "sms";
|
|
1338
|
+
scope?: string | undefined;
|
|
1339
|
+
audience?: string | undefined;
|
|
1326
1340
|
} | {
|
|
1327
1341
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1328
1342
|
subject_token: string;
|
|
@@ -1370,6 +1384,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1370
1384
|
username: string;
|
|
1371
1385
|
otp: string;
|
|
1372
1386
|
realm: "email" | "sms";
|
|
1387
|
+
scope?: string | undefined;
|
|
1388
|
+
audience?: string | undefined;
|
|
1373
1389
|
} | {
|
|
1374
1390
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1375
1391
|
subject_token: string;
|
|
@@ -1425,6 +1441,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1425
1441
|
username: string;
|
|
1426
1442
|
otp: string;
|
|
1427
1443
|
realm: "email" | "sms";
|
|
1444
|
+
scope?: string | undefined;
|
|
1445
|
+
audience?: string | undefined;
|
|
1428
1446
|
} | {
|
|
1429
1447
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1430
1448
|
subject_token: string;
|
|
@@ -1472,6 +1490,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1472
1490
|
username: string;
|
|
1473
1491
|
otp: string;
|
|
1474
1492
|
realm: "email" | "sms";
|
|
1493
|
+
scope?: string | undefined;
|
|
1494
|
+
audience?: string | undefined;
|
|
1475
1495
|
} | {
|
|
1476
1496
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
1477
1497
|
subject_token: string;
|
|
@@ -15,18 +15,18 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
15
15
|
send: "code" | "link";
|
|
16
16
|
authParams: {
|
|
17
17
|
username?: string | undefined;
|
|
18
|
-
organization?: string | undefined;
|
|
19
|
-
audience?: string | undefined;
|
|
20
18
|
scope?: string | undefined;
|
|
19
|
+
audience?: string | undefined;
|
|
20
|
+
state?: string | undefined;
|
|
21
|
+
act_as?: string | undefined;
|
|
21
22
|
response_type?: AuthorizationResponseType | undefined;
|
|
22
23
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
23
|
-
state?: string | undefined;
|
|
24
|
-
code_challenge?: string | undefined;
|
|
25
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
26
24
|
redirect_uri?: string | undefined;
|
|
25
|
+
organization?: string | undefined;
|
|
27
26
|
nonce?: string | undefined;
|
|
28
|
-
act_as?: string | undefined;
|
|
29
27
|
prompt?: string | undefined;
|
|
28
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
29
|
+
code_challenge?: string | undefined;
|
|
30
30
|
ui_locales?: string | undefined;
|
|
31
31
|
max_age?: number | undefined;
|
|
32
32
|
acr_values?: string | undefined;
|
|
@@ -51,18 +51,18 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
51
51
|
send: "code" | "link";
|
|
52
52
|
authParams: {
|
|
53
53
|
username?: string | undefined;
|
|
54
|
-
organization?: string | undefined;
|
|
55
|
-
audience?: string | undefined;
|
|
56
54
|
scope?: string | undefined;
|
|
55
|
+
audience?: string | undefined;
|
|
56
|
+
state?: string | undefined;
|
|
57
|
+
act_as?: string | undefined;
|
|
57
58
|
response_type?: AuthorizationResponseType | undefined;
|
|
58
59
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
59
|
-
state?: string | undefined;
|
|
60
|
-
code_challenge?: string | undefined;
|
|
61
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
62
60
|
redirect_uri?: string | undefined;
|
|
61
|
+
organization?: string | undefined;
|
|
63
62
|
nonce?: string | undefined;
|
|
64
|
-
act_as?: string | undefined;
|
|
65
63
|
prompt?: string | undefined;
|
|
64
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
65
|
+
code_challenge?: string | undefined;
|
|
66
66
|
ui_locales?: string | undefined;
|
|
67
67
|
max_age?: number | undefined;
|
|
68
68
|
acr_values?: string | undefined;
|
|
@@ -41,6 +41,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
41
41
|
username: string;
|
|
42
42
|
otp: string;
|
|
43
43
|
realm: "email" | "sms";
|
|
44
|
+
scope?: string | undefined;
|
|
45
|
+
audience?: string | undefined;
|
|
44
46
|
} | {
|
|
45
47
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
46
48
|
subject_token: string;
|
|
@@ -88,6 +90,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
88
90
|
username: string;
|
|
89
91
|
otp: string;
|
|
90
92
|
realm: "email" | "sms";
|
|
93
|
+
scope?: string | undefined;
|
|
94
|
+
audience?: string | undefined;
|
|
91
95
|
} | {
|
|
92
96
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
93
97
|
subject_token: string;
|
|
@@ -140,6 +144,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
140
144
|
username: string;
|
|
141
145
|
otp: string;
|
|
142
146
|
realm: "email" | "sms";
|
|
147
|
+
scope?: string | undefined;
|
|
148
|
+
audience?: string | undefined;
|
|
143
149
|
} | {
|
|
144
150
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
145
151
|
subject_token: string;
|
|
@@ -187,6 +193,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
187
193
|
username: string;
|
|
188
194
|
otp: string;
|
|
189
195
|
realm: "email" | "sms";
|
|
196
|
+
scope?: string | undefined;
|
|
197
|
+
audience?: string | undefined;
|
|
190
198
|
} | {
|
|
191
199
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
192
200
|
subject_token: string;
|
|
@@ -247,6 +255,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
247
255
|
username: string;
|
|
248
256
|
otp: string;
|
|
249
257
|
realm: "email" | "sms";
|
|
258
|
+
scope?: string | undefined;
|
|
259
|
+
audience?: string | undefined;
|
|
250
260
|
} | {
|
|
251
261
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
252
262
|
subject_token: string;
|
|
@@ -294,6 +304,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
294
304
|
username: string;
|
|
295
305
|
otp: string;
|
|
296
306
|
realm: "email" | "sms";
|
|
307
|
+
scope?: string | undefined;
|
|
308
|
+
audience?: string | undefined;
|
|
297
309
|
} | {
|
|
298
310
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
299
311
|
subject_token: string;
|
|
@@ -349,6 +361,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
349
361
|
username: string;
|
|
350
362
|
otp: string;
|
|
351
363
|
realm: "email" | "sms";
|
|
364
|
+
scope?: string | undefined;
|
|
365
|
+
audience?: string | undefined;
|
|
352
366
|
} | {
|
|
353
367
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
354
368
|
subject_token: string;
|
|
@@ -396,6 +410,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
396
410
|
username: string;
|
|
397
411
|
otp: string;
|
|
398
412
|
realm: "email" | "sms";
|
|
413
|
+
scope?: string | undefined;
|
|
414
|
+
audience?: string | undefined;
|
|
399
415
|
} | {
|
|
400
416
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
401
417
|
subject_token: string;
|
|
@@ -451,6 +467,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
451
467
|
username: string;
|
|
452
468
|
otp: string;
|
|
453
469
|
realm: "email" | "sms";
|
|
470
|
+
scope?: string | undefined;
|
|
471
|
+
audience?: string | undefined;
|
|
454
472
|
} | {
|
|
455
473
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
456
474
|
subject_token: string;
|
|
@@ -498,6 +516,8 @@ export declare const tokenRoutes: OpenAPIHono<{
|
|
|
498
516
|
username: string;
|
|
499
517
|
otp: string;
|
|
500
518
|
realm: "email" | "sms";
|
|
519
|
+
scope?: string | undefined;
|
|
520
|
+
audience?: string | undefined;
|
|
501
521
|
} | {
|
|
502
522
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
503
523
|
subject_token: string;
|
|
@@ -912,7 +912,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
912
912
|
active?: boolean | undefined;
|
|
913
913
|
} | undefined;
|
|
914
914
|
signup?: {
|
|
915
|
-
status?: "
|
|
915
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
916
916
|
verification?: {
|
|
917
917
|
active?: boolean | undefined;
|
|
918
918
|
} | undefined;
|
|
@@ -929,7 +929,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
929
929
|
active?: boolean | undefined;
|
|
930
930
|
} | undefined;
|
|
931
931
|
signup?: {
|
|
932
|
-
status?: "
|
|
932
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
933
933
|
} | undefined;
|
|
934
934
|
validation?: {
|
|
935
935
|
max_length?: number | undefined;
|
|
@@ -946,7 +946,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
946
946
|
active?: boolean | undefined;
|
|
947
947
|
} | undefined;
|
|
948
948
|
signup?: {
|
|
949
|
-
status?: "
|
|
949
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
950
950
|
} | undefined;
|
|
951
951
|
} | undefined;
|
|
952
952
|
} | undefined;
|
|
@@ -1070,7 +1070,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1070
1070
|
active?: boolean | undefined;
|
|
1071
1071
|
} | undefined;
|
|
1072
1072
|
signup?: {
|
|
1073
|
-
status?: "
|
|
1073
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1074
1074
|
verification?: {
|
|
1075
1075
|
active?: boolean | undefined;
|
|
1076
1076
|
} | undefined;
|
|
@@ -1087,7 +1087,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1087
1087
|
active?: boolean | undefined;
|
|
1088
1088
|
} | undefined;
|
|
1089
1089
|
signup?: {
|
|
1090
|
-
status?: "
|
|
1090
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1091
1091
|
} | undefined;
|
|
1092
1092
|
validation?: {
|
|
1093
1093
|
max_length?: number | undefined;
|
|
@@ -1104,7 +1104,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1104
1104
|
active?: boolean | undefined;
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
signup?: {
|
|
1107
|
-
status?: "
|
|
1107
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1108
1108
|
} | undefined;
|
|
1109
1109
|
} | undefined;
|
|
1110
1110
|
} | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
86
86
|
active?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
signup?: {
|
|
89
|
-
status?: "
|
|
89
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
90
90
|
verification?: {
|
|
91
91
|
active?: boolean | undefined;
|
|
92
92
|
} | undefined;
|
|
@@ -103,7 +103,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
103
103
|
active?: boolean | undefined;
|
|
104
104
|
} | undefined;
|
|
105
105
|
signup?: {
|
|
106
|
-
status?: "
|
|
106
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
107
107
|
} | undefined;
|
|
108
108
|
validation?: {
|
|
109
109
|
max_length?: number | undefined;
|
|
@@ -120,7 +120,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
120
120
|
active?: boolean | undefined;
|
|
121
121
|
} | undefined;
|
|
122
122
|
signup?: {
|
|
123
|
-
status?: "
|
|
123
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
124
124
|
} | undefined;
|
|
125
125
|
} | undefined;
|
|
126
126
|
} | undefined;
|
|
@@ -224,7 +224,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
224
224
|
active?: boolean | undefined;
|
|
225
225
|
} | undefined;
|
|
226
226
|
signup?: {
|
|
227
|
-
status?: "
|
|
227
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
228
228
|
verification?: {
|
|
229
229
|
active?: boolean | undefined;
|
|
230
230
|
} | undefined;
|
|
@@ -241,7 +241,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
241
241
|
active?: boolean | undefined;
|
|
242
242
|
} | undefined;
|
|
243
243
|
signup?: {
|
|
244
|
-
status?: "
|
|
244
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
245
245
|
} | undefined;
|
|
246
246
|
validation?: {
|
|
247
247
|
max_length?: number | undefined;
|
|
@@ -258,7 +258,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
258
258
|
active?: boolean | undefined;
|
|
259
259
|
} | undefined;
|
|
260
260
|
signup?: {
|
|
261
|
-
status?: "
|
|
261
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
262
262
|
} | undefined;
|
|
263
263
|
} | undefined;
|
|
264
264
|
} | undefined;
|
|
@@ -378,7 +378,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
378
378
|
active?: boolean | undefined;
|
|
379
379
|
} | undefined;
|
|
380
380
|
signup?: {
|
|
381
|
-
status?: "
|
|
381
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
382
382
|
verification?: {
|
|
383
383
|
active?: boolean | undefined;
|
|
384
384
|
} | undefined;
|
|
@@ -395,7 +395,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
395
395
|
active?: boolean | undefined;
|
|
396
396
|
} | undefined;
|
|
397
397
|
signup?: {
|
|
398
|
-
status?: "
|
|
398
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
399
399
|
} | undefined;
|
|
400
400
|
validation?: {
|
|
401
401
|
max_length?: number | undefined;
|
|
@@ -412,7 +412,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
412
412
|
active?: boolean | undefined;
|
|
413
413
|
} | undefined;
|
|
414
414
|
signup?: {
|
|
415
|
-
status?: "
|
|
415
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
416
416
|
} | undefined;
|
|
417
417
|
} | undefined;
|
|
418
418
|
} | undefined;
|
|
@@ -561,7 +561,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
561
561
|
active?: boolean | undefined;
|
|
562
562
|
} | undefined;
|
|
563
563
|
signup?: {
|
|
564
|
-
status?: "
|
|
564
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
565
565
|
verification?: {
|
|
566
566
|
active?: boolean | undefined;
|
|
567
567
|
} | undefined;
|
|
@@ -578,7 +578,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
578
578
|
active?: boolean | undefined;
|
|
579
579
|
} | undefined;
|
|
580
580
|
signup?: {
|
|
581
|
-
status?: "
|
|
581
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
582
582
|
} | undefined;
|
|
583
583
|
validation?: {
|
|
584
584
|
max_length?: number | undefined;
|
|
@@ -595,7 +595,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
595
595
|
active?: boolean | undefined;
|
|
596
596
|
} | undefined;
|
|
597
597
|
signup?: {
|
|
598
|
-
status?: "
|
|
598
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
599
599
|
} | undefined;
|
|
600
600
|
} | undefined;
|
|
601
601
|
} | undefined;
|
|
@@ -723,7 +723,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
723
723
|
active?: boolean | undefined;
|
|
724
724
|
} | undefined;
|
|
725
725
|
signup?: {
|
|
726
|
-
status?: "
|
|
726
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
727
727
|
verification?: {
|
|
728
728
|
active?: boolean | undefined;
|
|
729
729
|
} | undefined;
|
|
@@ -740,7 +740,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
740
740
|
active?: boolean | undefined;
|
|
741
741
|
} | undefined;
|
|
742
742
|
signup?: {
|
|
743
|
-
status?: "
|
|
743
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
744
744
|
} | undefined;
|
|
745
745
|
validation?: {
|
|
746
746
|
max_length?: number | undefined;
|
|
@@ -757,7 +757,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
757
757
|
active?: boolean | undefined;
|
|
758
758
|
} | undefined;
|
|
759
759
|
signup?: {
|
|
760
|
-
status?: "
|
|
760
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
761
761
|
} | undefined;
|
|
762
762
|
} | undefined;
|
|
763
763
|
} | undefined;
|
|
@@ -873,7 +873,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
873
873
|
};
|
|
874
874
|
} | {
|
|
875
875
|
mode: "inline";
|
|
876
|
-
status: "
|
|
876
|
+
status: "success" | "error";
|
|
877
877
|
connection_id: string;
|
|
878
878
|
connection_name: string;
|
|
879
879
|
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?: {
|