@authhero/adapter-interfaces 0.151.0 → 0.153.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 +978 -256
- package/dist/adapter-interfaces.mjs +500 -430
- package/package.json +1 -1
|
@@ -1,21 +1,82 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const q = e.enum([
|
|
3
|
+
"user_action",
|
|
4
|
+
"admin_action",
|
|
5
|
+
"system",
|
|
6
|
+
"api"
|
|
7
|
+
]), X = e.object({
|
|
8
|
+
type: e.enum(["user", "admin", "system", "api_key", "client_credentials"]),
|
|
9
|
+
id: e.string().optional(),
|
|
10
|
+
email: e.string().optional(),
|
|
11
|
+
org_id: e.string().optional(),
|
|
12
|
+
org_name: e.string().optional(),
|
|
13
|
+
scopes: e.array(e.string()).optional(),
|
|
14
|
+
client_id: e.string().optional()
|
|
15
|
+
}), V = e.object({
|
|
16
|
+
type: e.string(),
|
|
17
|
+
id: e.string(),
|
|
18
|
+
before: e.record(e.unknown()).optional(),
|
|
19
|
+
after: e.record(e.unknown()).optional(),
|
|
20
|
+
diff: e.record(e.object({ old: e.unknown(), new: e.unknown() })).optional()
|
|
21
|
+
}), Y = e.object({
|
|
22
|
+
method: e.string(),
|
|
23
|
+
path: e.string(),
|
|
24
|
+
query: e.record(e.string()).optional(),
|
|
25
|
+
body: e.unknown().optional(),
|
|
26
|
+
ip: e.string(),
|
|
27
|
+
user_agent: e.string().optional(),
|
|
28
|
+
correlation_id: e.string().optional()
|
|
29
|
+
}), Q = e.object({
|
|
30
|
+
status_code: e.number(),
|
|
31
|
+
body: e.unknown().optional()
|
|
32
|
+
}), Z = e.object({
|
|
33
|
+
country_code: e.string(),
|
|
34
|
+
city_name: e.string(),
|
|
35
|
+
latitude: e.string(),
|
|
36
|
+
longitude: e.string(),
|
|
37
|
+
time_zone: e.string(),
|
|
38
|
+
continent_code: e.string()
|
|
39
|
+
}), $ = e.object({
|
|
40
|
+
name: e.string(),
|
|
41
|
+
version: e.string(),
|
|
42
|
+
env: e.record(e.string()).optional()
|
|
43
|
+
}), J = e.object({
|
|
44
|
+
tenant_id: e.string(),
|
|
45
|
+
event_type: e.string(),
|
|
46
|
+
log_type: e.string(),
|
|
47
|
+
description: e.string().optional(),
|
|
48
|
+
category: q,
|
|
49
|
+
actor: X,
|
|
50
|
+
target: V,
|
|
51
|
+
request: Y,
|
|
52
|
+
response: Q.optional(),
|
|
53
|
+
connection: e.string().optional(),
|
|
54
|
+
strategy: e.string().optional(),
|
|
55
|
+
strategy_type: e.string().optional(),
|
|
56
|
+
location: Z.optional(),
|
|
57
|
+
auth0_client: $.optional(),
|
|
58
|
+
hostname: e.string(),
|
|
59
|
+
is_mobile: e.boolean().optional(),
|
|
60
|
+
timestamp: e.string()
|
|
61
|
+
}), At = J.extend({
|
|
62
|
+
id: e.string()
|
|
63
|
+
}), r = e.object({
|
|
3
64
|
created_at: e.string(),
|
|
4
65
|
updated_at: e.string()
|
|
5
|
-
}),
|
|
66
|
+
}), yt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), It = e.enum([
|
|
6
67
|
"CREATE_USER",
|
|
7
68
|
"GET_USER",
|
|
8
69
|
"UPDATE_USER",
|
|
9
70
|
"SEND_REQUEST",
|
|
10
71
|
"SEND_EMAIL"
|
|
11
|
-
]),
|
|
72
|
+
]), Ct = e.enum(["VERIFY_EMAIL"]), ee = e.object({
|
|
12
73
|
require_mx_record: e.boolean().optional(),
|
|
13
74
|
block_aliases: e.boolean().optional(),
|
|
14
75
|
block_free_emails: e.boolean().optional(),
|
|
15
76
|
block_disposable_emails: e.boolean().optional(),
|
|
16
77
|
blocklist: e.array(e.string()).optional(),
|
|
17
78
|
allowlist: e.array(e.string()).optional()
|
|
18
|
-
}),
|
|
79
|
+
}), oe = e.object({
|
|
19
80
|
id: e.string(),
|
|
20
81
|
alias: e.string().max(100).optional(),
|
|
21
82
|
type: e.literal("AUTH0"),
|
|
@@ -27,7 +88,7 @@ const r = e.object({
|
|
|
27
88
|
user_id: e.string(),
|
|
28
89
|
changes: e.record(e.string(), e.any())
|
|
29
90
|
})
|
|
30
|
-
}),
|
|
91
|
+
}), te = e.object({
|
|
31
92
|
id: e.string(),
|
|
32
93
|
alias: e.string().max(100).optional(),
|
|
33
94
|
type: e.literal("EMAIL"),
|
|
@@ -36,9 +97,9 @@ const r = e.object({
|
|
|
36
97
|
mask_output: e.boolean().optional(),
|
|
37
98
|
params: e.object({
|
|
38
99
|
email: e.string(),
|
|
39
|
-
rules:
|
|
100
|
+
rules: ee.optional()
|
|
40
101
|
})
|
|
41
|
-
}),
|
|
102
|
+
}), ne = e.enum(["change-email", "account", "custom"]), ie = e.object({
|
|
42
103
|
id: e.string(),
|
|
43
104
|
alias: e.string().max(100).optional(),
|
|
44
105
|
type: e.literal("REDIRECT"),
|
|
@@ -46,32 +107,32 @@ const r = e.object({
|
|
|
46
107
|
allow_failure: e.boolean().optional(),
|
|
47
108
|
mask_output: e.boolean().optional(),
|
|
48
109
|
params: e.object({
|
|
49
|
-
target:
|
|
110
|
+
target: ne.openapi({
|
|
50
111
|
description: "The predefined target to redirect to, or 'custom' for a custom URL"
|
|
51
112
|
}),
|
|
52
113
|
custom_url: e.string().optional().openapi({
|
|
53
114
|
description: "Custom URL to redirect to when target is 'custom'"
|
|
54
115
|
})
|
|
55
116
|
})
|
|
56
|
-
}),
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
]),
|
|
117
|
+
}), ae = e.union([
|
|
118
|
+
oe,
|
|
119
|
+
te,
|
|
120
|
+
ie
|
|
121
|
+
]), se = e.object({
|
|
61
122
|
name: e.string().min(1).max(150).openapi({
|
|
62
123
|
description: "The name of the flow"
|
|
63
124
|
}),
|
|
64
125
|
// Actions is an array of action steps (Auth0 stores as JSON blob)
|
|
65
|
-
actions: e.array(
|
|
126
|
+
actions: e.array(ae).optional().default([]).openapi({
|
|
66
127
|
description: "The list of actions to execute in sequence"
|
|
67
128
|
})
|
|
68
|
-
}),
|
|
129
|
+
}), Tt = se.extend({
|
|
69
130
|
...r.shape,
|
|
70
131
|
id: e.string().openapi({
|
|
71
132
|
description: "Unique identifier for the flow",
|
|
72
133
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
73
134
|
})
|
|
74
|
-
}),
|
|
135
|
+
}), Ot = e.object({
|
|
75
136
|
page: e.string().min(0).optional().default("0").transform((o) => parseInt(o, 10)).openapi({
|
|
76
137
|
description: "The page number where 0 is the first page"
|
|
77
138
|
}),
|
|
@@ -87,12 +148,12 @@ const r = e.object({
|
|
|
87
148
|
q: e.string().optional().openapi({
|
|
88
149
|
description: "A lucene query string used to filter the results"
|
|
89
150
|
})
|
|
90
|
-
}),
|
|
151
|
+
}), Nt = e.object({
|
|
91
152
|
start: e.number(),
|
|
92
153
|
limit: e.number(),
|
|
93
154
|
length: e.number(),
|
|
94
155
|
total: e.number().optional()
|
|
95
|
-
}),
|
|
156
|
+
}), re = e.object({
|
|
96
157
|
email: e.string().optional(),
|
|
97
158
|
email_verified: e.boolean().optional(),
|
|
98
159
|
name: e.string().optional(),
|
|
@@ -101,7 +162,7 @@ const r = e.object({
|
|
|
101
162
|
phone_number: e.string().optional(),
|
|
102
163
|
phone_verified: e.boolean().optional(),
|
|
103
164
|
family_name: e.string().optional()
|
|
104
|
-
}).catchall(e.any()),
|
|
165
|
+
}).catchall(e.any()), le = e.object({
|
|
105
166
|
connection: e.string(),
|
|
106
167
|
user_id: e.string(),
|
|
107
168
|
provider: e.string(),
|
|
@@ -114,8 +175,8 @@ const r = e.object({
|
|
|
114
175
|
access_token: e.string().optional(),
|
|
115
176
|
access_token_secret: e.string().optional(),
|
|
116
177
|
refresh_token: e.string().optional(),
|
|
117
|
-
profileData:
|
|
118
|
-
}),
|
|
178
|
+
profileData: re.optional()
|
|
179
|
+
}), pe = e.object({
|
|
119
180
|
formatted: e.string().optional(),
|
|
120
181
|
// Full mailing address
|
|
121
182
|
street_address: e.string().optional(),
|
|
@@ -160,8 +221,8 @@ const r = e.object({
|
|
|
160
221
|
zoneinfo: e.string().optional(),
|
|
161
222
|
// e.g., "Europe/Paris"
|
|
162
223
|
// OIDC address claim (OIDC Core 5.1.1)
|
|
163
|
-
address:
|
|
164
|
-
}),
|
|
224
|
+
address: pe
|
|
225
|
+
}), ce = N.extend({
|
|
165
226
|
email_verified: e.boolean().default(!1),
|
|
166
227
|
verify_email: e.boolean().optional(),
|
|
167
228
|
last_ip: e.string().optional(),
|
|
@@ -176,29 +237,29 @@ const r = e.object({
|
|
|
176
237
|
hash: e.string(),
|
|
177
238
|
algorithm: e.string()
|
|
178
239
|
}).optional()
|
|
179
|
-
}),
|
|
180
|
-
...
|
|
240
|
+
}), _e = e.object({
|
|
241
|
+
...ce.omit({ password: !0 }).shape,
|
|
181
242
|
...r.shape,
|
|
182
243
|
user_id: e.string(),
|
|
183
244
|
provider: e.string(),
|
|
184
245
|
is_social: e.boolean(),
|
|
185
246
|
email: e.string().optional(),
|
|
186
247
|
login_count: e.number().default(0),
|
|
187
|
-
identities: e.array(
|
|
188
|
-
}),
|
|
248
|
+
identities: e.array(le).optional()
|
|
249
|
+
}), wt = _e, jt = N.extend({
|
|
189
250
|
login_count: e.number(),
|
|
190
251
|
multifactor: e.array(e.string()).optional(),
|
|
191
252
|
last_ip: e.string().optional(),
|
|
192
253
|
last_login: e.string().optional(),
|
|
193
254
|
user_id: e.string()
|
|
194
255
|
}).catchall(e.any());
|
|
195
|
-
let
|
|
256
|
+
let de = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", ge = (o = 21) => {
|
|
196
257
|
let t = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
|
|
197
258
|
for (; o--; )
|
|
198
|
-
t +=
|
|
259
|
+
t += de[i[o] & 63];
|
|
199
260
|
return t;
|
|
200
261
|
};
|
|
201
|
-
const
|
|
262
|
+
const ue = e.object({
|
|
202
263
|
client_id: e.string().openapi({
|
|
203
264
|
description: "ID of this client."
|
|
204
265
|
}),
|
|
@@ -211,7 +272,7 @@ const se = e.object({
|
|
|
211
272
|
global: e.boolean().default(!1).openapi({
|
|
212
273
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
213
274
|
}),
|
|
214
|
-
client_secret: e.string().default(() =>
|
|
275
|
+
client_secret: e.string().default(() => ge()).optional().openapi({
|
|
215
276
|
description: "Client secret (which you must not make public)."
|
|
216
277
|
}),
|
|
217
278
|
app_type: e.enum([
|
|
@@ -371,11 +432,11 @@ const se = e.object({
|
|
|
371
432
|
description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
|
|
372
433
|
}),
|
|
373
434
|
token_quota: e.record(e.any()).default({}).optional()
|
|
374
|
-
}),
|
|
435
|
+
}), Rt = e.object({
|
|
375
436
|
created_at: e.string(),
|
|
376
437
|
updated_at: e.string(),
|
|
377
|
-
...
|
|
378
|
-
}),
|
|
438
|
+
...ue.shape
|
|
439
|
+
}), me = e.object({
|
|
379
440
|
client_id: e.string().min(1).openapi({
|
|
380
441
|
description: "ID of the client."
|
|
381
442
|
}),
|
|
@@ -400,23 +461,23 @@ const se = e.object({
|
|
|
400
461
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
401
462
|
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."
|
|
402
463
|
})
|
|
403
|
-
}),
|
|
464
|
+
}), he = e.object({
|
|
404
465
|
id: e.string().openapi({
|
|
405
466
|
description: "ID of the client grant."
|
|
406
467
|
}),
|
|
407
|
-
...
|
|
468
|
+
...me.shape,
|
|
408
469
|
created_at: e.string().optional(),
|
|
409
470
|
updated_at: e.string().optional()
|
|
410
|
-
}),
|
|
471
|
+
}), Dt = e.array(he), u = e.object({
|
|
411
472
|
x: e.number(),
|
|
412
473
|
y: e.number()
|
|
413
474
|
});
|
|
414
|
-
var w = /* @__PURE__ */ ((o) => (o.RICH_TEXT = "RICH_TEXT", o.NEXT_BUTTON = "NEXT_BUTTON", o.BACK_BUTTON = "BACK_BUTTON", o.SUBMIT_BUTTON = "SUBMIT_BUTTON", o.DIVIDER = "DIVIDER", o.TEXT = "TEXT", o.EMAIL = "EMAIL", o.PASSWORD = "PASSWORD", o.NUMBER = "NUMBER", o.PHONE = "PHONE", o.DATE = "DATE", o.CHECKBOX = "CHECKBOX", o.RADIO = "RADIO", o.SELECT = "SELECT", o.HIDDEN = "HIDDEN", o.LEGAL = "LEGAL", o))(w || {}),
|
|
415
|
-
const
|
|
475
|
+
var w = /* @__PURE__ */ ((o) => (o.RICH_TEXT = "RICH_TEXT", o.NEXT_BUTTON = "NEXT_BUTTON", o.BACK_BUTTON = "BACK_BUTTON", o.SUBMIT_BUTTON = "SUBMIT_BUTTON", o.DIVIDER = "DIVIDER", o.TEXT = "TEXT", o.EMAIL = "EMAIL", o.PASSWORD = "PASSWORD", o.NUMBER = "NUMBER", o.PHONE = "PHONE", o.DATE = "DATE", o.CHECKBOX = "CHECKBOX", o.RADIO = "RADIO", o.SELECT = "SELECT", o.HIDDEN = "HIDDEN", o.LEGAL = "LEGAL", o))(w || {}), j = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(j || {});
|
|
476
|
+
const I = e.object({
|
|
416
477
|
id: e.string(),
|
|
417
|
-
category: e.nativeEnum(
|
|
478
|
+
category: e.nativeEnum(j),
|
|
418
479
|
type: e.nativeEnum(w)
|
|
419
|
-
}),
|
|
480
|
+
}), be = I.extend({
|
|
420
481
|
category: e.literal(
|
|
421
482
|
"BLOCK"
|
|
422
483
|
/* BLOCK */
|
|
@@ -428,7 +489,7 @@ const y = e.object({
|
|
|
428
489
|
config: e.object({
|
|
429
490
|
content: e.string()
|
|
430
491
|
}).passthrough()
|
|
431
|
-
}),
|
|
492
|
+
}), fe = I.extend({
|
|
432
493
|
category: e.literal(
|
|
433
494
|
"BLOCK"
|
|
434
495
|
/* BLOCK */
|
|
@@ -450,7 +511,7 @@ const y = e.object({
|
|
|
450
511
|
config: e.object({
|
|
451
512
|
text: e.string()
|
|
452
513
|
}).passthrough()
|
|
453
|
-
}),
|
|
514
|
+
}), Ee = I.extend({
|
|
454
515
|
category: e.literal(
|
|
455
516
|
"FIELD"
|
|
456
517
|
/* FIELD */
|
|
@@ -464,7 +525,7 @@ const y = e.object({
|
|
|
464
525
|
config: e.object({
|
|
465
526
|
text: e.string()
|
|
466
527
|
}).passthrough()
|
|
467
|
-
}),
|
|
528
|
+
}), Se = I.extend({
|
|
468
529
|
category: e.literal(
|
|
469
530
|
"FIELD"
|
|
470
531
|
/* FIELD */
|
|
@@ -517,19 +578,19 @@ const y = e.object({
|
|
|
517
578
|
label: e.string().optional(),
|
|
518
579
|
placeholder: e.string().optional()
|
|
519
580
|
}).passthrough()
|
|
520
|
-
}),
|
|
581
|
+
}), Ae = e.object({
|
|
521
582
|
id: e.string(),
|
|
522
583
|
category: e.string(),
|
|
523
584
|
type: e.string()
|
|
524
|
-
}).passthrough(),
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
585
|
+
}).passthrough(), ye = e.union([
|
|
586
|
+
be,
|
|
587
|
+
fe,
|
|
588
|
+
Ee,
|
|
589
|
+
Se,
|
|
590
|
+
Ae
|
|
530
591
|
]);
|
|
531
|
-
var
|
|
532
|
-
const
|
|
592
|
+
var Ie = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(Ie || {});
|
|
593
|
+
const Ce = e.object({
|
|
533
594
|
id: e.string(),
|
|
534
595
|
type: e.literal(
|
|
535
596
|
"STEP"
|
|
@@ -538,10 +599,10 @@ const he = e.object({
|
|
|
538
599
|
coordinates: u,
|
|
539
600
|
alias: e.string().optional(),
|
|
540
601
|
config: e.object({
|
|
541
|
-
components: e.array(
|
|
602
|
+
components: e.array(ye),
|
|
542
603
|
next_node: e.string()
|
|
543
604
|
}).passthrough()
|
|
544
|
-
}),
|
|
605
|
+
}), Te = e.object({
|
|
545
606
|
id: e.string(),
|
|
546
607
|
type: e.literal(
|
|
547
608
|
"FLOW"
|
|
@@ -553,7 +614,7 @@ const he = e.object({
|
|
|
553
614
|
flow_id: e.string(),
|
|
554
615
|
next_node: e.string()
|
|
555
616
|
})
|
|
556
|
-
}),
|
|
617
|
+
}), Oe = e.object({
|
|
557
618
|
id: e.string(),
|
|
558
619
|
type: e.literal(
|
|
559
620
|
"ACTION"
|
|
@@ -575,46 +636,46 @@ const he = e.object({
|
|
|
575
636
|
description: "The next node to navigate to after action (for non-redirect actions)"
|
|
576
637
|
})
|
|
577
638
|
}).passthrough()
|
|
578
|
-
}),
|
|
639
|
+
}), Ne = e.object({
|
|
579
640
|
id: e.string(),
|
|
580
641
|
type: e.string(),
|
|
581
642
|
coordinates: u
|
|
582
|
-
}).passthrough(),
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
]),
|
|
643
|
+
}).passthrough(), we = e.union([
|
|
644
|
+
Ce,
|
|
645
|
+
Te,
|
|
646
|
+
Oe,
|
|
647
|
+
Ne
|
|
648
|
+
]), je = e.object({
|
|
588
649
|
next_node: e.string(),
|
|
589
650
|
coordinates: u
|
|
590
|
-
}).passthrough(),
|
|
651
|
+
}).passthrough(), Re = e.object({
|
|
591
652
|
resume_flow: e.boolean().optional(),
|
|
592
653
|
coordinates: u
|
|
593
|
-
}).passthrough(),
|
|
654
|
+
}).passthrough(), De = e.object({
|
|
594
655
|
id: e.string(),
|
|
595
656
|
name: e.string(),
|
|
596
657
|
languages: e.object({
|
|
597
658
|
primary: e.string()
|
|
598
659
|
}).passthrough(),
|
|
599
|
-
nodes: e.array(
|
|
600
|
-
start:
|
|
601
|
-
ending:
|
|
660
|
+
nodes: e.array(we),
|
|
661
|
+
start: je,
|
|
662
|
+
ending: Re,
|
|
602
663
|
created_at: e.string(),
|
|
603
664
|
updated_at: e.string(),
|
|
604
665
|
links: e.object({
|
|
605
666
|
sdkSrc: e.string().optional(),
|
|
606
667
|
sdk_src: e.string().optional()
|
|
607
668
|
}).passthrough()
|
|
608
|
-
}).passthrough(),
|
|
669
|
+
}).passthrough(), Lt = De.omit({
|
|
609
670
|
id: !0,
|
|
610
671
|
created_at: !0,
|
|
611
672
|
updated_at: !0
|
|
612
673
|
});
|
|
613
|
-
var
|
|
614
|
-
const
|
|
674
|
+
var R = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(R || {}), D = /* @__PURE__ */ ((o) => (o.QUERY = "query", o.FRAGMENT = "fragment", o.FORM_POST = "form_post", o.WEB_MESSAGE = "web_message", o.SAML_POST = "saml_post", o))(D || {}), L = /* @__PURE__ */ ((o) => (o.S256 = "S256", o.Plain = "plain", o))(L || {});
|
|
675
|
+
const Le = e.object({
|
|
615
676
|
client_id: e.string(),
|
|
616
677
|
act_as: e.string().optional(),
|
|
617
|
-
response_type: e.nativeEnum(
|
|
678
|
+
response_type: e.nativeEnum(R).optional(),
|
|
618
679
|
response_mode: e.nativeEnum(D).optional(),
|
|
619
680
|
redirect_uri: e.string().optional(),
|
|
620
681
|
audience: e.string().optional(),
|
|
@@ -635,7 +696,7 @@ const Ce = e.object({
|
|
|
635
696
|
acr_values: e.string().optional(),
|
|
636
697
|
// The following fields are not available in Auth0
|
|
637
698
|
vendor_id: e.string().optional()
|
|
638
|
-
}),
|
|
699
|
+
}), vt = e.object({
|
|
639
700
|
colors: e.object({
|
|
640
701
|
primary: e.string(),
|
|
641
702
|
page_background: e.object({
|
|
@@ -651,7 +712,7 @@ const Ce = e.object({
|
|
|
651
712
|
font: e.object({
|
|
652
713
|
url: e.string()
|
|
653
714
|
}).optional()
|
|
654
|
-
}),
|
|
715
|
+
}), ve = e.enum([
|
|
655
716
|
"password_reset",
|
|
656
717
|
"email_verification",
|
|
657
718
|
"otp",
|
|
@@ -659,7 +720,7 @@ const Ce = e.object({
|
|
|
659
720
|
"authorization_code",
|
|
660
721
|
"oauth2_state",
|
|
661
722
|
"ticket"
|
|
662
|
-
]),
|
|
723
|
+
]), ke = e.object({
|
|
663
724
|
code_id: e.string().openapi({
|
|
664
725
|
description: "The code that will be used in for instance an email verification flow"
|
|
665
726
|
}),
|
|
@@ -669,7 +730,7 @@ const Ce = e.object({
|
|
|
669
730
|
connection_id: e.string().optional().openapi({
|
|
670
731
|
description: "The connection that the code is connected to"
|
|
671
732
|
}),
|
|
672
|
-
code_type:
|
|
733
|
+
code_type: ve,
|
|
673
734
|
code_verifier: e.string().optional().openapi({
|
|
674
735
|
description: "The code verifier used in PKCE in outbound flows"
|
|
675
736
|
}),
|
|
@@ -694,10 +755,10 @@ const Ce = e.object({
|
|
|
694
755
|
expires_at: e.string(),
|
|
695
756
|
used_at: e.string().optional(),
|
|
696
757
|
user_id: e.string().optional()
|
|
697
|
-
}),
|
|
698
|
-
...
|
|
758
|
+
}), kt = e.object({
|
|
759
|
+
...ke.shape,
|
|
699
760
|
created_at: e.string()
|
|
700
|
-
}),
|
|
761
|
+
}), Ue = e.object({
|
|
701
762
|
kid: e.string().optional(),
|
|
702
763
|
team_id: e.string().optional(),
|
|
703
764
|
realms: e.string().optional(),
|
|
@@ -809,12 +870,12 @@ const Ce = e.object({
|
|
|
809
870
|
}).optional(),
|
|
810
871
|
// Controls when root user attributes are updated from external IdP
|
|
811
872
|
set_user_root_attributes: e.enum(["on_each_login", "on_first_login", "never_on_login"]).optional()
|
|
812
|
-
}),
|
|
873
|
+
}), Fe = e.object({
|
|
813
874
|
id: e.string().optional(),
|
|
814
875
|
name: e.string(),
|
|
815
876
|
display_name: e.string().optional(),
|
|
816
877
|
strategy: e.string(),
|
|
817
|
-
options:
|
|
878
|
+
options: Ue.default({}),
|
|
818
879
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
819
880
|
response_type: e.custom().optional(),
|
|
820
881
|
response_mode: e.custom().optional(),
|
|
@@ -822,11 +883,11 @@ const Ce = e.object({
|
|
|
822
883
|
show_as_button: e.boolean().optional(),
|
|
823
884
|
metadata: e.record(e.any()).optional(),
|
|
824
885
|
is_system: e.boolean().optional()
|
|
825
|
-
}),
|
|
886
|
+
}), Ut = e.object({
|
|
826
887
|
id: e.string(),
|
|
827
888
|
created_at: e.string().transform((o) => o === null ? "" : o),
|
|
828
889
|
updated_at: e.string().transform((o) => o === null ? "" : o)
|
|
829
|
-
}).extend(
|
|
890
|
+
}).extend(Fe.shape), xe = e.object({
|
|
830
891
|
domain: e.string(),
|
|
831
892
|
custom_domain_id: e.string().optional(),
|
|
832
893
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -840,7 +901,7 @@ const Ce = e.object({
|
|
|
840
901
|
"null"
|
|
841
902
|
]).optional(),
|
|
842
903
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
843
|
-
}),
|
|
904
|
+
}), Pe = e.discriminatedUnion("name", [
|
|
844
905
|
e.object({
|
|
845
906
|
name: e.literal("txt"),
|
|
846
907
|
record: e.string(),
|
|
@@ -851,17 +912,17 @@ const Ce = e.object({
|
|
|
851
912
|
http_body: e.string(),
|
|
852
913
|
http_url: e.string()
|
|
853
914
|
})
|
|
854
|
-
]),
|
|
855
|
-
...
|
|
915
|
+
]), Me = e.object({
|
|
916
|
+
...xe.shape,
|
|
856
917
|
custom_domain_id: e.string(),
|
|
857
918
|
primary: e.boolean(),
|
|
858
919
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
859
920
|
origin_domain_name: e.string().optional(),
|
|
860
921
|
verification: e.object({
|
|
861
|
-
methods: e.array(
|
|
922
|
+
methods: e.array(Pe)
|
|
862
923
|
}).optional(),
|
|
863
924
|
tls_policy: e.string().optional()
|
|
864
|
-
}),
|
|
925
|
+
}), Ft = Me.extend({
|
|
865
926
|
tenant_id: e.string()
|
|
866
927
|
}), C = e.object({
|
|
867
928
|
id: e.string(),
|
|
@@ -869,17 +930,17 @@ const Ce = e.object({
|
|
|
869
930
|
visible: e.boolean().optional().default(!0)
|
|
870
931
|
}), l = C.extend({
|
|
871
932
|
category: e.literal("BLOCK").optional()
|
|
872
|
-
}),
|
|
933
|
+
}), He = l.extend({
|
|
873
934
|
type: e.literal("DIVIDER"),
|
|
874
935
|
config: e.object({
|
|
875
936
|
text: e.string().optional()
|
|
876
937
|
}).optional()
|
|
877
|
-
}),
|
|
938
|
+
}), Ge = l.extend({
|
|
878
939
|
type: e.literal("HTML"),
|
|
879
940
|
config: e.object({
|
|
880
941
|
content: e.string().optional()
|
|
881
942
|
}).optional()
|
|
882
|
-
}),
|
|
943
|
+
}), Be = l.extend({
|
|
883
944
|
type: e.literal("IMAGE"),
|
|
884
945
|
config: e.object({
|
|
885
946
|
src: e.string().optional(),
|
|
@@ -887,29 +948,29 @@ const Ce = e.object({
|
|
|
887
948
|
width: e.number().optional(),
|
|
888
949
|
height: e.number().optional()
|
|
889
950
|
}).optional()
|
|
890
|
-
}),
|
|
951
|
+
}), We = l.extend({
|
|
891
952
|
type: e.literal("JUMP_BUTTON"),
|
|
892
953
|
config: e.object({
|
|
893
954
|
text: e.string().optional(),
|
|
894
955
|
target_step: e.string().optional()
|
|
895
956
|
})
|
|
896
|
-
}),
|
|
957
|
+
}), Ke = l.extend({
|
|
897
958
|
type: e.literal("RESEND_BUTTON"),
|
|
898
959
|
config: e.object({
|
|
899
960
|
text: e.string().optional(),
|
|
900
961
|
resend_action: e.string().optional()
|
|
901
962
|
})
|
|
902
|
-
}),
|
|
963
|
+
}), ze = l.extend({
|
|
903
964
|
type: e.literal("NEXT_BUTTON"),
|
|
904
965
|
config: e.object({
|
|
905
966
|
text: e.string().optional()
|
|
906
967
|
})
|
|
907
|
-
}),
|
|
968
|
+
}), qe = l.extend({
|
|
908
969
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
909
970
|
config: e.object({
|
|
910
971
|
text: e.string().optional()
|
|
911
972
|
})
|
|
912
|
-
}),
|
|
973
|
+
}), Xe = l.extend({
|
|
913
974
|
type: e.literal("RICH_TEXT"),
|
|
914
975
|
config: e.object({
|
|
915
976
|
content: e.string().optional()
|
|
@@ -920,17 +981,17 @@ const Ce = e.object({
|
|
|
920
981
|
hint: e.string().min(1).max(500).optional(),
|
|
921
982
|
required: e.boolean().optional(),
|
|
922
983
|
sensitive: e.boolean().optional()
|
|
923
|
-
}),
|
|
984
|
+
}), Ve = T.extend({
|
|
924
985
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
925
986
|
config: e.object({
|
|
926
987
|
credential_type: e.string().optional()
|
|
927
988
|
})
|
|
928
|
-
}),
|
|
989
|
+
}), Ye = T.extend({
|
|
929
990
|
type: e.literal("GMAPS_ADDRESS"),
|
|
930
991
|
config: e.object({
|
|
931
992
|
api_key: e.string().optional()
|
|
932
993
|
})
|
|
933
|
-
}),
|
|
994
|
+
}), Qe = T.extend({
|
|
934
995
|
type: e.literal("RECAPTCHA"),
|
|
935
996
|
config: e.object({
|
|
936
997
|
site_key: e.string().optional()
|
|
@@ -948,12 +1009,12 @@ const Ce = e.object({
|
|
|
948
1009
|
).optional(),
|
|
949
1010
|
required: e.boolean().optional(),
|
|
950
1011
|
sensitive: e.boolean().optional()
|
|
951
|
-
}),
|
|
1012
|
+
}), Ze = n.extend({
|
|
952
1013
|
type: e.literal("BOOLEAN"),
|
|
953
1014
|
config: e.object({
|
|
954
1015
|
default_value: e.boolean().optional()
|
|
955
1016
|
}).optional()
|
|
956
|
-
}),
|
|
1017
|
+
}), $e = n.extend({
|
|
957
1018
|
type: e.literal("CARDS"),
|
|
958
1019
|
config: e.object({
|
|
959
1020
|
options: e.array(
|
|
@@ -966,7 +1027,7 @@ const Ce = e.object({
|
|
|
966
1027
|
).optional(),
|
|
967
1028
|
multi_select: e.boolean().optional()
|
|
968
1029
|
}).optional()
|
|
969
|
-
}),
|
|
1030
|
+
}), Je = n.extend({
|
|
970
1031
|
type: e.literal("CHOICE"),
|
|
971
1032
|
config: e.object({
|
|
972
1033
|
options: e.array(
|
|
@@ -979,7 +1040,7 @@ const Ce = e.object({
|
|
|
979
1040
|
multiple: e.boolean().optional(),
|
|
980
1041
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
981
1042
|
}).optional()
|
|
982
|
-
}),
|
|
1043
|
+
}), eo = n.extend({
|
|
983
1044
|
type: e.literal("CUSTOM"),
|
|
984
1045
|
config: e.object({
|
|
985
1046
|
component: e.string().optional(),
|
|
@@ -987,7 +1048,7 @@ const Ce = e.object({
|
|
|
987
1048
|
schema: e.record(e.any()).optional(),
|
|
988
1049
|
code: e.string().optional()
|
|
989
1050
|
})
|
|
990
|
-
}),
|
|
1051
|
+
}), oo = n.extend({
|
|
991
1052
|
type: e.literal("DATE"),
|
|
992
1053
|
config: e.object({
|
|
993
1054
|
format: e.string().optional(),
|
|
@@ -995,7 +1056,7 @@ const Ce = e.object({
|
|
|
995
1056
|
max: e.string().optional(),
|
|
996
1057
|
default_value: e.string().optional()
|
|
997
1058
|
}).optional()
|
|
998
|
-
}),
|
|
1059
|
+
}), to = n.extend({
|
|
999
1060
|
type: e.literal("DROPDOWN"),
|
|
1000
1061
|
config: e.object({
|
|
1001
1062
|
options: e.array(
|
|
@@ -1009,26 +1070,26 @@ const Ce = e.object({
|
|
|
1009
1070
|
multiple: e.boolean().optional(),
|
|
1010
1071
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1011
1072
|
}).optional()
|
|
1012
|
-
}),
|
|
1073
|
+
}), no = n.extend({
|
|
1013
1074
|
type: e.literal("EMAIL"),
|
|
1014
1075
|
config: e.object({
|
|
1015
1076
|
placeholder: e.string().optional(),
|
|
1016
1077
|
default_value: e.string().optional()
|
|
1017
1078
|
}).optional()
|
|
1018
|
-
}),
|
|
1079
|
+
}), io = n.extend({
|
|
1019
1080
|
type: e.literal("FILE"),
|
|
1020
1081
|
config: e.object({
|
|
1021
1082
|
accept: e.string().optional(),
|
|
1022
1083
|
max_size: e.number().optional(),
|
|
1023
1084
|
multiple: e.boolean().optional()
|
|
1024
1085
|
}).optional()
|
|
1025
|
-
}),
|
|
1086
|
+
}), ao = n.extend({
|
|
1026
1087
|
type: e.literal("LEGAL"),
|
|
1027
1088
|
config: e.object({
|
|
1028
1089
|
text: e.string(),
|
|
1029
1090
|
html: e.boolean().optional()
|
|
1030
1091
|
}).optional()
|
|
1031
|
-
}),
|
|
1092
|
+
}), so = n.extend({
|
|
1032
1093
|
type: e.literal("NUMBER"),
|
|
1033
1094
|
config: e.object({
|
|
1034
1095
|
placeholder: e.string().optional(),
|
|
@@ -1037,7 +1098,7 @@ const Ce = e.object({
|
|
|
1037
1098
|
step: e.number().optional(),
|
|
1038
1099
|
default_value: e.string().optional()
|
|
1039
1100
|
}).optional()
|
|
1040
|
-
}),
|
|
1101
|
+
}), ro = n.extend({
|
|
1041
1102
|
type: e.literal("PASSWORD"),
|
|
1042
1103
|
config: e.object({
|
|
1043
1104
|
placeholder: e.string().optional(),
|
|
@@ -1046,13 +1107,13 @@ const Ce = e.object({
|
|
|
1046
1107
|
forgot_password_link: e.string().optional(),
|
|
1047
1108
|
default_value: e.string().optional()
|
|
1048
1109
|
}).optional()
|
|
1049
|
-
}),
|
|
1110
|
+
}), lo = n.extend({
|
|
1050
1111
|
type: e.literal("PAYMENT"),
|
|
1051
1112
|
config: e.object({
|
|
1052
1113
|
provider: e.string().optional(),
|
|
1053
1114
|
currency: e.string().optional()
|
|
1054
1115
|
}).optional()
|
|
1055
|
-
}),
|
|
1116
|
+
}), po = n.extend({
|
|
1056
1117
|
type: e.literal("SOCIAL"),
|
|
1057
1118
|
config: e.object({
|
|
1058
1119
|
providers: e.array(e.string()).optional(),
|
|
@@ -1067,7 +1128,7 @@ const Ce = e.object({
|
|
|
1067
1128
|
})
|
|
1068
1129
|
).optional()
|
|
1069
1130
|
}).optional()
|
|
1070
|
-
}),
|
|
1131
|
+
}), co = n.extend({
|
|
1071
1132
|
type: e.literal("TEL"),
|
|
1072
1133
|
config: e.object({
|
|
1073
1134
|
placeholder: e.string().optional(),
|
|
@@ -1075,7 +1136,7 @@ const Ce = e.object({
|
|
|
1075
1136
|
default_value: e.string().optional(),
|
|
1076
1137
|
allow_email: e.boolean().optional()
|
|
1077
1138
|
}).optional()
|
|
1078
|
-
}),
|
|
1139
|
+
}), _o = n.extend({
|
|
1079
1140
|
type: e.literal("TEXT"),
|
|
1080
1141
|
config: e.object({
|
|
1081
1142
|
placeholder: e.string().optional(),
|
|
@@ -1083,54 +1144,54 @@ const Ce = e.object({
|
|
|
1083
1144
|
max_length: e.number().optional(),
|
|
1084
1145
|
default_value: e.string().optional()
|
|
1085
1146
|
}).optional()
|
|
1086
|
-
}),
|
|
1147
|
+
}), go = n.extend({
|
|
1087
1148
|
type: e.literal("COUNTRY"),
|
|
1088
1149
|
config: e.object({
|
|
1089
1150
|
placeholder: e.string().optional(),
|
|
1090
1151
|
default_value: e.string().optional()
|
|
1091
1152
|
}).optional()
|
|
1092
|
-
}),
|
|
1153
|
+
}), uo = n.extend({
|
|
1093
1154
|
type: e.literal("URL"),
|
|
1094
1155
|
config: e.object({
|
|
1095
1156
|
placeholder: e.string().optional(),
|
|
1096
1157
|
default_value: e.string().optional()
|
|
1097
1158
|
}).optional()
|
|
1098
|
-
}),
|
|
1099
|
-
Le,
|
|
1100
|
-
ve,
|
|
1101
|
-
ke,
|
|
1102
|
-
Ue,
|
|
1103
|
-
Fe,
|
|
1104
|
-
xe,
|
|
1105
|
-
Pe,
|
|
1106
|
-
Me
|
|
1107
|
-
]), ro = e.discriminatedUnion("type", [
|
|
1159
|
+
}), mo = e.discriminatedUnion("type", [
|
|
1108
1160
|
He,
|
|
1109
1161
|
Ge,
|
|
1110
|
-
Be
|
|
1111
|
-
]), lo = e.discriminatedUnion("type", [
|
|
1162
|
+
Be,
|
|
1112
1163
|
We,
|
|
1113
1164
|
Ke,
|
|
1114
1165
|
ze,
|
|
1115
|
-
io,
|
|
1116
1166
|
qe,
|
|
1117
|
-
Xe
|
|
1167
|
+
Xe
|
|
1168
|
+
]), ho = e.discriminatedUnion("type", [
|
|
1118
1169
|
Ve,
|
|
1119
1170
|
Ye,
|
|
1120
|
-
Qe
|
|
1171
|
+
Qe
|
|
1172
|
+
]), bo = e.discriminatedUnion("type", [
|
|
1121
1173
|
Ze,
|
|
1122
1174
|
$e,
|
|
1123
1175
|
Je,
|
|
1176
|
+
go,
|
|
1124
1177
|
eo,
|
|
1125
1178
|
oo,
|
|
1126
1179
|
to,
|
|
1127
1180
|
no,
|
|
1128
|
-
|
|
1129
|
-
|
|
1181
|
+
io,
|
|
1182
|
+
ao,
|
|
1130
1183
|
so,
|
|
1131
1184
|
ro,
|
|
1132
|
-
lo
|
|
1133
|
-
|
|
1185
|
+
lo,
|
|
1186
|
+
po,
|
|
1187
|
+
co,
|
|
1188
|
+
_o,
|
|
1189
|
+
uo
|
|
1190
|
+
]), v = e.union([
|
|
1191
|
+
mo,
|
|
1192
|
+
ho,
|
|
1193
|
+
bo
|
|
1194
|
+
]), xt = /* @__PURE__ */ new Set([
|
|
1134
1195
|
"BOOLEAN",
|
|
1135
1196
|
"CARDS",
|
|
1136
1197
|
"CHOICE",
|
|
@@ -1144,7 +1205,7 @@ const Ce = e.object({
|
|
|
1144
1205
|
"TEL",
|
|
1145
1206
|
"TEXT",
|
|
1146
1207
|
"URL"
|
|
1147
|
-
]),
|
|
1208
|
+
]), Pt = e.object({
|
|
1148
1209
|
id: e.string(),
|
|
1149
1210
|
type: e.literal("submit"),
|
|
1150
1211
|
label: e.string(),
|
|
@@ -1156,7 +1217,7 @@ const Ce = e.object({
|
|
|
1156
1217
|
}), f = e.object({
|
|
1157
1218
|
x: e.number(),
|
|
1158
1219
|
y: e.number()
|
|
1159
|
-
}),
|
|
1220
|
+
}), fo = e.object({
|
|
1160
1221
|
id: e.string(),
|
|
1161
1222
|
type: e.literal("FLOW"),
|
|
1162
1223
|
coordinates: f,
|
|
@@ -1165,7 +1226,7 @@ const Ce = e.object({
|
|
|
1165
1226
|
flow_id: e.string().max(30),
|
|
1166
1227
|
next_node: e.string().optional()
|
|
1167
1228
|
})
|
|
1168
|
-
}),
|
|
1229
|
+
}), Eo = e.object({
|
|
1169
1230
|
id: e.string(),
|
|
1170
1231
|
type: e.literal("ROUTER"),
|
|
1171
1232
|
coordinates: f,
|
|
@@ -1181,7 +1242,7 @@ const Ce = e.object({
|
|
|
1181
1242
|
),
|
|
1182
1243
|
fallback: e.string()
|
|
1183
1244
|
})
|
|
1184
|
-
}),
|
|
1245
|
+
}), So = e.object({
|
|
1185
1246
|
id: e.string(),
|
|
1186
1247
|
type: e.literal("STEP"),
|
|
1187
1248
|
coordinates: f,
|
|
@@ -1190,11 +1251,11 @@ const Ce = e.object({
|
|
|
1190
1251
|
components: e.array(v),
|
|
1191
1252
|
next_node: e.string().optional()
|
|
1192
1253
|
})
|
|
1193
|
-
}),
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
]),
|
|
1254
|
+
}), Ao = e.discriminatedUnion("type", [
|
|
1255
|
+
fo,
|
|
1256
|
+
Eo,
|
|
1257
|
+
So
|
|
1258
|
+
]), yo = e.object({
|
|
1198
1259
|
name: e.string().openapi({
|
|
1199
1260
|
description: "The name of the form"
|
|
1200
1261
|
}),
|
|
@@ -1207,7 +1268,7 @@ const Ce = e.object({
|
|
|
1207
1268
|
default: e.string().optional()
|
|
1208
1269
|
}).optional(),
|
|
1209
1270
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1210
|
-
nodes: e.array(
|
|
1271
|
+
nodes: e.array(Ao).optional(),
|
|
1211
1272
|
start: e.object({
|
|
1212
1273
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1213
1274
|
next_node: e.string().optional(),
|
|
@@ -1229,20 +1290,20 @@ const Ce = e.object({
|
|
|
1229
1290
|
}).optional()
|
|
1230
1291
|
}).openapi({
|
|
1231
1292
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1232
|
-
}),
|
|
1293
|
+
}), Mt = e.object({
|
|
1233
1294
|
...r.shape,
|
|
1234
|
-
...
|
|
1295
|
+
...yo.shape,
|
|
1235
1296
|
id: e.string()
|
|
1236
|
-
}),
|
|
1297
|
+
}), Io = e.object({
|
|
1237
1298
|
id: e.number().optional(),
|
|
1238
1299
|
text: e.string(),
|
|
1239
1300
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1240
|
-
}),
|
|
1301
|
+
}), Co = e.object({
|
|
1241
1302
|
id: e.string().optional(),
|
|
1242
1303
|
text: e.string(),
|
|
1243
1304
|
href: e.string(),
|
|
1244
1305
|
linkText: e.string().optional()
|
|
1245
|
-
}),
|
|
1306
|
+
}), Ht = e.object({
|
|
1246
1307
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1247
1308
|
name: e.string().optional(),
|
|
1248
1309
|
action: e.string(),
|
|
@@ -1250,18 +1311,18 @@ const Ce = e.object({
|
|
|
1250
1311
|
title: e.string().optional(),
|
|
1251
1312
|
description: e.string().optional(),
|
|
1252
1313
|
components: e.array(v),
|
|
1253
|
-
messages: e.array(
|
|
1254
|
-
links: e.array(
|
|
1314
|
+
messages: e.array(Io).optional(),
|
|
1315
|
+
links: e.array(Co).optional(),
|
|
1255
1316
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1256
1317
|
footer: e.string().optional()
|
|
1257
1318
|
});
|
|
1258
|
-
function
|
|
1319
|
+
function Gt(o) {
|
|
1259
1320
|
return o.category === "BLOCK";
|
|
1260
1321
|
}
|
|
1261
|
-
function
|
|
1322
|
+
function Bt(o) {
|
|
1262
1323
|
return o.category === "WIDGET";
|
|
1263
1324
|
}
|
|
1264
|
-
function
|
|
1325
|
+
function Wt(o) {
|
|
1265
1326
|
return o.category === "FIELD";
|
|
1266
1327
|
}
|
|
1267
1328
|
const k = e.enum([
|
|
@@ -1285,7 +1346,7 @@ const k = e.enum([
|
|
|
1285
1346
|
]), x = e.enum([
|
|
1286
1347
|
"ensure-username",
|
|
1287
1348
|
"set-preferred-username"
|
|
1288
|
-
]),
|
|
1349
|
+
]), Kt = {
|
|
1289
1350
|
"ensure-username": {
|
|
1290
1351
|
name: "Ensure Username",
|
|
1291
1352
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1301,52 +1362,52 @@ const k = e.enum([
|
|
|
1301
1362
|
synchronous: e.boolean().default(!1),
|
|
1302
1363
|
priority: e.number().optional(),
|
|
1303
1364
|
hook_id: e.string().optional()
|
|
1304
|
-
},
|
|
1365
|
+
}, To = e.object({
|
|
1305
1366
|
...m,
|
|
1306
1367
|
trigger_id: k,
|
|
1307
1368
|
url: e.string()
|
|
1308
|
-
}),
|
|
1369
|
+
}), Oo = e.object({
|
|
1309
1370
|
...m,
|
|
1310
1371
|
trigger_id: U,
|
|
1311
1372
|
form_id: e.string()
|
|
1312
|
-
}),
|
|
1373
|
+
}), No = e.object({
|
|
1313
1374
|
...m,
|
|
1314
1375
|
trigger_id: F,
|
|
1315
1376
|
template_id: x
|
|
1316
|
-
}),
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
]),
|
|
1377
|
+
}), zt = e.union([
|
|
1378
|
+
To,
|
|
1379
|
+
Oo,
|
|
1380
|
+
No
|
|
1381
|
+
]), wo = e.object({
|
|
1321
1382
|
...m,
|
|
1322
1383
|
trigger_id: k,
|
|
1323
1384
|
...r.shape,
|
|
1324
1385
|
hook_id: e.string(),
|
|
1325
1386
|
url: e.string()
|
|
1326
|
-
}),
|
|
1387
|
+
}), jo = e.object({
|
|
1327
1388
|
...m,
|
|
1328
1389
|
trigger_id: U,
|
|
1329
1390
|
...r.shape,
|
|
1330
1391
|
hook_id: e.string(),
|
|
1331
1392
|
form_id: e.string()
|
|
1332
|
-
}),
|
|
1393
|
+
}), Ro = e.object({
|
|
1333
1394
|
...m,
|
|
1334
1395
|
trigger_id: F,
|
|
1335
1396
|
...r.shape,
|
|
1336
1397
|
hook_id: e.string(),
|
|
1337
1398
|
template_id: x
|
|
1338
|
-
}),
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
]),
|
|
1399
|
+
}), qt = e.union([
|
|
1400
|
+
wo,
|
|
1401
|
+
jo,
|
|
1402
|
+
Ro
|
|
1403
|
+
]), Do = e.object({
|
|
1343
1404
|
name: e.string().optional()
|
|
1344
|
-
}),
|
|
1405
|
+
}), Lo = e.object({
|
|
1345
1406
|
email: e.string().optional()
|
|
1346
|
-
}),
|
|
1407
|
+
}), vo = e.object({
|
|
1347
1408
|
organization_id: e.string().max(50),
|
|
1348
|
-
inviter:
|
|
1349
|
-
invitee:
|
|
1409
|
+
inviter: Do,
|
|
1410
|
+
invitee: Lo,
|
|
1350
1411
|
invitation_url: e.string().url(),
|
|
1351
1412
|
client_id: e.string(),
|
|
1352
1413
|
connection_id: e.string().optional(),
|
|
@@ -1355,13 +1416,13 @@ const k = e.enum([
|
|
|
1355
1416
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1356
1417
|
roles: e.array(e.string()).default([]).optional(),
|
|
1357
1418
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1358
|
-
}),
|
|
1419
|
+
}), Xt = e.object({
|
|
1359
1420
|
id: e.string(),
|
|
1360
1421
|
organization_id: e.string().max(50),
|
|
1361
1422
|
created_at: e.string().datetime(),
|
|
1362
1423
|
expires_at: e.string().datetime(),
|
|
1363
1424
|
ticket_id: e.string().optional()
|
|
1364
|
-
}).extend(
|
|
1425
|
+
}).extend(vo.shape), ko = e.object({
|
|
1365
1426
|
alg: e.enum([
|
|
1366
1427
|
"RS256",
|
|
1367
1428
|
"RS384",
|
|
@@ -1380,9 +1441,9 @@ const k = e.enum([
|
|
|
1380
1441
|
x5t: e.string().optional(),
|
|
1381
1442
|
x5c: e.array(e.string()).optional(),
|
|
1382
1443
|
use: e.enum(["sig", "enc"]).optional()
|
|
1383
|
-
}),
|
|
1384
|
-
keys: e.array(
|
|
1385
|
-
}),
|
|
1444
|
+
}), Vt = e.object({
|
|
1445
|
+
keys: e.array(ko)
|
|
1446
|
+
}), Yt = e.object({
|
|
1386
1447
|
issuer: e.string(),
|
|
1387
1448
|
authorization_endpoint: e.string(),
|
|
1388
1449
|
token_endpoint: e.string(),
|
|
@@ -1405,17 +1466,17 @@ const k = e.enum([
|
|
|
1405
1466
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1406
1467
|
});
|
|
1407
1468
|
var P = /* @__PURE__ */ ((o) => (o.PENDING = "pending", o.AUTHENTICATED = "authenticated", o.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", o.AWAITING_MFA = "awaiting_mfa", o.AWAITING_HOOK = "awaiting_hook", o.AWAITING_CONTINUATION = "awaiting_continuation", o.COMPLETED = "completed", o.FAILED = "failed", o.EXPIRED = "expired", o))(P || {});
|
|
1408
|
-
const
|
|
1469
|
+
const Uo = e.nativeEnum(P), Fo = e.object({
|
|
1409
1470
|
csrf_token: e.string(),
|
|
1410
1471
|
auth0Client: e.string().optional(),
|
|
1411
|
-
authParams:
|
|
1472
|
+
authParams: Le,
|
|
1412
1473
|
expires_at: e.string(),
|
|
1413
1474
|
deleted_at: e.string().optional(),
|
|
1414
1475
|
ip: e.string().optional(),
|
|
1415
1476
|
useragent: e.string().optional(),
|
|
1416
1477
|
session_id: e.string().optional(),
|
|
1417
1478
|
authorization_url: e.string().optional(),
|
|
1418
|
-
state:
|
|
1479
|
+
state: Uo.optional().default(
|
|
1419
1480
|
"pending"
|
|
1420
1481
|
/* PENDING */
|
|
1421
1482
|
),
|
|
@@ -1428,14 +1489,14 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1428
1489
|
// The connection used to authenticate (may differ from primary user's connection)
|
|
1429
1490
|
}).openapi({
|
|
1430
1491
|
description: "This represents a login sesion"
|
|
1431
|
-
}),
|
|
1432
|
-
...
|
|
1492
|
+
}), Qt = e.object({
|
|
1493
|
+
...Fo.shape,
|
|
1433
1494
|
id: e.string().openapi({
|
|
1434
1495
|
description: "This is is used as the state in the universal login"
|
|
1435
1496
|
}),
|
|
1436
1497
|
created_at: e.string(),
|
|
1437
1498
|
updated_at: e.string()
|
|
1438
|
-
}),
|
|
1499
|
+
}), xo = {
|
|
1439
1500
|
// Network & System
|
|
1440
1501
|
ACLS_SUMMARY: "acls_summary",
|
|
1441
1502
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1606,24 +1667,24 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1606
1667
|
WARNING_DURING_LOGIN: "w",
|
|
1607
1668
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1608
1669
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1609
|
-
},
|
|
1610
|
-
(o) => Object.values(
|
|
1670
|
+
}, Po = e.string().refine(
|
|
1671
|
+
(o) => Object.values(xo).includes(o),
|
|
1611
1672
|
{ message: "Invalid log type" }
|
|
1612
|
-
),
|
|
1673
|
+
), Mo = e.object({
|
|
1613
1674
|
name: e.string(),
|
|
1614
1675
|
version: e.string(),
|
|
1615
1676
|
env: e.object({
|
|
1616
1677
|
node: e.string().optional()
|
|
1617
1678
|
}).optional()
|
|
1618
|
-
}),
|
|
1679
|
+
}), Ho = e.object({
|
|
1619
1680
|
country_code: e.string().length(2),
|
|
1620
1681
|
city_name: e.string(),
|
|
1621
1682
|
latitude: e.string(),
|
|
1622
1683
|
longitude: e.string(),
|
|
1623
1684
|
time_zone: e.string(),
|
|
1624
1685
|
continent_code: e.string()
|
|
1625
|
-
}),
|
|
1626
|
-
type:
|
|
1686
|
+
}), Go = e.object({
|
|
1687
|
+
type: Po,
|
|
1627
1688
|
date: e.string(),
|
|
1628
1689
|
description: e.string().optional(),
|
|
1629
1690
|
ip: e.string().optional(),
|
|
@@ -1642,19 +1703,19 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1642
1703
|
strategy: e.string().optional(),
|
|
1643
1704
|
strategy_type: e.string().optional(),
|
|
1644
1705
|
hostname: e.string().optional(),
|
|
1645
|
-
auth0_client:
|
|
1706
|
+
auth0_client: Mo.optional(),
|
|
1646
1707
|
log_id: e.string().optional(),
|
|
1647
|
-
location_info:
|
|
1648
|
-
}),
|
|
1649
|
-
...
|
|
1708
|
+
location_info: Ho.optional()
|
|
1709
|
+
}), Zt = e.object({
|
|
1710
|
+
...Go.shape,
|
|
1650
1711
|
log_id: e.string()
|
|
1651
|
-
}),
|
|
1712
|
+
}), Bo = e.object({
|
|
1652
1713
|
id: e.string().optional(),
|
|
1653
1714
|
user_id: e.string(),
|
|
1654
1715
|
password: e.string(),
|
|
1655
1716
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
1656
1717
|
is_current: e.boolean().default(!0)
|
|
1657
|
-
}),
|
|
1718
|
+
}), $t = Bo.extend({
|
|
1658
1719
|
id: e.string(),
|
|
1659
1720
|
created_at: e.string(),
|
|
1660
1721
|
updated_at: e.string()
|
|
@@ -1665,7 +1726,7 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1665
1726
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
1666
1727
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
1667
1728
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
1668
|
-
}),
|
|
1729
|
+
}), Wo = e.object({
|
|
1669
1730
|
id: e.string(),
|
|
1670
1731
|
revoked_at: e.string().optional(),
|
|
1671
1732
|
used_at: e.string().optional(),
|
|
@@ -1677,13 +1738,13 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1677
1738
|
"Metadata related to the device used in the session"
|
|
1678
1739
|
),
|
|
1679
1740
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1680
|
-
}),
|
|
1741
|
+
}), Jt = e.object({
|
|
1681
1742
|
created_at: e.string(),
|
|
1682
1743
|
updated_at: e.string(),
|
|
1683
1744
|
authenticated_at: e.string(),
|
|
1684
1745
|
last_interaction_at: e.string(),
|
|
1685
|
-
...
|
|
1686
|
-
}),
|
|
1746
|
+
...Wo.shape
|
|
1747
|
+
}), en = e.object({
|
|
1687
1748
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1688
1749
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1689
1750
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1708,7 +1769,7 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1708
1769
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
1709
1770
|
description: "The type of the signing key"
|
|
1710
1771
|
})
|
|
1711
|
-
}),
|
|
1772
|
+
}), Ko = e.object({
|
|
1712
1773
|
id: e.string().optional(),
|
|
1713
1774
|
// Basic settings
|
|
1714
1775
|
audience: e.string(),
|
|
@@ -1863,14 +1924,14 @@ const No = e.nativeEnum(P), wo = e.object({
|
|
|
1863
1924
|
message: e.string().optional()
|
|
1864
1925
|
}).optional()
|
|
1865
1926
|
}).optional()
|
|
1866
|
-
}),
|
|
1927
|
+
}), on = e.object({
|
|
1867
1928
|
created_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1868
1929
|
updated_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1869
|
-
...
|
|
1930
|
+
...Ko.shape,
|
|
1870
1931
|
id: e.string()
|
|
1871
1932
|
});
|
|
1872
|
-
var
|
|
1873
|
-
const
|
|
1933
|
+
var zo = /* @__PURE__ */ ((o) => (o.RefreshToken = "refresh_token", o.AuthorizationCode = "authorization_code", o.ClientCredential = "client_credentials", o.Passwordless = "passwordless", o.Password = "password", o.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", o))(zo || {});
|
|
1934
|
+
const tn = e.object({
|
|
1874
1935
|
access_token: e.string(),
|
|
1875
1936
|
id_token: e.string().optional(),
|
|
1876
1937
|
scope: e.string().optional(),
|
|
@@ -1883,7 +1944,7 @@ e.object({
|
|
|
1883
1944
|
code: e.string(),
|
|
1884
1945
|
state: e.string().optional()
|
|
1885
1946
|
});
|
|
1886
|
-
const
|
|
1947
|
+
const qo = e.object({
|
|
1887
1948
|
button_border_radius: e.number(),
|
|
1888
1949
|
button_border_weight: e.number(),
|
|
1889
1950
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -1893,7 +1954,7 @@ const Po = e.object({
|
|
|
1893
1954
|
show_widget_shadow: e.boolean(),
|
|
1894
1955
|
widget_border_weight: e.number(),
|
|
1895
1956
|
widget_corner_radius: e.number()
|
|
1896
|
-
}),
|
|
1957
|
+
}), Xo = e.object({
|
|
1897
1958
|
base_focus_color: e.string(),
|
|
1898
1959
|
base_hover_color: e.string(),
|
|
1899
1960
|
body_text: e.string(),
|
|
@@ -1916,7 +1977,7 @@ const Po = e.object({
|
|
|
1916
1977
|
}), g = e.object({
|
|
1917
1978
|
bold: e.boolean(),
|
|
1918
1979
|
size: e.number()
|
|
1919
|
-
}),
|
|
1980
|
+
}), Vo = e.object({
|
|
1920
1981
|
body_text: g,
|
|
1921
1982
|
buttons_text: g,
|
|
1922
1983
|
font_url: e.string(),
|
|
@@ -1926,31 +1987,31 @@ const Po = e.object({
|
|
|
1926
1987
|
reference_text_size: e.number(),
|
|
1927
1988
|
subtitle: g,
|
|
1928
1989
|
title: g
|
|
1929
|
-
}),
|
|
1990
|
+
}), Yo = e.object({
|
|
1930
1991
|
background_color: e.string(),
|
|
1931
1992
|
background_image_url: e.string(),
|
|
1932
1993
|
page_layout: e.enum(["center", "left", "right"])
|
|
1933
|
-
}),
|
|
1994
|
+
}), Qo = e.object({
|
|
1934
1995
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
1935
1996
|
logo_height: e.number(),
|
|
1936
1997
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
1937
1998
|
logo_url: e.string(),
|
|
1938
1999
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
1939
|
-
}),
|
|
1940
|
-
borders:
|
|
1941
|
-
colors:
|
|
2000
|
+
}), Zo = e.object({
|
|
2001
|
+
borders: qo,
|
|
2002
|
+
colors: Xo,
|
|
1942
2003
|
displayName: e.string(),
|
|
1943
|
-
fonts:
|
|
1944
|
-
page_background:
|
|
1945
|
-
widget:
|
|
1946
|
-
}),
|
|
2004
|
+
fonts: Vo,
|
|
2005
|
+
page_background: Yo,
|
|
2006
|
+
widget: Qo
|
|
2007
|
+
}), nn = Zo.extend({
|
|
1947
2008
|
themeId: e.string()
|
|
1948
|
-
}),
|
|
2009
|
+
}), an = e.object({
|
|
1949
2010
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
1950
2011
|
identifier_first: e.boolean().default(!0),
|
|
1951
2012
|
password_first: e.boolean().default(!1),
|
|
1952
2013
|
webauthn_platform_first_factor: e.boolean()
|
|
1953
|
-
}),
|
|
2014
|
+
}), sn = e.object({
|
|
1954
2015
|
name: e.string(),
|
|
1955
2016
|
enabled: e.boolean().optional().default(!0),
|
|
1956
2017
|
default_from_address: e.string().optional(),
|
|
@@ -1980,7 +2041,7 @@ const Po = e.object({
|
|
|
1980
2041
|
})
|
|
1981
2042
|
]),
|
|
1982
2043
|
settings: e.object({}).optional()
|
|
1983
|
-
}),
|
|
2044
|
+
}), $o = e.object({
|
|
1984
2045
|
// The actual refresh token value (primary key).
|
|
1985
2046
|
id: e.string(),
|
|
1986
2047
|
// Link to the login session
|
|
@@ -2001,21 +2062,21 @@ const Po = e.object({
|
|
|
2001
2062
|
})
|
|
2002
2063
|
),
|
|
2003
2064
|
rotating: e.boolean()
|
|
2004
|
-
}),
|
|
2065
|
+
}), rn = e.object({
|
|
2005
2066
|
// When the refresh token record was created.
|
|
2006
2067
|
created_at: e.string(),
|
|
2007
2068
|
// Spread in the rest of the refresh token properties.
|
|
2008
|
-
|
|
2009
|
-
}),
|
|
2069
|
+
...$o.shape
|
|
2070
|
+
}), ln = e.object({
|
|
2010
2071
|
to: e.string(),
|
|
2011
2072
|
message: e.string()
|
|
2012
|
-
}),
|
|
2073
|
+
}), pn = e.object({
|
|
2013
2074
|
name: e.string(),
|
|
2014
2075
|
options: e.object({})
|
|
2015
|
-
}),
|
|
2076
|
+
}), Jo = e.object({
|
|
2016
2077
|
value: e.string(),
|
|
2017
2078
|
description: e.string().optional()
|
|
2018
|
-
}),
|
|
2079
|
+
}), et = e.object({
|
|
2019
2080
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2020
2081
|
enforce_policies: e.boolean().optional(),
|
|
2021
2082
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2025,11 +2086,11 @@ const Po = e.object({
|
|
|
2025
2086
|
mtls: e.object({
|
|
2026
2087
|
bound_access_tokens: e.boolean().optional()
|
|
2027
2088
|
}).optional()
|
|
2028
|
-
}),
|
|
2089
|
+
}), ot = e.object({
|
|
2029
2090
|
id: e.string().optional(),
|
|
2030
2091
|
name: e.string(),
|
|
2031
2092
|
identifier: e.string(),
|
|
2032
|
-
scopes: e.array(
|
|
2093
|
+
scopes: e.array(Jo).optional(),
|
|
2033
2094
|
signing_alg: e.string().optional(),
|
|
2034
2095
|
signing_secret: e.string().optional(),
|
|
2035
2096
|
token_lifetime: e.number().optional(),
|
|
@@ -2037,30 +2098,30 @@ const Po = e.object({
|
|
|
2037
2098
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2038
2099
|
allow_offline_access: e.boolean().optional(),
|
|
2039
2100
|
verificationKey: e.string().optional(),
|
|
2040
|
-
options:
|
|
2101
|
+
options: et.optional(),
|
|
2041
2102
|
is_system: e.boolean().optional(),
|
|
2042
2103
|
metadata: e.record(e.any()).optional()
|
|
2043
|
-
}),
|
|
2044
|
-
...
|
|
2104
|
+
}), tt = e.object({
|
|
2105
|
+
...ot.shape,
|
|
2045
2106
|
created_at: e.string().optional(),
|
|
2046
2107
|
updated_at: e.string().optional()
|
|
2047
|
-
}),
|
|
2108
|
+
}), cn = e.array(tt), nt = e.object({
|
|
2048
2109
|
role_id: e.string(),
|
|
2049
2110
|
resource_server_identifier: e.string(),
|
|
2050
2111
|
permission_name: e.string()
|
|
2051
|
-
}),
|
|
2052
|
-
...
|
|
2112
|
+
}), it = e.object({
|
|
2113
|
+
...nt.shape,
|
|
2053
2114
|
created_at: e.string()
|
|
2054
|
-
}),
|
|
2115
|
+
}), _n = e.array(it), at = e.object({
|
|
2055
2116
|
user_id: e.string(),
|
|
2056
2117
|
resource_server_identifier: e.string(),
|
|
2057
2118
|
permission_name: e.string(),
|
|
2058
2119
|
organization_id: e.string().optional()
|
|
2059
|
-
}),
|
|
2060
|
-
...
|
|
2120
|
+
}), st = e.object({
|
|
2121
|
+
...at.shape,
|
|
2061
2122
|
tenant_id: e.string(),
|
|
2062
2123
|
created_at: e.string().optional()
|
|
2063
|
-
}),
|
|
2124
|
+
}), dn = e.array(st), rt = e.object({
|
|
2064
2125
|
user_id: e.string(),
|
|
2065
2126
|
resource_server_identifier: e.string(),
|
|
2066
2127
|
resource_server_name: e.string(),
|
|
@@ -2068,17 +2129,17 @@ const Po = e.object({
|
|
|
2068
2129
|
description: e.string().nullable().optional(),
|
|
2069
2130
|
created_at: e.string().optional(),
|
|
2070
2131
|
organization_id: e.string().optional()
|
|
2071
|
-
}),
|
|
2072
|
-
|
|
2073
|
-
),
|
|
2132
|
+
}), gn = e.array(
|
|
2133
|
+
rt
|
|
2134
|
+
), lt = e.object({
|
|
2074
2135
|
user_id: e.string(),
|
|
2075
2136
|
role_id: e.string(),
|
|
2076
2137
|
organization_id: e.string().optional()
|
|
2077
|
-
}),
|
|
2078
|
-
...
|
|
2138
|
+
}), pt = e.object({
|
|
2139
|
+
...lt.shape,
|
|
2079
2140
|
tenant_id: e.string(),
|
|
2080
2141
|
created_at: e.string().optional()
|
|
2081
|
-
}),
|
|
2142
|
+
}), un = e.array(pt), ct = e.object({
|
|
2082
2143
|
id: e.string().optional().openapi({
|
|
2083
2144
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2084
2145
|
}),
|
|
@@ -2092,13 +2153,13 @@ const Po = e.object({
|
|
|
2092
2153
|
metadata: e.record(e.any()).optional().openapi({
|
|
2093
2154
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2094
2155
|
})
|
|
2095
|
-
}),
|
|
2156
|
+
}), _t = ct.extend({
|
|
2096
2157
|
id: e.string().openapi({
|
|
2097
2158
|
description: "The unique identifier of the role"
|
|
2098
2159
|
}),
|
|
2099
2160
|
created_at: e.string().optional(),
|
|
2100
2161
|
updated_at: e.string().optional()
|
|
2101
|
-
}),
|
|
2162
|
+
}), mn = e.array(_t), dt = e.object({
|
|
2102
2163
|
logo_url: e.string().optional().openapi({
|
|
2103
2164
|
description: "URL of the organization's logo"
|
|
2104
2165
|
}),
|
|
@@ -2110,7 +2171,7 @@ const Po = e.object({
|
|
|
2110
2171
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2111
2172
|
})
|
|
2112
2173
|
}).optional()
|
|
2113
|
-
}).optional(),
|
|
2174
|
+
}).optional(), gt = e.object({
|
|
2114
2175
|
connection_id: e.string().openapi({
|
|
2115
2176
|
description: "ID of the connection"
|
|
2116
2177
|
}),
|
|
@@ -2123,7 +2184,7 @@ const Po = e.object({
|
|
|
2123
2184
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2124
2185
|
description: "Whether signup is enabled for this connection"
|
|
2125
2186
|
})
|
|
2126
|
-
}),
|
|
2187
|
+
}), ut = e.object({
|
|
2127
2188
|
client_credentials: e.object({
|
|
2128
2189
|
enforce: e.boolean().default(!1).openapi({
|
|
2129
2190
|
description: "Whether to enforce token quota limits"
|
|
@@ -2135,7 +2196,7 @@ const Po = e.object({
|
|
|
2135
2196
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2136
2197
|
})
|
|
2137
2198
|
}).optional()
|
|
2138
|
-
}).optional(),
|
|
2199
|
+
}).optional(), mt = e.object({
|
|
2139
2200
|
id: e.string().optional(),
|
|
2140
2201
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2141
2202
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2145,34 +2206,34 @@ const Po = e.object({
|
|
|
2145
2206
|
display_name: e.string().optional().openapi({
|
|
2146
2207
|
description: "The display name of the organization"
|
|
2147
2208
|
}),
|
|
2148
|
-
branding:
|
|
2209
|
+
branding: dt,
|
|
2149
2210
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2150
2211
|
description: "Custom metadata for the organization"
|
|
2151
2212
|
}),
|
|
2152
|
-
enabled_connections: e.array(
|
|
2213
|
+
enabled_connections: e.array(gt).default([]).optional().openapi({
|
|
2153
2214
|
description: "List of enabled connections for the organization"
|
|
2154
2215
|
}),
|
|
2155
|
-
token_quota:
|
|
2156
|
-
}),
|
|
2157
|
-
...
|
|
2216
|
+
token_quota: ut
|
|
2217
|
+
}), hn = e.object({
|
|
2218
|
+
...mt.shape,
|
|
2158
2219
|
...r.shape,
|
|
2159
2220
|
id: e.string(),
|
|
2160
2221
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2161
2222
|
name: e.string().min(1).openapi({
|
|
2162
2223
|
description: "The name of the organization"
|
|
2163
2224
|
})
|
|
2164
|
-
}),
|
|
2225
|
+
}), ht = e.object({
|
|
2165
2226
|
user_id: e.string().openapi({
|
|
2166
2227
|
description: "ID of the user"
|
|
2167
2228
|
}),
|
|
2168
2229
|
organization_id: e.string().openapi({
|
|
2169
2230
|
description: "ID of the organization"
|
|
2170
2231
|
})
|
|
2171
|
-
}),
|
|
2172
|
-
...
|
|
2232
|
+
}), bn = e.object({
|
|
2233
|
+
...ht.shape,
|
|
2173
2234
|
...r.shape,
|
|
2174
2235
|
id: e.string()
|
|
2175
|
-
}),
|
|
2236
|
+
}), fn = e.object({
|
|
2176
2237
|
// Session settings
|
|
2177
2238
|
idle_session_lifetime: e.number().optional(),
|
|
2178
2239
|
session_lifetime: e.number().optional(),
|
|
@@ -2272,7 +2333,7 @@ const Po = e.object({
|
|
|
2272
2333
|
message: e.string().optional()
|
|
2273
2334
|
}).optional()
|
|
2274
2335
|
}).optional()
|
|
2275
|
-
}),
|
|
2336
|
+
}), En = e.object({
|
|
2276
2337
|
date: e.string().openapi({
|
|
2277
2338
|
description: "Date these events occurred in ISO 8601 format",
|
|
2278
2339
|
example: "2025-12-19"
|
|
@@ -2297,10 +2358,10 @@ const Po = e.object({
|
|
|
2297
2358
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2298
2359
|
example: "2025-12-19T00:00:00.000Z"
|
|
2299
2360
|
})
|
|
2300
|
-
}),
|
|
2361
|
+
}), Sn = e.number().openapi({
|
|
2301
2362
|
description: "Number of active users in the last 30 days",
|
|
2302
2363
|
example: 1234
|
|
2303
|
-
}),
|
|
2364
|
+
}), bt = e.enum([
|
|
2304
2365
|
"login",
|
|
2305
2366
|
"login-id",
|
|
2306
2367
|
"login-password",
|
|
@@ -2329,17 +2390,17 @@ const Po = e.object({
|
|
|
2329
2390
|
"custom-form",
|
|
2330
2391
|
"login-passwordless",
|
|
2331
2392
|
"mfa-login-options"
|
|
2332
|
-
]),
|
|
2393
|
+
]), ft = e.record(e.string(), e.record(e.string(), e.string())).openapi({
|
|
2333
2394
|
type: "object",
|
|
2334
2395
|
additionalProperties: {
|
|
2335
2396
|
type: "object",
|
|
2336
2397
|
additionalProperties: { type: "string" }
|
|
2337
2398
|
}
|
|
2338
|
-
}),
|
|
2339
|
-
prompt:
|
|
2399
|
+
}), An = e.object({
|
|
2400
|
+
prompt: bt,
|
|
2340
2401
|
language: e.string(),
|
|
2341
|
-
custom_text:
|
|
2342
|
-
}),
|
|
2402
|
+
custom_text: ft
|
|
2403
|
+
}), yn = {
|
|
2343
2404
|
EMAIL: "email",
|
|
2344
2405
|
SMS: "sms",
|
|
2345
2406
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2354,11 +2415,11 @@ const Po = e.object({
|
|
|
2354
2415
|
SAMLP: "samlp",
|
|
2355
2416
|
WAAD: "waad",
|
|
2356
2417
|
ADFS: "adfs"
|
|
2357
|
-
},
|
|
2418
|
+
}, In = {
|
|
2358
2419
|
DATABASE: "database",
|
|
2359
2420
|
SOCIAL: "social",
|
|
2360
2421
|
PASSWORDLESS: "passwordless"
|
|
2361
|
-
},
|
|
2422
|
+
}, Et = e.enum([
|
|
2362
2423
|
"phone",
|
|
2363
2424
|
"totp",
|
|
2364
2425
|
"email",
|
|
@@ -2368,7 +2429,7 @@ const Po = e.object({
|
|
|
2368
2429
|
"passkey"
|
|
2369
2430
|
]), H = e.object({
|
|
2370
2431
|
user_id: e.string(),
|
|
2371
|
-
type:
|
|
2432
|
+
type: Et,
|
|
2372
2433
|
// Phone-specific
|
|
2373
2434
|
phone_number: e.string().optional(),
|
|
2374
2435
|
// TOTP-specific
|
|
@@ -2402,19 +2463,19 @@ function G(o, t) {
|
|
|
2402
2463
|
path: ["public_key"]
|
|
2403
2464
|
}));
|
|
2404
2465
|
}
|
|
2405
|
-
const
|
|
2466
|
+
const Cn = H.superRefine(G), Tn = e.object({
|
|
2406
2467
|
...H.shape,
|
|
2407
2468
|
id: e.string(),
|
|
2408
2469
|
created_at: e.string(),
|
|
2409
2470
|
updated_at: e.string()
|
|
2410
2471
|
}).superRefine(G);
|
|
2411
|
-
function
|
|
2472
|
+
function On(o) {
|
|
2412
2473
|
const [t, i] = o.split("|");
|
|
2413
2474
|
if (!t || !i)
|
|
2414
2475
|
throw new Error(`Invalid user_id: ${o}`);
|
|
2415
2476
|
return { connection: t, id: i };
|
|
2416
2477
|
}
|
|
2417
|
-
function
|
|
2478
|
+
function Nn(o) {
|
|
2418
2479
|
const {
|
|
2419
2480
|
primary: t,
|
|
2420
2481
|
secondaries: i,
|
|
@@ -2439,10 +2500,10 @@ function fn(o) {
|
|
|
2439
2500
|
`Passthrough adapter: secondary write failed for ${a}:`,
|
|
2440
2501
|
b
|
|
2441
2502
|
);
|
|
2442
|
-
} catch (
|
|
2503
|
+
} catch (y) {
|
|
2443
2504
|
console.error(
|
|
2444
2505
|
`Passthrough adapter: onError handler threw for ${a}:`,
|
|
2445
|
-
|
|
2506
|
+
y
|
|
2446
2507
|
);
|
|
2447
2508
|
}
|
|
2448
2509
|
}
|
|
@@ -2455,11 +2516,11 @@ function fn(o) {
|
|
|
2455
2516
|
};
|
|
2456
2517
|
return new Proxy(t, E);
|
|
2457
2518
|
}
|
|
2458
|
-
function
|
|
2519
|
+
function wn(o) {
|
|
2459
2520
|
return o;
|
|
2460
2521
|
}
|
|
2461
|
-
function
|
|
2462
|
-
var E, p, a, c, _, S, d, s, h, A, b,
|
|
2522
|
+
function jn(o) {
|
|
2523
|
+
var E, p, a, c, _, S, d, s, h, A, b, y;
|
|
2463
2524
|
const t = o == null ? void 0 : o.options;
|
|
2464
2525
|
if (!t)
|
|
2465
2526
|
return {
|
|
@@ -2482,167 +2543,176 @@ function Sn(o) {
|
|
|
2482
2543
|
usernameIdentifierActive: t.requires_username === !0,
|
|
2483
2544
|
emailIdentifierActive: !0,
|
|
2484
2545
|
usernameMinLength: ((A = (h = t.validation) == null ? void 0 : h.username) == null ? void 0 : A.min) ?? 1,
|
|
2485
|
-
usernameMaxLength: ((
|
|
2546
|
+
usernameMaxLength: ((y = (b = t.validation) == null ? void 0 : b.username) == null ? void 0 : y.max) ?? 15
|
|
2486
2547
|
};
|
|
2487
2548
|
}
|
|
2488
2549
|
export {
|
|
2489
|
-
|
|
2490
|
-
|
|
2550
|
+
It as Auth0ActionEnum,
|
|
2551
|
+
Mo as Auth0Client,
|
|
2491
2552
|
D as AuthorizationResponseMode,
|
|
2492
|
-
|
|
2553
|
+
R as AuthorizationResponseType,
|
|
2493
2554
|
L as CodeChallengeMethod,
|
|
2494
|
-
|
|
2555
|
+
j as ComponentCategory,
|
|
2495
2556
|
w as ComponentType,
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2557
|
+
Ct as EmailActionEnum,
|
|
2558
|
+
xt as FORM_FIELD_TYPES,
|
|
2559
|
+
yt as FlowActionTypeEnum,
|
|
2560
|
+
zo as GrantType,
|
|
2561
|
+
Ho as LocationInfo,
|
|
2562
|
+
xo as LogTypes,
|
|
2502
2563
|
P as LoginSessionState,
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2564
|
+
Ie as NodeType,
|
|
2565
|
+
ne as RedirectTargetEnum,
|
|
2566
|
+
yn as Strategy,
|
|
2567
|
+
In as StrategyType,
|
|
2568
|
+
Oe as actionNodeSchema,
|
|
2569
|
+
Sn as activeUsersResponseSchema,
|
|
2570
|
+
X as actorSchema,
|
|
2571
|
+
pe as addressSchema,
|
|
2572
|
+
q as auditCategorySchema,
|
|
2573
|
+
J as auditEventInsertSchema,
|
|
2574
|
+
At as auditEventSchema,
|
|
2575
|
+
$ as auth0ClientSchema,
|
|
2576
|
+
Lt as auth0FlowInsertSchema,
|
|
2577
|
+
De as auth0FlowSchema,
|
|
2578
|
+
Ot as auth0QuerySchema,
|
|
2579
|
+
oe as auth0UpdateUserActionSchema,
|
|
2580
|
+
wt as auth0UserResponseSchema,
|
|
2581
|
+
Le as authParamsSchema,
|
|
2582
|
+
Cn as authenticationMethodInsertSchema,
|
|
2583
|
+
Tn as authenticationMethodSchema,
|
|
2584
|
+
Et as authenticationMethodTypeSchema,
|
|
2519
2585
|
N as baseUserSchema,
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2586
|
+
mo as blockComponentSchema,
|
|
2587
|
+
qo as bordersSchema,
|
|
2588
|
+
vt as brandingSchema,
|
|
2589
|
+
fe as buttonComponentSchema,
|
|
2590
|
+
me as clientGrantInsertSchema,
|
|
2591
|
+
Dt as clientGrantListSchema,
|
|
2592
|
+
he as clientGrantSchema,
|
|
2593
|
+
ue as clientInsertSchema,
|
|
2594
|
+
Rt as clientSchema,
|
|
2595
|
+
ke as codeInsertSchema,
|
|
2596
|
+
kt as codeSchema,
|
|
2597
|
+
ve as codeTypeSchema,
|
|
2598
|
+
Xo as colorsSchema,
|
|
2599
|
+
Io as componentMessageSchema,
|
|
2600
|
+
ye as componentSchema,
|
|
2601
|
+
Fe as connectionInsertSchema,
|
|
2602
|
+
Ue as connectionOptionsSchema,
|
|
2603
|
+
Ut as connectionSchema,
|
|
2538
2604
|
u as coordinatesSchema,
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2605
|
+
Nn as createPassthroughAdapter,
|
|
2606
|
+
wn as createWriteOnlyAdapter,
|
|
2607
|
+
xe as customDomainInsertSchema,
|
|
2608
|
+
Me as customDomainSchema,
|
|
2609
|
+
Ft as customDomainWithTenantIdSchema,
|
|
2610
|
+
An as customTextEntrySchema,
|
|
2611
|
+
ft as customTextSchema,
|
|
2612
|
+
En as dailyStatsSchema,
|
|
2613
|
+
sn as emailProviderSchema,
|
|
2614
|
+
ee as emailVerificationRulesSchema,
|
|
2615
|
+
te as emailVerifyActionSchema,
|
|
2616
|
+
Re as endingSchema,
|
|
2617
|
+
bo as fieldComponentSchema,
|
|
2618
|
+
ae as flowActionStepSchema,
|
|
2619
|
+
se as flowInsertSchema,
|
|
2620
|
+
Tt as flowSchema,
|
|
2621
|
+
Se as flowsFieldComponentSchema,
|
|
2622
|
+
Te as flowsFlowNodeSchema,
|
|
2623
|
+
Ce as flowsStepNodeSchema,
|
|
2558
2624
|
g as fontDetailsSchema,
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2625
|
+
Vo as fontsSchema,
|
|
2626
|
+
Pt as formControlSchema,
|
|
2627
|
+
yo as formInsertSchema,
|
|
2562
2628
|
v as formNodeComponentDefinition,
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2629
|
+
Ao as formNodeSchema,
|
|
2630
|
+
Mt as formSchema,
|
|
2631
|
+
Ae as genericComponentSchema,
|
|
2632
|
+
Ne as genericNodeSchema,
|
|
2633
|
+
jn as getConnectionIdentifierConfig,
|
|
2634
|
+
zt as hookInsertSchema,
|
|
2635
|
+
qt as hookSchema,
|
|
2570
2636
|
x as hookTemplateId,
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
nt as
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2637
|
+
Kt as hookTemplates,
|
|
2638
|
+
le as identitySchema,
|
|
2639
|
+
vo as inviteInsertSchema,
|
|
2640
|
+
Xt as inviteSchema,
|
|
2641
|
+
Lo as inviteeSchema,
|
|
2642
|
+
Do as inviterSchema,
|
|
2643
|
+
Gt as isBlockComponent,
|
|
2644
|
+
Wt as isFieldComponent,
|
|
2645
|
+
Bt as isWidgetComponent,
|
|
2646
|
+
Vt as jwksKeySchema,
|
|
2647
|
+
ko as jwksSchema,
|
|
2648
|
+
Ee as legalComponentSchema,
|
|
2649
|
+
Z as locationInfoSchema,
|
|
2650
|
+
Go as logInsertSchema,
|
|
2651
|
+
Zt as logSchema,
|
|
2652
|
+
Fo as loginSessionInsertSchema,
|
|
2653
|
+
Qt as loginSessionSchema,
|
|
2654
|
+
Uo as loginSessionStateSchema,
|
|
2655
|
+
we as nodeSchema,
|
|
2656
|
+
Yt as openIDConfigurationSchema,
|
|
2657
|
+
dt as organizationBrandingSchema,
|
|
2658
|
+
gt as organizationEnabledConnectionSchema,
|
|
2659
|
+
mt as organizationInsertSchema,
|
|
2660
|
+
hn as organizationSchema,
|
|
2661
|
+
ut as organizationTokenQuotaSchema,
|
|
2662
|
+
Yo as pageBackgroundSchema,
|
|
2663
|
+
On as parseUserId,
|
|
2664
|
+
Bo as passwordInsertSchema,
|
|
2665
|
+
$t as passwordSchema,
|
|
2666
|
+
re as profileDataSchema,
|
|
2667
|
+
bt as promptScreenSchema,
|
|
2668
|
+
an as promptSettingSchema,
|
|
2669
|
+
ie as redirectActionSchema,
|
|
2670
|
+
$o as refreshTokenInsertSchema,
|
|
2671
|
+
rn as refreshTokenSchema,
|
|
2672
|
+
Y as requestContextSchema,
|
|
2673
|
+
ot as resourceServerInsertSchema,
|
|
2674
|
+
cn as resourceServerListSchema,
|
|
2675
|
+
et as resourceServerOptionsSchema,
|
|
2676
|
+
tt as resourceServerSchema,
|
|
2677
|
+
Jo as resourceServerScopeSchema,
|
|
2678
|
+
Q as responseContextSchema,
|
|
2679
|
+
be as richTextComponentSchema,
|
|
2680
|
+
ct as roleInsertSchema,
|
|
2681
|
+
mn as roleListSchema,
|
|
2682
|
+
nt as rolePermissionInsertSchema,
|
|
2683
|
+
_n as rolePermissionListSchema,
|
|
2684
|
+
it as rolePermissionSchema,
|
|
2685
|
+
_t as roleSchema,
|
|
2686
|
+
Co as screenLinkSchema,
|
|
2687
|
+
Wo as sessionInsertSchema,
|
|
2688
|
+
Jt as sessionSchema,
|
|
2689
|
+
en as signingKeySchema,
|
|
2690
|
+
pn as smsProviderSchema,
|
|
2691
|
+
ln as smsSendParamsSchema,
|
|
2692
|
+
je as startSchema,
|
|
2693
|
+
V as targetSchema,
|
|
2694
|
+
Ko as tenantInsertSchema,
|
|
2695
|
+
on as tenantSchema,
|
|
2696
|
+
fn as tenantSettingsSchema,
|
|
2697
|
+
Zo as themeInsertSchema,
|
|
2698
|
+
nn as themeSchema,
|
|
2699
|
+
tn as tokenResponseSchema,
|
|
2700
|
+
Nt as totalsSchema,
|
|
2701
|
+
Ht as uiScreenSchema,
|
|
2702
|
+
ce as userInsertSchema,
|
|
2703
|
+
ht as userOrganizationInsertSchema,
|
|
2704
|
+
bn as userOrganizationSchema,
|
|
2705
|
+
at as userPermissionInsertSchema,
|
|
2706
|
+
dn as userPermissionListSchema,
|
|
2707
|
+
st as userPermissionSchema,
|
|
2708
|
+
gn as userPermissionWithDetailsListSchema,
|
|
2709
|
+
rt as userPermissionWithDetailsSchema,
|
|
2710
|
+
jt as userResponseSchema,
|
|
2711
|
+
lt as userRoleInsertSchema,
|
|
2712
|
+
un as userRoleListSchema,
|
|
2713
|
+
pt as userRoleSchema,
|
|
2714
|
+
_e as userSchema,
|
|
2715
|
+
Pe as verificationMethodsSchema,
|
|
2716
|
+
ho as widgetComponentSchema,
|
|
2717
|
+
Qo as widgetSchema
|
|
2648
2718
|
};
|