@authhero/adapter-interfaces 0.101.0 → 0.103.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/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +120 -64
- package/dist/adapter-interfaces.mjs +135 -114
- package/package.json +1 -1
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
2
|
const Be = e.object({
|
|
3
|
+
page: e.string().min(0).optional().default("0").transform((t) => parseInt(t, 10)).openapi({
|
|
4
|
+
description: "The page number where 0 is the first page"
|
|
5
|
+
}),
|
|
6
|
+
per_page: e.string().min(1).optional().default("10").transform((t) => parseInt(t, 10)).openapi({
|
|
7
|
+
description: "The number of items per page"
|
|
8
|
+
}),
|
|
9
|
+
include_totals: e.string().optional().default("false").transform((t) => t === "true").openapi({
|
|
10
|
+
description: "If the total number of items should be included in the response"
|
|
11
|
+
}),
|
|
12
|
+
sort: e.string().regex(/^.+:(-1|1)$/).optional().openapi({
|
|
13
|
+
description: "A property that should have the format 'string:-1' or 'string:1'"
|
|
14
|
+
}),
|
|
15
|
+
q: e.string().optional().openapi({
|
|
16
|
+
description: "A lucene query string used to filter the results"
|
|
17
|
+
})
|
|
18
|
+
}), We = e.object({
|
|
3
19
|
start: e.number(),
|
|
4
20
|
limit: e.number(),
|
|
5
21
|
length: e.number()
|
|
@@ -45,18 +61,19 @@ const Be = e.object({
|
|
|
45
61
|
last_ip: e.string().optional(),
|
|
46
62
|
last_login: e.string().optional(),
|
|
47
63
|
user_id: e.string().optional(),
|
|
48
|
-
provider: e.string().
|
|
49
|
-
connection: e.string()
|
|
64
|
+
provider: e.string().optional(),
|
|
65
|
+
connection: e.string(),
|
|
50
66
|
is_social: e.boolean().optional()
|
|
51
67
|
}), A = e.object({
|
|
52
68
|
...S.shape,
|
|
53
69
|
...n.shape,
|
|
54
70
|
user_id: e.string(),
|
|
71
|
+
provider: e.string(),
|
|
55
72
|
is_social: e.boolean(),
|
|
56
73
|
email: e.string().optional(),
|
|
57
74
|
login_count: e.number().default(0),
|
|
58
75
|
identities: e.array(f).optional()
|
|
59
|
-
}),
|
|
76
|
+
}), Xe = A, Ve = _.extend({
|
|
60
77
|
login_count: e.number(),
|
|
61
78
|
multifactor: e.array(e.string()).optional(),
|
|
62
79
|
last_ip: e.string().optional(),
|
|
@@ -240,7 +257,7 @@ const O = e.object({
|
|
|
240
257
|
created_at: e.string(),
|
|
241
258
|
updated_at: e.string(),
|
|
242
259
|
...O.shape
|
|
243
|
-
}),
|
|
260
|
+
}), y = e.object({
|
|
244
261
|
client_id: e.string().min(1).openapi({
|
|
245
262
|
description: "ID of the client."
|
|
246
263
|
}),
|
|
@@ -265,14 +282,14 @@ const O = e.object({
|
|
|
265
282
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
266
283
|
description: "Types of authorization_details allowed for this client grant. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement."
|
|
267
284
|
})
|
|
268
|
-
}),
|
|
285
|
+
}), N = e.object({
|
|
269
286
|
id: e.string().openapi({
|
|
270
287
|
description: "ID of the client grant."
|
|
271
288
|
}),
|
|
272
|
-
...
|
|
289
|
+
...y.shape,
|
|
273
290
|
created_at: e.string().optional(),
|
|
274
291
|
updated_at: e.string().optional()
|
|
275
|
-
}),
|
|
292
|
+
}), qe = e.array(N), a = e.object({
|
|
276
293
|
x: e.number(),
|
|
277
294
|
y: e.number()
|
|
278
295
|
});
|
|
@@ -329,7 +346,7 @@ const r = e.object({
|
|
|
329
346
|
config: e.object({
|
|
330
347
|
text: e.string()
|
|
331
348
|
}).passthrough()
|
|
332
|
-
}),
|
|
349
|
+
}), w = r.extend({
|
|
333
350
|
category: e.literal(
|
|
334
351
|
"FIELD"
|
|
335
352
|
/* FIELD */
|
|
@@ -382,7 +399,7 @@ const r = e.object({
|
|
|
382
399
|
label: e.string().optional(),
|
|
383
400
|
placeholder: e.string().optional()
|
|
384
401
|
}).passthrough()
|
|
385
|
-
}),
|
|
402
|
+
}), j = e.object({
|
|
386
403
|
id: e.string(),
|
|
387
404
|
category: e.string(),
|
|
388
405
|
type: e.string()
|
|
@@ -390,8 +407,8 @@ const r = e.object({
|
|
|
390
407
|
R,
|
|
391
408
|
L,
|
|
392
409
|
D,
|
|
393
|
-
|
|
394
|
-
|
|
410
|
+
w,
|
|
411
|
+
j
|
|
395
412
|
]);
|
|
396
413
|
var U = /* @__PURE__ */ ((t) => (t.STEP = "STEP", t.FLOW = "FLOW", t.CONDITION = "CONDITION", t.ACTION = "ACTION", t))(U || {});
|
|
397
414
|
const F = e.object({
|
|
@@ -422,14 +439,14 @@ const F = e.object({
|
|
|
422
439
|
id: e.string(),
|
|
423
440
|
type: e.string(),
|
|
424
441
|
coordinates: a
|
|
425
|
-
}).passthrough(),
|
|
442
|
+
}).passthrough(), x = e.union([
|
|
426
443
|
F,
|
|
427
444
|
v,
|
|
428
445
|
P
|
|
429
|
-
]),
|
|
446
|
+
]), H = e.object({
|
|
430
447
|
next_node: e.string(),
|
|
431
448
|
coordinates: a
|
|
432
|
-
}).passthrough(),
|
|
449
|
+
}).passthrough(), M = e.object({
|
|
433
450
|
resume_flow: e.boolean().optional(),
|
|
434
451
|
coordinates: a
|
|
435
452
|
}).passthrough(), G = e.object({
|
|
@@ -438,16 +455,16 @@ const F = e.object({
|
|
|
438
455
|
languages: e.object({
|
|
439
456
|
primary: e.string()
|
|
440
457
|
}).passthrough(),
|
|
441
|
-
nodes: e.array(
|
|
442
|
-
start:
|
|
443
|
-
ending:
|
|
458
|
+
nodes: e.array(x),
|
|
459
|
+
start: H,
|
|
460
|
+
ending: M,
|
|
444
461
|
created_at: e.string(),
|
|
445
462
|
updated_at: e.string(),
|
|
446
463
|
links: e.object({
|
|
447
464
|
sdkSrc: e.string().optional(),
|
|
448
465
|
sdk_src: e.string().optional()
|
|
449
466
|
}).passthrough()
|
|
450
|
-
}).passthrough(),
|
|
467
|
+
}).passthrough(), Ye = G.omit({
|
|
451
468
|
id: !0,
|
|
452
469
|
created_at: !0,
|
|
453
470
|
updated_at: !0
|
|
@@ -471,7 +488,7 @@ const K = e.object({
|
|
|
471
488
|
ui_locales: e.string().optional(),
|
|
472
489
|
// The following fields are not available in Auth0
|
|
473
490
|
vendor_id: e.string().optional()
|
|
474
|
-
}),
|
|
491
|
+
}), Qe = e.object({
|
|
475
492
|
colors: e.object({
|
|
476
493
|
primary: e.string(),
|
|
477
494
|
page_background: e.object({
|
|
@@ -505,15 +522,20 @@ const K = e.object({
|
|
|
505
522
|
provider: e.string().optional(),
|
|
506
523
|
from: e.string().optional(),
|
|
507
524
|
twilio_sid: e.string().optional(),
|
|
508
|
-
twilio_token: e.string().optional()
|
|
525
|
+
twilio_token: e.string().optional(),
|
|
526
|
+
icon_url: e.string().optional()
|
|
509
527
|
}), B = e.object({
|
|
510
528
|
id: e.string().optional(),
|
|
511
529
|
name: e.string(),
|
|
530
|
+
display_name: e.string().optional(),
|
|
512
531
|
strategy: e.string(),
|
|
513
532
|
options: z.default({}),
|
|
514
533
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
515
534
|
response_type: e.custom().optional(),
|
|
516
|
-
response_mode: e.custom().optional()
|
|
535
|
+
response_mode: e.custom().optional(),
|
|
536
|
+
is_domain_connection: e.boolean().optional(),
|
|
537
|
+
show_as_button: e.boolean().optional(),
|
|
538
|
+
metadata: e.record(e.any()).optional()
|
|
517
539
|
}), W = e.object({
|
|
518
540
|
id: e.string(),
|
|
519
541
|
created_at: e.string().transform((t) => t === null ? "" : t),
|
|
@@ -688,7 +710,7 @@ const q = e.enum([
|
|
|
688
710
|
expires_at: e.string(),
|
|
689
711
|
used_at: e.string().optional(),
|
|
690
712
|
user_id: e.string().optional()
|
|
691
|
-
}),
|
|
713
|
+
}), Je = e.object({
|
|
692
714
|
...Y.shape,
|
|
693
715
|
created_at: e.string()
|
|
694
716
|
}), Q = e.object({
|
|
@@ -719,9 +741,9 @@ const q = e.enum([
|
|
|
719
741
|
methods: e.array(J)
|
|
720
742
|
}).optional(),
|
|
721
743
|
tls_policy: e.string().optional()
|
|
722
|
-
}),
|
|
744
|
+
}), Ze = Z.extend({
|
|
723
745
|
tenant_id: e.string()
|
|
724
|
-
}),
|
|
746
|
+
}), $e = e.object({
|
|
725
747
|
id: e.string(),
|
|
726
748
|
type: e.literal("submit"),
|
|
727
749
|
label: e.string(),
|
|
@@ -847,7 +869,7 @@ const q = e.enum([
|
|
|
847
869
|
style: e.object({ css: e.string().optional() }).optional()
|
|
848
870
|
}).openapi({
|
|
849
871
|
description: "Schema for flow-based forms (matches new JSON structure)"
|
|
850
|
-
}),
|
|
872
|
+
}), et = e.object({
|
|
851
873
|
...n.shape,
|
|
852
874
|
...ee.shape,
|
|
853
875
|
id: e.string()
|
|
@@ -879,7 +901,7 @@ const q = e.enum([
|
|
|
879
901
|
...l,
|
|
880
902
|
trigger_id: h,
|
|
881
903
|
form_id: e.string()
|
|
882
|
-
}),
|
|
904
|
+
}), tt = e.union([
|
|
883
905
|
te,
|
|
884
906
|
oe
|
|
885
907
|
]), ne = e.object({
|
|
@@ -894,7 +916,7 @@ const q = e.enum([
|
|
|
894
916
|
...n.shape,
|
|
895
917
|
hook_id: e.string(),
|
|
896
918
|
form_id: e.string()
|
|
897
|
-
}),
|
|
919
|
+
}), ot = e.union([ne, ie]), ae = e.object({
|
|
898
920
|
name: e.string().optional()
|
|
899
921
|
}), se = e.object({
|
|
900
922
|
email: e.string().optional()
|
|
@@ -910,7 +932,7 @@ const q = e.enum([
|
|
|
910
932
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
911
933
|
roles: e.array(e.string()).default([]).optional(),
|
|
912
934
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
913
|
-
}),
|
|
935
|
+
}), nt = e.object({
|
|
914
936
|
id: e.string(),
|
|
915
937
|
organization_id: e.string().max(50),
|
|
916
938
|
created_at: e.string().datetime(),
|
|
@@ -935,9 +957,9 @@ const q = e.enum([
|
|
|
935
957
|
x5t: e.string().optional(),
|
|
936
958
|
x5c: e.array(e.string()).optional(),
|
|
937
959
|
use: e.enum(["sig", "enc"]).optional()
|
|
938
|
-
}), nt = e.object({
|
|
939
|
-
keys: e.array(le)
|
|
940
960
|
}), it = e.object({
|
|
961
|
+
keys: e.array(le)
|
|
962
|
+
}), at = e.object({
|
|
941
963
|
issuer: e.string(),
|
|
942
964
|
authorization_endpoint: e.string(),
|
|
943
965
|
token_endpoint: e.string(),
|
|
@@ -971,7 +993,7 @@ const q = e.enum([
|
|
|
971
993
|
login_completed: e.boolean().optional().default(!1)
|
|
972
994
|
}).openapi({
|
|
973
995
|
description: "This represents a login sesion"
|
|
974
|
-
}),
|
|
996
|
+
}), st = e.object({
|
|
975
997
|
..._e.shape,
|
|
976
998
|
id: e.string().openapi({
|
|
977
999
|
description: "This is is used as the state in the universal login"
|
|
@@ -1156,8 +1178,6 @@ const q = e.enum([
|
|
|
1156
1178
|
}).optional()
|
|
1157
1179
|
}), ge = e.object({
|
|
1158
1180
|
country_code: e.string().length(2),
|
|
1159
|
-
country_code3: e.string().length(3),
|
|
1160
|
-
country_name: e.string(),
|
|
1161
1181
|
city_name: e.string(),
|
|
1162
1182
|
latitude: e.string(),
|
|
1163
1183
|
longitude: e.string(),
|
|
@@ -1186,7 +1206,7 @@ const q = e.enum([
|
|
|
1186
1206
|
auth0_client: de.optional(),
|
|
1187
1207
|
log_id: e.string().optional(),
|
|
1188
1208
|
location_info: ge.optional()
|
|
1189
|
-
}),
|
|
1209
|
+
}), rt = e.object({
|
|
1190
1210
|
...ue.shape,
|
|
1191
1211
|
log_id: e.string()
|
|
1192
1212
|
}), me = e.object({
|
|
@@ -1195,7 +1215,7 @@ const q = e.enum([
|
|
|
1195
1215
|
password: e.string(),
|
|
1196
1216
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
1197
1217
|
is_current: e.boolean().default(!0)
|
|
1198
|
-
}),
|
|
1218
|
+
}), lt = me.extend({
|
|
1199
1219
|
id: e.string(),
|
|
1200
1220
|
created_at: e.string(),
|
|
1201
1221
|
updated_at: e.string()
|
|
@@ -1218,13 +1238,13 @@ const q = e.enum([
|
|
|
1218
1238
|
"Metadata related to the device used in the session"
|
|
1219
1239
|
),
|
|
1220
1240
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1221
|
-
}),
|
|
1241
|
+
}), _t = e.object({
|
|
1222
1242
|
created_at: e.string(),
|
|
1223
1243
|
updated_at: e.string(),
|
|
1224
1244
|
authenticated_at: e.string(),
|
|
1225
1245
|
last_interaction_at: e.string(),
|
|
1226
1246
|
...he.shape
|
|
1227
|
-
}),
|
|
1247
|
+
}), ct = e.object({
|
|
1228
1248
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1229
1249
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1230
1250
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1251,7 +1271,7 @@ const q = e.enum([
|
|
|
1251
1271
|
})
|
|
1252
1272
|
});
|
|
1253
1273
|
var be = /* @__PURE__ */ ((t) => (t.RefreshToken = "refresh_token", t.AuthorizationCode = "authorization_code", t.ClientCredential = "client_credentials", t.Passwordless = "passwordless", t.Password = "password", t.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", t))(be || {});
|
|
1254
|
-
const
|
|
1274
|
+
const pt = e.object({
|
|
1255
1275
|
access_token: e.string(),
|
|
1256
1276
|
id_token: e.string().optional(),
|
|
1257
1277
|
scope: e.string().optional(),
|
|
@@ -1324,14 +1344,14 @@ const Ee = e.object({
|
|
|
1324
1344
|
fonts: Se,
|
|
1325
1345
|
page_background: Ae,
|
|
1326
1346
|
widget: Ie
|
|
1327
|
-
}),
|
|
1347
|
+
}), dt = Ce.extend({
|
|
1328
1348
|
themeId: e.string()
|
|
1329
|
-
}),
|
|
1349
|
+
}), gt = e.object({
|
|
1330
1350
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
1331
1351
|
identifier_first: e.boolean().default(!0),
|
|
1332
1352
|
password_first: e.boolean().default(!1),
|
|
1333
1353
|
webauthn_platform_first_factor: e.boolean()
|
|
1334
|
-
}),
|
|
1354
|
+
}), ut = e.object({
|
|
1335
1355
|
name: e.string(),
|
|
1336
1356
|
enabled: e.boolean().optional().default(!0),
|
|
1337
1357
|
default_from_address: e.string().optional(),
|
|
@@ -1382,21 +1402,21 @@ const Ee = e.object({
|
|
|
1382
1402
|
})
|
|
1383
1403
|
),
|
|
1384
1404
|
rotating: e.boolean()
|
|
1385
|
-
}),
|
|
1405
|
+
}), mt = e.object({
|
|
1386
1406
|
// When the refresh token record was created.
|
|
1387
1407
|
created_at: e.string(),
|
|
1388
1408
|
// Spread in the rest of the refresh token properties.
|
|
1389
1409
|
...Oe.shape
|
|
1390
|
-
}),
|
|
1410
|
+
}), ht = e.object({
|
|
1391
1411
|
to: e.string(),
|
|
1392
1412
|
message: e.string()
|
|
1393
|
-
}),
|
|
1413
|
+
}), bt = e.object({
|
|
1394
1414
|
name: e.string(),
|
|
1395
1415
|
options: e.object({})
|
|
1396
1416
|
}), Te = e.object({
|
|
1397
1417
|
value: e.string(),
|
|
1398
1418
|
description: e.string().optional()
|
|
1399
|
-
}),
|
|
1419
|
+
}), ye = e.object({
|
|
1400
1420
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
1401
1421
|
enforce_policies: e.boolean().optional(),
|
|
1402
1422
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -1406,7 +1426,7 @@ const Ee = e.object({
|
|
|
1406
1426
|
mtls: e.object({
|
|
1407
1427
|
bound_access_tokens: e.boolean().optional()
|
|
1408
1428
|
}).optional()
|
|
1409
|
-
}),
|
|
1429
|
+
}), Ne = e.object({
|
|
1410
1430
|
name: e.string(),
|
|
1411
1431
|
identifier: e.string(),
|
|
1412
1432
|
scopes: e.array(Te).optional(),
|
|
@@ -1417,29 +1437,29 @@ const Ee = e.object({
|
|
|
1417
1437
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
1418
1438
|
allow_offline_access: e.boolean().optional(),
|
|
1419
1439
|
verificationKey: e.string().optional(),
|
|
1420
|
-
options:
|
|
1440
|
+
options: ye.optional()
|
|
1421
1441
|
}), Re = e.object({
|
|
1422
1442
|
id: e.string().optional(),
|
|
1423
|
-
...
|
|
1443
|
+
...Ne.shape,
|
|
1424
1444
|
created_at: e.string().optional(),
|
|
1425
1445
|
updated_at: e.string().optional()
|
|
1426
|
-
}),
|
|
1446
|
+
}), Et = e.array(Re), Le = e.object({
|
|
1427
1447
|
role_id: e.string(),
|
|
1428
1448
|
resource_server_identifier: e.string(),
|
|
1429
1449
|
permission_name: e.string()
|
|
1430
1450
|
}), De = e.object({
|
|
1431
1451
|
...Le.shape,
|
|
1432
1452
|
created_at: e.string()
|
|
1433
|
-
}),
|
|
1453
|
+
}), ft = e.array(De), we = e.object({
|
|
1434
1454
|
user_id: e.string(),
|
|
1435
1455
|
resource_server_identifier: e.string(),
|
|
1436
1456
|
permission_name: e.string(),
|
|
1437
1457
|
organization_id: e.string().optional()
|
|
1438
|
-
}),
|
|
1439
|
-
...
|
|
1458
|
+
}), je = e.object({
|
|
1459
|
+
...we.shape,
|
|
1440
1460
|
tenant_id: e.string(),
|
|
1441
1461
|
created_at: e.string().optional()
|
|
1442
|
-
}),
|
|
1462
|
+
}), St = e.array(je), ke = e.object({
|
|
1443
1463
|
user_id: e.string(),
|
|
1444
1464
|
resource_server_identifier: e.string(),
|
|
1445
1465
|
resource_server_name: e.string(),
|
|
@@ -1447,7 +1467,7 @@ const Ee = e.object({
|
|
|
1447
1467
|
description: e.string().nullable().optional(),
|
|
1448
1468
|
created_at: e.string().optional(),
|
|
1449
1469
|
organization_id: e.string().optional()
|
|
1450
|
-
}),
|
|
1470
|
+
}), At = e.array(
|
|
1451
1471
|
ke
|
|
1452
1472
|
), Ue = e.object({
|
|
1453
1473
|
user_id: e.string(),
|
|
@@ -1457,7 +1477,7 @@ const Ee = e.object({
|
|
|
1457
1477
|
...Ue.shape,
|
|
1458
1478
|
tenant_id: e.string(),
|
|
1459
1479
|
created_at: e.string().optional()
|
|
1460
|
-
}),
|
|
1480
|
+
}), It = e.array(Fe), ve = e.object({
|
|
1461
1481
|
name: e.string().min(1).max(50).openapi({
|
|
1462
1482
|
description: "The name of the role. Cannot include '<' or '>'"
|
|
1463
1483
|
}),
|
|
@@ -1471,7 +1491,7 @@ const Ee = e.object({
|
|
|
1471
1491
|
...ve.shape,
|
|
1472
1492
|
created_at: e.string().optional(),
|
|
1473
1493
|
updated_at: e.string().optional()
|
|
1474
|
-
}),
|
|
1494
|
+
}), Ct = e.array(Pe), xe = e.object({
|
|
1475
1495
|
logo_url: e.string().optional().openapi({
|
|
1476
1496
|
description: "URL of the organization's logo"
|
|
1477
1497
|
}),
|
|
@@ -1483,7 +1503,7 @@ const Ee = e.object({
|
|
|
1483
1503
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
1484
1504
|
})
|
|
1485
1505
|
}).optional()
|
|
1486
|
-
}).optional(),
|
|
1506
|
+
}).optional(), He = e.object({
|
|
1487
1507
|
connection_id: e.string().openapi({
|
|
1488
1508
|
description: "ID of the connection"
|
|
1489
1509
|
}),
|
|
@@ -1496,7 +1516,7 @@ const Ee = e.object({
|
|
|
1496
1516
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
1497
1517
|
description: "Whether signup is enabled for this connection"
|
|
1498
1518
|
})
|
|
1499
|
-
}),
|
|
1519
|
+
}), Me = e.object({
|
|
1500
1520
|
client_credentials: e.object({
|
|
1501
1521
|
enforce: e.boolean().default(!1).openapi({
|
|
1502
1522
|
description: "Whether to enforce token quota limits"
|
|
@@ -1516,15 +1536,15 @@ const Ee = e.object({
|
|
|
1516
1536
|
display_name: e.string().optional().openapi({
|
|
1517
1537
|
description: "The display name of the organization"
|
|
1518
1538
|
}),
|
|
1519
|
-
branding:
|
|
1539
|
+
branding: xe,
|
|
1520
1540
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
1521
1541
|
description: "Custom metadata for the organization"
|
|
1522
1542
|
}),
|
|
1523
|
-
enabled_connections: e.array(
|
|
1543
|
+
enabled_connections: e.array(He).default([]).optional().openapi({
|
|
1524
1544
|
description: "List of enabled connections for the organization"
|
|
1525
1545
|
}),
|
|
1526
|
-
token_quota:
|
|
1527
|
-
}),
|
|
1546
|
+
token_quota: Me
|
|
1547
|
+
}), Ot = e.object({
|
|
1528
1548
|
...Ge.shape,
|
|
1529
1549
|
...n.shape,
|
|
1530
1550
|
id: e.string()
|
|
@@ -1535,11 +1555,11 @@ const Ee = e.object({
|
|
|
1535
1555
|
organization_id: e.string().openapi({
|
|
1536
1556
|
description: "ID of the organization"
|
|
1537
1557
|
})
|
|
1538
|
-
}),
|
|
1558
|
+
}), Tt = e.object({
|
|
1539
1559
|
...Ke.shape,
|
|
1540
1560
|
...n.shape,
|
|
1541
1561
|
id: e.string()
|
|
1542
|
-
}),
|
|
1562
|
+
}), yt = e.object({
|
|
1543
1563
|
// Session settings
|
|
1544
1564
|
idle_session_lifetime: e.number().optional(),
|
|
1545
1565
|
session_lifetime: e.number().optional(),
|
|
@@ -1626,21 +1646,22 @@ export {
|
|
|
1626
1646
|
ge as LocationInfo,
|
|
1627
1647
|
ce as LogTypes,
|
|
1628
1648
|
U as NodeType,
|
|
1629
|
-
|
|
1649
|
+
Ye as auth0FlowInsertSchema,
|
|
1630
1650
|
G as auth0FlowSchema,
|
|
1631
|
-
|
|
1651
|
+
Be as auth0QuerySchema,
|
|
1652
|
+
Xe as auth0UserResponseSchema,
|
|
1632
1653
|
K as authParamsSchema,
|
|
1633
1654
|
_ as baseUserSchema,
|
|
1634
1655
|
Ee as bordersSchema,
|
|
1635
|
-
|
|
1656
|
+
Qe as brandingSchema,
|
|
1636
1657
|
L as buttonComponentSchema,
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1658
|
+
y as clientGrantInsertSchema,
|
|
1659
|
+
qe as clientGrantListSchema,
|
|
1660
|
+
N as clientGrantSchema,
|
|
1640
1661
|
O as clientInsertSchema,
|
|
1641
1662
|
T as clientSchema,
|
|
1642
1663
|
Y as codeInsertSchema,
|
|
1643
|
-
|
|
1664
|
+
Je as codeSchema,
|
|
1644
1665
|
q as codeTypeSchema,
|
|
1645
1666
|
fe as colorsSchema,
|
|
1646
1667
|
k as componentSchema,
|
|
@@ -1650,85 +1671,85 @@ export {
|
|
|
1650
1671
|
a as coordinatesSchema,
|
|
1651
1672
|
Q as customDomainInsertSchema,
|
|
1652
1673
|
Z as customDomainSchema,
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1674
|
+
Ze as customDomainWithTenantIdSchema,
|
|
1675
|
+
ut as emailProviderSchema,
|
|
1676
|
+
M as endingSchema,
|
|
1677
|
+
w as fieldComponentSchema,
|
|
1657
1678
|
v as flowNodeSchema,
|
|
1658
1679
|
o as fontDetailsSchema,
|
|
1659
1680
|
Se as fontsSchema,
|
|
1660
|
-
|
|
1681
|
+
$e as formControlSchema,
|
|
1661
1682
|
ee as formInsertSchema,
|
|
1662
1683
|
$ as formNodeComponentDefinition,
|
|
1663
|
-
|
|
1664
|
-
|
|
1684
|
+
et as formSchema,
|
|
1685
|
+
j as genericComponentSchema,
|
|
1665
1686
|
P as genericNodeSchema,
|
|
1666
|
-
|
|
1667
|
-
|
|
1687
|
+
tt as hookInsertSchema,
|
|
1688
|
+
ot as hookSchema,
|
|
1668
1689
|
f as identitySchema,
|
|
1669
1690
|
re as inviteInsertSchema,
|
|
1670
|
-
|
|
1691
|
+
nt as inviteSchema,
|
|
1671
1692
|
se as inviteeSchema,
|
|
1672
1693
|
ae as inviterSchema,
|
|
1673
|
-
|
|
1694
|
+
it as jwksKeySchema,
|
|
1674
1695
|
le as jwksSchema,
|
|
1675
1696
|
D as legalComponentSchema,
|
|
1676
1697
|
ue as logInsertSchema,
|
|
1677
|
-
|
|
1698
|
+
rt as logSchema,
|
|
1678
1699
|
_e as loginSessionInsertSchema,
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1700
|
+
st as loginSessionSchema,
|
|
1701
|
+
x as nodeSchema,
|
|
1702
|
+
at as openIDConfigurationSchema,
|
|
1703
|
+
xe as organizationBrandingSchema,
|
|
1704
|
+
He as organizationEnabledConnectionSchema,
|
|
1684
1705
|
Ge as organizationInsertSchema,
|
|
1685
|
-
|
|
1686
|
-
|
|
1706
|
+
Ot as organizationSchema,
|
|
1707
|
+
Me as organizationTokenQuotaSchema,
|
|
1687
1708
|
Ae as pageBackgroundSchema,
|
|
1688
1709
|
Nt as parseUserId,
|
|
1689
1710
|
me as passwordInsertSchema,
|
|
1690
|
-
|
|
1711
|
+
lt as passwordSchema,
|
|
1691
1712
|
E as profileDataSchema,
|
|
1692
|
-
|
|
1713
|
+
gt as promptSettingSchema,
|
|
1693
1714
|
Oe as refreshTokenInsertSchema,
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1715
|
+
mt as refreshTokenSchema,
|
|
1716
|
+
Ne as resourceServerInsertSchema,
|
|
1717
|
+
Et as resourceServerListSchema,
|
|
1718
|
+
ye as resourceServerOptionsSchema,
|
|
1698
1719
|
Re as resourceServerSchema,
|
|
1699
1720
|
Te as resourceServerScopeSchema,
|
|
1700
1721
|
R as richTextComponentSchema,
|
|
1701
1722
|
ve as roleInsertSchema,
|
|
1702
|
-
|
|
1723
|
+
Ct as roleListSchema,
|
|
1703
1724
|
Le as rolePermissionInsertSchema,
|
|
1704
|
-
|
|
1725
|
+
ft as rolePermissionListSchema,
|
|
1705
1726
|
De as rolePermissionSchema,
|
|
1706
1727
|
Pe as roleSchema,
|
|
1707
1728
|
he as sessionInsertSchema,
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1729
|
+
_t as sessionSchema,
|
|
1730
|
+
ct as signingKeySchema,
|
|
1731
|
+
bt as smsProviderSchema,
|
|
1732
|
+
ht as smsSendParamsSchema,
|
|
1733
|
+
H as startSchema,
|
|
1713
1734
|
F as stepNodeSchema,
|
|
1714
1735
|
X as tenantInsertSchema,
|
|
1715
1736
|
V as tenantSchema,
|
|
1716
|
-
|
|
1737
|
+
yt as tenantSettingsSchema,
|
|
1717
1738
|
Ce as themeInsertSchema,
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1739
|
+
dt as themeSchema,
|
|
1740
|
+
pt as tokenResponseSchema,
|
|
1741
|
+
We as totalsSchema,
|
|
1721
1742
|
S as userInsertSchema,
|
|
1722
1743
|
Ke as userOrganizationInsertSchema,
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1744
|
+
Tt as userOrganizationSchema,
|
|
1745
|
+
we as userPermissionInsertSchema,
|
|
1746
|
+
St as userPermissionListSchema,
|
|
1747
|
+
je as userPermissionSchema,
|
|
1748
|
+
At as userPermissionWithDetailsListSchema,
|
|
1728
1749
|
ke as userPermissionWithDetailsSchema,
|
|
1729
|
-
|
|
1750
|
+
Ve as userResponseSchema,
|
|
1730
1751
|
Ue as userRoleInsertSchema,
|
|
1731
|
-
|
|
1752
|
+
It as userRoleListSchema,
|
|
1732
1753
|
Fe as userRoleSchema,
|
|
1733
1754
|
A as userSchema,
|
|
1734
1755
|
J as verificationMethodsSchema,
|